@Generated(value="jsii-pacmak/1.50.0 (build d1830a4)", date="2022-01-09T19:25:26.048Z") @Stability(value=Stable) public interface CfnClusterSubnetGroupProps extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnClusterSubnetGroupProps.Builder
A builder for
CfnClusterSubnetGroupProps |
static class |
CfnClusterSubnetGroupProps.Jsii$Proxy
An implementation for
CfnClusterSubnetGroupProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnClusterSubnetGroupProps.Builder |
builder() |
String |
getDescription()
A description for the subnet group.
|
List<String> |
getSubnetIds()
An array of VPC subnet IDs.
|
default List<CfnTag> |
getTags()
Specifies an arbitrary set of tags (key–value pairs) to associate with this subnet group.
|
@Stability(value=Stable) @NotNull String getDescription()
@Stability(value=Stable) @NotNull List<String> getSubnetIds()
A maximum of 20 subnets can be modified in a single request.
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
Use tags to manage your resources.
@Stability(value=Stable) static CfnClusterSubnetGroupProps.Builder builder()
CfnClusterSubnetGroupProps.Builder of CfnClusterSubnetGroupPropsCopyright © 2022. All rights reserved.