Interface CreateClusterResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<CreateClusterResponse.Builder,CreateClusterResponse>,DsqlResponse.Builder,SdkBuilder<CreateClusterResponse.Builder,CreateClusterResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- CreateClusterResponse
public static interface CreateClusterResponse.Builder extends DsqlResponse.Builder, SdkPojo, CopyableBuilder<CreateClusterResponse.Builder,CreateClusterResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CreateClusterResponse.Builderarn(String arn)The ARN of the created cluster.CreateClusterResponse.BuildercreationTime(Instant creationTime)The time of when created the cluster.CreateClusterResponse.BuilderdeletionProtectionEnabled(Boolean deletionProtectionEnabled)Whether deletion protection is enabled on this cluster.CreateClusterResponse.Builderidentifier(String identifier)The ID of the created cluster.CreateClusterResponse.Builderstatus(String status)The status of the created cluster.CreateClusterResponse.Builderstatus(ClusterStatus status)The status of the created cluster.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.dsql.model.DsqlResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
identifier
CreateClusterResponse.Builder identifier(String identifier)
The ID of the created cluster.
- Parameters:
identifier- The ID of the created cluster.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
arn
CreateClusterResponse.Builder arn(String arn)
The ARN of the created cluster.
- Parameters:
arn- The ARN of the created cluster.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
CreateClusterResponse.Builder status(String status)
The status of the created cluster.
- Parameters:
status- The status of the created cluster.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ClusterStatus,ClusterStatus
-
status
CreateClusterResponse.Builder status(ClusterStatus status)
The status of the created cluster.
- Parameters:
status- The status of the created cluster.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ClusterStatus,ClusterStatus
-
creationTime
CreateClusterResponse.Builder creationTime(Instant creationTime)
The time of when created the cluster.
- Parameters:
creationTime- The time of when created the cluster.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
deletionProtectionEnabled
CreateClusterResponse.Builder deletionProtectionEnabled(Boolean deletionProtectionEnabled)
Whether deletion protection is enabled on this cluster.
- Parameters:
deletionProtectionEnabled- Whether deletion protection is enabled on this cluster.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-