Interface CfnClusterSubnetGroupProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnClusterSubnetGroupProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:42.790Z") @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();
 
  • Method Details

    • getDescription

      @Stability(Stable) @NotNull String getDescription()
      A description for the subnet group.
    • getSubnetIds

      @Stability(Stable) @NotNull List<String> getSubnetIds()
      An array of VPC subnet IDs.

      A maximum of 20 subnets can be modified in a single request.

    • getTags

      @Stability(Stable) @Nullable default List<CfnTag> getTags()
      Specifies an arbitrary set of tags (key–value pairs) to associate with this subnet group.

      Use tags to manage your resources.

    • builder

      @Stability(Stable) static CfnClusterSubnetGroupProps.Builder builder()
      Returns:
      a CfnClusterSubnetGroupProps.Builder of CfnClusterSubnetGroupProps