Interface CreateDbSubnetGroupRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<CreateDbSubnetGroupRequest.Builder,CreateDbSubnetGroupRequest>,DocDbRequest.Builder,SdkBuilder<CreateDbSubnetGroupRequest.Builder,CreateDbSubnetGroupRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- CreateDbSubnetGroupRequest
public static interface CreateDbSubnetGroupRequest.Builder extends DocDbRequest.Builder, SdkPojo, CopyableBuilder<CreateDbSubnetGroupRequest.Builder,CreateDbSubnetGroupRequest>
-
-
Method Summary
-
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.docdb.model.DocDbRequest.Builder
build
-
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
-
dbSubnetGroupName
CreateDbSubnetGroupRequest.Builder dbSubnetGroupName(String dbSubnetGroupName)
The name for the subnet group. This value is stored as a lowercase string.
Constraints: Must contain no more than 255 letters, numbers, periods, underscores, spaces, or hyphens. Must not be default.
Example:
mySubnetgroup- Parameters:
dbSubnetGroupName- The name for the subnet group. This value is stored as a lowercase string.Constraints: Must contain no more than 255 letters, numbers, periods, underscores, spaces, or hyphens. Must not be default.
Example:
mySubnetgroup- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dbSubnetGroupDescription
CreateDbSubnetGroupRequest.Builder dbSubnetGroupDescription(String dbSubnetGroupDescription)
The description for the subnet group.
- Parameters:
dbSubnetGroupDescription- The description for the subnet group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
subnetIds
CreateDbSubnetGroupRequest.Builder subnetIds(Collection<String> subnetIds)
The Amazon EC2 subnet IDs for the subnet group.
- Parameters:
subnetIds- The Amazon EC2 subnet IDs for the subnet group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
subnetIds
CreateDbSubnetGroupRequest.Builder subnetIds(String... subnetIds)
The Amazon EC2 subnet IDs for the subnet group.
- Parameters:
subnetIds- The Amazon EC2 subnet IDs for the subnet group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreateDbSubnetGroupRequest.Builder tags(Collection<Tag> tags)
The tags to be assigned to the subnet group.
- Parameters:
tags- The tags to be assigned to the subnet group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreateDbSubnetGroupRequest.Builder tags(Tag... tags)
The tags to be assigned to the subnet group.
- Parameters:
tags- The tags to be assigned to the subnet group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreateDbSubnetGroupRequest.Builder tags(Consumer<Tag.Builder>... tags)
The tags to be assigned to the subnet group.
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
CreateDbSubnetGroupRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
CreateDbSubnetGroupRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-