Interface CfnSubnetGroupProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSubnetGroupProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.120.0 (build 192dc88)",
date="2025-12-12T17:54:10.954Z")
@Stability(Stable)
public interface CfnSubnetGroupProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnSubnetGroup.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.dax.*;
CfnSubnetGroupProps cfnSubnetGroupProps = CfnSubnetGroupProps.builder()
.subnetIds(List.of("subnetIds"))
// the properties below are optional
.description("description")
.subnetGroupName("subnetGroupName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSubnetGroupPropsstatic final classAn implementation forCfnSubnetGroupProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnSubnetGroupProps.Builderbuilder()default StringThe description of the subnet group.default StringThe name of the subnet group.A list of VPC subnet IDs for the subnet group.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSubnetIds
A list of VPC subnet IDs for the subnet group.- See Also:
-
getDescription
The description of the subnet group.- See Also:
-
getSubnetGroupName
The name of the subnet group.- See Also:
-
builder
- Returns:
- a
CfnSubnetGroupProps.BuilderofCfnSubnetGroupProps
-