Interface CfnSubnetGroupMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSubnetGroupMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:59.123Z")
@Stability(Stable)
public interface CfnSubnetGroupMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnSubnetGroupPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.elasticache.*;
CfnSubnetGroupMixinProps cfnSubnetGroupMixinProps = CfnSubnetGroupMixinProps.builder()
.cacheSubnetGroupName("cacheSubnetGroupName")
.description("description")
.subnetIds(List.of("subnetIds"))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSubnetGroupMixinPropsstatic final classAn implementation forCfnSubnetGroupMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCacheSubnetGroupName
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- See Also:
-
getDescription
The description for the cache subnet group.- See Also:
-
getSubnetIds
The EC2 subnet IDs for the cache subnet group.Returns union: Listinvalid input: '<'either
StringorISubnetRef>- See Also:
-
getTags
A tag that can be added to an ElastiCache subnet group.Tags are composed of a Key/Value pair. You can use tags to categorize and track all your subnet groups. A tag with a null Value is permitted.
- See Also:
-
builder
- Returns:
- a
CfnSubnetGroupMixinProps.BuilderofCfnSubnetGroupMixinProps
-