Class CfnDBSubnetGroupMixinProps
Properties for CfnDBSubnetGroupPropsMixin.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.DocDB
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnDBSubnetGroupMixinProps : ICfnDBSubnetGroupMixinProps
Syntax (vb)
Public Class CfnDBSubnetGroupMixinProps Implements ICfnDBSubnetGroupMixinProps
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html
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.CfnPropertyMixins.AWS.DocDB;
var cfnDBSubnetGroupMixinProps = new CfnDBSubnetGroupMixinProps {
DbSubnetGroupDescription = "dbSubnetGroupDescription",
DbSubnetGroupName = "dbSubnetGroupName",
SubnetIds = new [] { "subnetIds" },
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
| CfnDBSubnetGroupMixinProps() | Properties for CfnDBSubnetGroupPropsMixin. |
Properties
| DbSubnetGroupDescription | The description for the subnet group. |
| DbSubnetGroupName | The name for the subnet group. This value is stored as a lowercase string. |
| SubnetIds | The Amazon EC2 subnet IDs for the subnet group. |
| Tags | The tags to be assigned to the subnet group. |
Constructors
CfnDBSubnetGroupMixinProps()
Properties for CfnDBSubnetGroupPropsMixin.
public CfnDBSubnetGroupMixinProps()
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html
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.CfnPropertyMixins.AWS.DocDB;
var cfnDBSubnetGroupMixinProps = new CfnDBSubnetGroupMixinProps {
DbSubnetGroupDescription = "dbSubnetGroupDescription",
DbSubnetGroupName = "dbSubnetGroupName",
SubnetIds = new [] { "subnetIds" },
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Properties
DbSubnetGroupDescription
The description for the subnet group.
public string? DbSubnetGroupDescription { get; set; }
Property Value
Remarks
DbSubnetGroupName
The name for the subnet group. This value is stored as a lowercase string.
public string? DbSubnetGroupName { get; set; }
Property Value
Remarks
Constraints: Must contain no more than 255 letters, numbers, periods, underscores, spaces, or hyphens. Must not be default.
Example: mySubnetgroup
SubnetIds
The Amazon EC2 subnet IDs for the subnet group.
public string[]? SubnetIds { get; set; }
Property Value
string[]
Remarks
Tags
The tags to be assigned to the subnet group.
public ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]