Interface ClusterIssue.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ClusterIssue.Builder,ClusterIssue>,SdkBuilder<ClusterIssue.Builder,ClusterIssue>,SdkPojo
- Enclosing class:
- ClusterIssue
public static interface ClusterIssue.Builder extends SdkPojo, CopyableBuilder<ClusterIssue.Builder,ClusterIssue>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ClusterIssue.Buildercode(String code)The error code of the issue.ClusterIssue.Buildercode(ClusterIssueCode code)The error code of the issue.ClusterIssue.Buildermessage(String message)A description of the issue.ClusterIssue.BuilderresourceIds(String... resourceIds)The resource IDs that the issue relates to.ClusterIssue.BuilderresourceIds(Collection<String> resourceIds)The resource IDs that the issue relates to.-
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
ClusterIssue.Builder code(String code)
The error code of the issue.
- Parameters:
code- The error code of the issue.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ClusterIssueCode,ClusterIssueCode
-
code
ClusterIssue.Builder code(ClusterIssueCode code)
The error code of the issue.
- Parameters:
code- The error code of the issue.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ClusterIssueCode,ClusterIssueCode
-
message
ClusterIssue.Builder message(String message)
A description of the issue.
- Parameters:
message- A description of the issue.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
resourceIds
ClusterIssue.Builder resourceIds(Collection<String> resourceIds)
The resource IDs that the issue relates to.
- Parameters:
resourceIds- The resource IDs that the issue relates to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
resourceIds
ClusterIssue.Builder resourceIds(String... resourceIds)
The resource IDs that the issue relates to.
- Parameters:
resourceIds- The resource IDs that the issue relates to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-