Class CfnReplicationSubnetGroupProps
Properties for defining a CfnReplicationSubnetGroup
.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.DMS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnReplicationSubnetGroupProps : Object, ICfnReplicationSubnetGroupProps
Syntax (vb)
Public Class CfnReplicationSubnetGroupProps
Inherits Object
Implements ICfnReplicationSubnetGroupProps
Remarks
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
Cfn |
Properties
Replication |
The description for the subnet group. |
Replication |
The identifier for the replication subnet group. |
Subnet |
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()
public CfnReplicationSubnetGroupProps()
Properties
ReplicationSubnetGroupDescription
The description for the subnet group.
public string ReplicationSubnetGroupDescription { get; set; }
Property Value
System.
Remarks
ReplicationSubnetGroupIdentifier
The identifier for the replication subnet group.
public string ReplicationSubnetGroupIdentifier { get; set; }
Property Value
System.
Remarks
If you don't specify a name, AWS CloudFormation generates a unique ID and uses that ID for the identifier.
SubnetIds
One or more subnet IDs to be assigned to the subnet group.
public string[] SubnetIds { get; set; }
Property Value
System.
Remarks
Tags
One or more tags to be assigned to the subnet group.
public ICfnTag[] Tags { get; set; }
Property Value
ICfn