Interface ModifyCacheSubnetGroupRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<ModifyCacheSubnetGroupRequest.Builder,ModifyCacheSubnetGroupRequest>
,ElastiCacheRequest.Builder
,SdkBuilder<ModifyCacheSubnetGroupRequest.Builder,ModifyCacheSubnetGroupRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- ModifyCacheSubnetGroupRequest
public static interface ModifyCacheSubnetGroupRequest.Builder extends ElastiCacheRequest.Builder, SdkPojo, CopyableBuilder<ModifyCacheSubnetGroupRequest.Builder,ModifyCacheSubnetGroupRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ModifyCacheSubnetGroupRequest.Builder
cacheSubnetGroupDescription(String cacheSubnetGroupDescription)
A description of the cache subnet group.ModifyCacheSubnetGroupRequest.Builder
cacheSubnetGroupName(String cacheSubnetGroupName)
The name for the cache subnet group.ModifyCacheSubnetGroupRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
ModifyCacheSubnetGroupRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
ModifyCacheSubnetGroupRequest.Builder
subnetIds(String... subnetIds)
The EC2 subnet IDs for the cache subnet group.ModifyCacheSubnetGroupRequest.Builder
subnetIds(Collection<String> subnetIds)
The EC2 subnet IDs for the cache subnet group.-
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.elasticache.model.ElastiCacheRequest.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
-
cacheSubnetGroupName
ModifyCacheSubnetGroupRequest.Builder cacheSubnetGroupName(String cacheSubnetGroupName)
The name for the cache subnet group. This value is stored as a lowercase string.
Constraints: Must contain no more than 255 alphanumeric characters or hyphens.
Example:
mysubnetgroup
- Parameters:
cacheSubnetGroupName
- The name for the cache subnet group. This value is stored as a lowercase string.Constraints: Must contain no more than 255 alphanumeric characters or hyphens.
Example:
mysubnetgroup
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
cacheSubnetGroupDescription
ModifyCacheSubnetGroupRequest.Builder cacheSubnetGroupDescription(String cacheSubnetGroupDescription)
A description of the cache subnet group.
- Parameters:
cacheSubnetGroupDescription
- A description of the cache subnet group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
subnetIds
ModifyCacheSubnetGroupRequest.Builder subnetIds(Collection<String> subnetIds)
The EC2 subnet IDs for the cache subnet group.
- Parameters:
subnetIds
- The EC2 subnet IDs for the cache subnet group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
subnetIds
ModifyCacheSubnetGroupRequest.Builder subnetIds(String... subnetIds)
The EC2 subnet IDs for the cache subnet group.
- Parameters:
subnetIds
- The EC2 subnet IDs for the cache subnet group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
ModifyCacheSubnetGroupRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
ModifyCacheSubnetGroupRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-