Interface CfnClusterSubnetGroupProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnClusterSubnetGroupProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-24T13:34:45.651Z")
@Stability(Stable)
public interface CfnClusterSubnetGroupProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnClusterSubnetGroup.
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.redshift.*;
CfnClusterSubnetGroupProps cfnClusterSubnetGroupProps = CfnClusterSubnetGroupProps.builder()
.description("description")
.subnetIds(List.of("subnetIds"))
// the properties below are optional
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnClusterSubnetGroupPropsstatic final classAn implementation forCfnClusterSubnetGroupProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
A description for the subnet group.- See Also:
-
getSubnetIds
An array of VPC subnet IDs.A maximum of 20 subnets can be modified in a single request.
- See Also:
-
getTags
Specifies an arbitrary set of tags (key–value pairs) to associate with this subnet group.Use tags to manage your resources.
- See Also:
-
builder
- Returns:
- a
CfnClusterSubnetGroupProps.BuilderofCfnClusterSubnetGroupProps
-