Show / Hide Table of Contents

Interface ICfnReplicationSubnetGroupMixinProps

Properties for CfnReplicationSubnetGroupPropsMixin.

Namespace: Amazon.CDK.CfnPropertyMixins.AWS.DMS
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface ICfnReplicationSubnetGroupMixinProps
Syntax (vb)
Public Interface ICfnReplicationSubnetGroupMixinProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.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.DMS;

             var cfnReplicationSubnetGroupMixinProps = new CfnReplicationSubnetGroupMixinProps {
                 ReplicationSubnetGroupDescription = "replicationSubnetGroupDescription",
                 ReplicationSubnetGroupIdentifier = "replicationSubnetGroupIdentifier",
                 SubnetIds = new [] { "subnetIds" },
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Properties

ReplicationSubnetGroupDescription

The description for the subnet group.

ReplicationSubnetGroupIdentifier

The identifier for the replication subnet group.

SubnetIds

One or more subnet IDs to be assigned to the subnet group.

Tags

One or more tags to be assigned to the subnet group.

Properties

ReplicationSubnetGroupDescription

The description for the subnet group.

string? ReplicationSubnetGroupDescription { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupdescription

ReplicationSubnetGroupIdentifier

The identifier for the replication subnet group.

string? ReplicationSubnetGroupIdentifier { get; }
Property Value

string

Remarks

If you don't specify a name, CloudFormation generates a unique ID and uses that ID for the identifier.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupidentifier

SubnetIds

One or more subnet IDs to be assigned to the subnet group.

string[]? SubnetIds { get; }
Property Value

string[]

Remarks

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

Tags

One or more tags to be assigned to the subnet group.

ICfnTag[]? Tags { get; }
Property Value

ICfnTag[]

Remarks

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

Back to top Generated by DocFX