Interface ClusterSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ClusterSummary.Builder,ClusterSummary>,SdkBuilder<ClusterSummary.Builder,ClusterSummary>,SdkPojo
- Enclosing class:
- ClusterSummary
public static interface ClusterSummary.Builder extends SdkPojo, CopyableBuilder<ClusterSummary.Builder,ClusterSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ClusterSummary.Builderarn(String arn)The unique Amazon Resource Name (ARN) of the cluster.ClusterSummary.BuildercreatedAt(Instant createdAt)The date and time the resource was created.ClusterSummary.Builderid(String id)The generated unique ID of the cluster.ClusterSummary.BuildermodifiedAt(Instant modifiedAt)The date and time the resource was modified.ClusterSummary.Buildername(String name)The name that identifies the cluster.ClusterSummary.Builderstatus(String status)The provisioning status of the cluster.ClusterSummary.Builderstatus(ClusterStatus status)The provisioning status of the cluster.-
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, sdkFields
-
-
-
-
Method Detail
-
name
ClusterSummary.Builder name(String name)
The name that identifies the cluster.
- Parameters:
name- The name that identifies the cluster.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
id
ClusterSummary.Builder id(String id)
The generated unique ID of the cluster.
- Parameters:
id- The generated unique ID of the cluster.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
arn
ClusterSummary.Builder arn(String arn)
The unique Amazon Resource Name (ARN) of the cluster.
- Parameters:
arn- The unique Amazon Resource Name (ARN) of the cluster.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdAt
ClusterSummary.Builder createdAt(Instant createdAt)
The date and time the resource was created.
- Parameters:
createdAt- The date and time the resource was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
modifiedAt
ClusterSummary.Builder modifiedAt(Instant modifiedAt)
The date and time the resource was modified.
- Parameters:
modifiedAt- The date and time the resource was modified.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
ClusterSummary.Builder status(String status)
The provisioning status of the cluster.
The provisioning status doesn't indicate the overall health of the cluster.
- Parameters:
status- The provisioning status of the cluster.The provisioning status doesn't indicate the overall health of the cluster.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ClusterStatus,ClusterStatus
-
status
ClusterSummary.Builder status(ClusterStatus status)
The provisioning status of the cluster.
The provisioning status doesn't indicate the overall health of the cluster.
- Parameters:
status- The provisioning status of the cluster.The provisioning status doesn't indicate the overall health of the cluster.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ClusterStatus,ClusterStatus
-
-