Show / Hide Table of Contents

Interface ICfnDBSubnetGroupProps

Properties for defining a CfnDBSubnetGroup.

Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnDBSubnetGroupProps
Syntax (vb)
Public Interface ICfnDBSubnetGroupProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-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.AWS.RDS;

             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

The description for the DB subnet group.

DbSubnetGroupName

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

SubnetIds

The EC2 Subnet IDs for the DB subnet group.

Tags

Tags to assign to the DB subnet group.

Properties

DbSubnetGroupDescription

The description for the DB subnet group.

string DbSubnetGroupDescription { get; }
Property Value

string

Remarks

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

DbSubnetGroupName

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

string? DbSubnetGroupName { get; }
Property Value

string

Remarks

Constraints:

    Example: mydbsubnetgroup

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

    SubnetIds

    The EC2 Subnet IDs for the DB subnet group.

    string[] SubnetIds { get; }
    Property Value

    string[]

    Remarks

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

    Tags

    Tags to assign to the DB subnet group.

    ICfnTag[]? Tags { get; }
    Property Value

    ICfnTag[]

    Remarks

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

    Back to top Generated by DocFX