Interface ClusterSubnetGroupProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ClusterSubnetGroupProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:42.823Z")
@Stability(Experimental)
public interface ClusterSubnetGroupProps
extends software.amazon.jsii.JsiiSerializable
(experimental) Properties for creating a ClusterSubnetGroup.
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.ec2.*; import software.amazon.awscdk.services.redshift.*; import software.amazon.awscdk.core.*; Subnet subnet; SubnetFilter subnetFilter; Vpc vpc; ClusterSubnetGroupProps clusterSubnetGroupProps = ClusterSubnetGroupProps.builder() .description("description") .vpc(vpc) // the properties below are optional .removalPolicy(RemovalPolicy.DESTROY) .vpcSubnets(SubnetSelection.builder() .availabilityZones(List.of("availabilityZones")) .onePerAz(false) .subnetFilters(List.of(subnetFilter)) .subnetGroupName("subnetGroupName") .subnetName("subnetName") .subnets(List.of(subnet)) .subnetType(SubnetType.ISOLATED) .build()) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forClusterSubnetGroupProps
static final class
An implementation forClusterSubnetGroupProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
(experimental) Description of the subnet group.default RemovalPolicy
(experimental) The removal policy to apply when the subnet group are removed from the stack or replaced during an update.getVpc()
(experimental) The VPC to place the subnet group in.default SubnetSelection
(experimental) Which subnets within the VPC to associate with this group.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
(experimental) Description of the subnet group. -
getVpc
(experimental) The VPC to place the subnet group in. -
getRemovalPolicy
(experimental) The removal policy to apply when the subnet group are removed from the stack or replaced during an update.Default: RemovalPolicy.RETAIN
-
getVpcSubnets
(experimental) Which subnets within the VPC to associate with this group.Default: - private subnets
-
builder
- Returns:
- a
ClusterSubnetGroupProps.Builder
ofClusterSubnetGroupProps
-