Interface ICfnDBSubnetGroupProps
Properties for defining a CfnDBSubnetGroup.
Namespace: Amazon.CDK.AWS.Neptune
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnDBSubnetGroupProps
Syntax (vb)
Public Interface ICfnDBSubnetGroupProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Neptune;
var cfnDBSubnetGroupProps = new CfnDBSubnetGroupProps {
DbSubnetGroupDescription = "dbSubnetGroupDescription",
SubnetIds = new [] { "subnetIds" },
// the properties below are optional
DbSubnetGroupName = "dbSubnetGroupName",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Properties
| DbSubnetGroupDescription | Provides the description of the DB subnet group. |
| DbSubnetGroupName | The name of the DB subnet group. |
| SubnetIds | The Amazon EC2 subnet IDs for the DB subnet group. |
| Tags | The tags that you want to attach to the DB subnet group. |
Properties
DbSubnetGroupDescription
Provides the description of the DB subnet group.
string DbSubnetGroupDescription { get; }
Property Value
Remarks
DbSubnetGroupName
The name of the DB subnet group.
string? DbSubnetGroupName { get; }
Property Value
Remarks
SubnetIds
The Amazon EC2 subnet IDs for the DB subnet group.
string[] SubnetIds { get; }
Property Value
string[]
Remarks
Tags
The tags that you want to attach to the DB subnet group.
ICfnTag[]? Tags { get; }
Property Value
ICfnTag[]