Interface CfnClusterSubnetGroupProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnClusterSubnetGroupProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)",
date="2024-10-05T03:43:50.197Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnClusterSubnetGroupProps
static final class
An 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.Builder
ofCfnClusterSubnetGroupProps
-