Interface CreateDbClusterSnapshotRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<CreateDbClusterSnapshotRequest.Builder,CreateDbClusterSnapshotRequest>,RdsRequest.Builder,SdkBuilder<CreateDbClusterSnapshotRequest.Builder,CreateDbClusterSnapshotRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- CreateDbClusterSnapshotRequest
public static interface CreateDbClusterSnapshotRequest.Builder extends RdsRequest.Builder, SdkPojo, CopyableBuilder<CreateDbClusterSnapshotRequest.Builder,CreateDbClusterSnapshotRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CreateDbClusterSnapshotRequest.BuilderdbClusterIdentifier(String dbClusterIdentifier)The identifier of the DB cluster to create a snapshot for.CreateDbClusterSnapshotRequest.BuilderdbClusterSnapshotIdentifier(String dbClusterSnapshotIdentifier)The identifier of the DB cluster snapshot.CreateDbClusterSnapshotRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)CreateDbClusterSnapshotRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)CreateDbClusterSnapshotRequest.Buildertags(Collection<Tag> tags)The tags to be assigned to the DB cluster snapshot.CreateDbClusterSnapshotRequest.Buildertags(Consumer<Tag.Builder>... tags)The tags to be assigned to the DB cluster snapshot.CreateDbClusterSnapshotRequest.Buildertags(Tag... tags)The tags to be assigned to the DB cluster snapshot.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.rds.model.RdsRequest.Builder
build
-
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
-
dbClusterSnapshotIdentifier
CreateDbClusterSnapshotRequest.Builder dbClusterSnapshotIdentifier(String dbClusterSnapshotIdentifier)
The identifier of the DB cluster snapshot. This parameter is stored as a lowercase string.
Constraints:
-
Must contain from 1 to 63 letters, numbers, or hyphens.
-
First character must be a letter.
-
Can't end with a hyphen or contain two consecutive hyphens.
Example:
my-cluster1-snapshot1- Parameters:
dbClusterSnapshotIdentifier- The identifier of the DB cluster snapshot. This parameter is stored as a lowercase string.Constraints:
-
Must contain from 1 to 63 letters, numbers, or hyphens.
-
First character must be a letter.
-
Can't end with a hyphen or contain two consecutive hyphens.
Example:
my-cluster1-snapshot1-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
dbClusterIdentifier
CreateDbClusterSnapshotRequest.Builder dbClusterIdentifier(String dbClusterIdentifier)
The identifier of the DB cluster to create a snapshot for. This parameter isn't case-sensitive.
Constraints:
-
Must match the identifier of an existing DBCluster.
Example:
my-cluster1- Parameters:
dbClusterIdentifier- The identifier of the DB cluster to create a snapshot for. This parameter isn't case-sensitive.Constraints:
-
Must match the identifier of an existing DBCluster.
Example:
my-cluster1-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
tags
CreateDbClusterSnapshotRequest.Builder tags(Collection<Tag> tags)
The tags to be assigned to the DB cluster snapshot.
- Parameters:
tags- The tags to be assigned to the DB cluster snapshot.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreateDbClusterSnapshotRequest.Builder tags(Tag... tags)
The tags to be assigned to the DB cluster snapshot.
- Parameters:
tags- The tags to be assigned to the DB cluster snapshot.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreateDbClusterSnapshotRequest.Builder tags(Consumer<Tag.Builder>... tags)
The tags to be assigned to the DB cluster snapshot.
This is a convenience method that creates an instance of theTag.Builderavoiding the need to create one manually viaTag.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#tags(List.) - Parameters:
tags- a consumer that will call methods onTag.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tags(java.util.Collection)
-
overrideConfiguration
CreateDbClusterSnapshotRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
CreateDbClusterSnapshotRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-