Show / Hide Table of Contents

Class CfnDBSubnetGroupMixinProps

Properties for CfnDBSubnetGroupPropsMixin.

Inheritance
object
CfnDBSubnetGroupMixinProps
Implements
ICfnDBSubnetGroupMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html#cfn-docdb-dbsubnetgroup-dbsubnetgroupdescription

DbSubnetGroupName

The name for the subnet group. This value is stored as a lowercase string.

public string? DbSubnetGroupName { get; set; }
Property Value

string

Remarks

Constraints: Must contain no more than 255 letters, numbers, periods, underscores, spaces, or hyphens. Must not be default.

Example: mySubnetgroup

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html#cfn-docdb-dbsubnetgroup-dbsubnetgroupname

SubnetIds

The Amazon EC2 subnet IDs for the subnet group.

public string[]? SubnetIds { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html#cfn-docdb-dbsubnetgroup-subnetids

Tags

The tags to be assigned to the subnet group.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbsubnetgroup.html#cfn-docdb-dbsubnetgroup-tags

Implements

ICfnDBSubnetGroupMixinProps
Back to top Generated by DocFX