Show / Hide Table of Contents

Class CfnReplicationSubnetGroupProps

Properties for defining a CfnReplicationSubnetGroup.

Inheritance
object
CfnReplicationSubnetGroupProps
Implements
ICfnReplicationSubnetGroupProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.DMS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnReplicationSubnetGroupProps : ICfnReplicationSubnetGroupProps
Syntax (vb)
Public Class CfnReplicationSubnetGroupProps Implements ICfnReplicationSubnetGroupProps
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.AWS.DMS;

             var cfnReplicationSubnetGroupProps = new CfnReplicationSubnetGroupProps {
                 ReplicationSubnetGroupDescription = "replicationSubnetGroupDescription",
                 SubnetIds = new [] { "subnetIds" },

                 // the properties below are optional
                 ReplicationSubnetGroupIdentifier = "replicationSubnetGroupIdentifier",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnReplicationSubnetGroupProps()

Properties for defining a CfnReplicationSubnetGroup.

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.

Constructors

CfnReplicationSubnetGroupProps()

Properties for defining a CfnReplicationSubnetGroup.

public CfnReplicationSubnetGroupProps()
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.AWS.DMS;

             var cfnReplicationSubnetGroupProps = new CfnReplicationSubnetGroupProps {
                 ReplicationSubnetGroupDescription = "replicationSubnetGroupDescription",
                 SubnetIds = new [] { "subnetIds" },

                 // the properties below are optional
                 ReplicationSubnetGroupIdentifier = "replicationSubnetGroupIdentifier",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

ReplicationSubnetGroupDescription

The description for the subnet group.

public string ReplicationSubnetGroupDescription { get; set; }
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.

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

string

Remarks

If you don't specify a name, AWS 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.

public string[] SubnetIds { get; set; }
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.

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

ICfnTag[]

Remarks

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

Implements

ICfnReplicationSubnetGroupProps
Back to top Generated by DocFX