@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.020Z") @Stability(value=Stable) public interface CfnDBSubnetGroupProps 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.neptune.*;
CfnDBSubnetGroupProps cfnDBSubnetGroupProps = CfnDBSubnetGroupProps.builder()
.dbSubnetGroupDescription("dbSubnetGroupDescription")
.subnetIds(List.of("subnetIds"))
// the properties below are optional
.dbSubnetGroupName("dbSubnetGroupName")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDBSubnetGroupProps.Builder
A builder for
CfnDBSubnetGroupProps |
static class |
CfnDBSubnetGroupProps.Jsii$Proxy
An implementation for
CfnDBSubnetGroupProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnDBSubnetGroupProps.Builder |
builder() |
String |
getDbSubnetGroupDescription()
Provides the description of the DB subnet group.
|
default String |
getDbSubnetGroupName()
The name of the DB subnet group.
|
List<String> |
getSubnetIds()
The Amazon EC2 subnet IDs for the DB subnet group.
|
default List<CfnTag> |
getTags()
The tags that you want to attach to the DB subnet group.
|
@Stability(value=Stable) @NotNull String getDbSubnetGroupDescription()
@Stability(value=Stable) @NotNull List<String> getSubnetIds()
@Stability(value=Stable) @Nullable default String getDbSubnetGroupName()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnDBSubnetGroupProps.Builder builder()
CfnDBSubnetGroupProps.Builder of CfnDBSubnetGroupPropsCopyright © 2022. All rights reserved.