Interface AddonIssue.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AddonIssue.Builder,AddonIssue>,SdkBuilder<AddonIssue.Builder,AddonIssue>,SdkPojo
- Enclosing class:
- AddonIssue
public static interface AddonIssue.Builder extends SdkPojo, CopyableBuilder<AddonIssue.Builder,AddonIssue>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AddonIssue.Buildercode(String code)A code that describes the type of issue.AddonIssue.Buildercode(AddonIssueCode code)A code that describes the type of issue.AddonIssue.Buildermessage(String message)A message that provides details about the issue and what might cause it.AddonIssue.BuilderresourceIds(String... resourceIds)The resource IDs of the issue.AddonIssue.BuilderresourceIds(Collection<String> resourceIds)The resource IDs of the issue.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
code
AddonIssue.Builder code(String code)
A code that describes the type of issue.
- Parameters:
code- A code that describes the type of issue.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AddonIssueCode,AddonIssueCode
-
code
AddonIssue.Builder code(AddonIssueCode code)
A code that describes the type of issue.
- Parameters:
code- A code that describes the type of issue.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AddonIssueCode,AddonIssueCode
-
message
AddonIssue.Builder message(String message)
A message that provides details about the issue and what might cause it.
- Parameters:
message- A message that provides details about the issue and what might cause it.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
resourceIds
AddonIssue.Builder resourceIds(Collection<String> resourceIds)
The resource IDs of the issue.
- Parameters:
resourceIds- The resource IDs of the issue.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
resourceIds
AddonIssue.Builder resourceIds(String... resourceIds)
The resource IDs of the issue.
- Parameters:
resourceIds- The resource IDs of the issue.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-