Class CfnDBSubnetGroupProps
Properties for defining a CfnDBSubnetGroup.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Neptune
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDBSubnetGroupProps : ICfnDBSubnetGroupProps
Syntax (vb)
Public Class CfnDBSubnetGroupProps Implements 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
Constructors
| CfnDBSubnetGroupProps() | Properties for defining a |
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. |
Constructors
CfnDBSubnetGroupProps()
Properties for defining a CfnDBSubnetGroup.
public CfnDBSubnetGroupProps()
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"
} }
};
Properties
DbSubnetGroupDescription
Provides the description of the DB subnet group.
public string DbSubnetGroupDescription { get; set; }
Property Value
Remarks
DbSubnetGroupName
The name of the DB subnet group.
public string? DbSubnetGroupName { get; set; }
Property Value
Remarks
SubnetIds
The Amazon EC2 subnet IDs for the DB subnet group.
public string[] SubnetIds { get; set; }
Property Value
string[]
Remarks
Tags
The tags that you want to attach to the DB subnet group.
public ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]