Struct cfn::aws::dms::ReplicationSubnetGroupProperties [] [src]

pub struct ReplicationSubnetGroupProperties {
    pub replication_subnet_group_description: Value<String>,
    pub replication_subnet_group_identifier: Option<Value<String>>,
    pub subnet_ids: ValueList<String>,
    pub tags: Option<ValueList<Tag>>,
}

Properties for the ReplicationSubnetGroup resource.

Fields

Property ReplicationSubnetGroupDescription.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property ReplicationSubnetGroupIdentifier.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property SubnetIds.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Tags.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Trait Implementations

impl Debug for ReplicationSubnetGroupProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for ReplicationSubnetGroupProperties
[src]

[src]

Returns the "default value" for a type. Read more

impl Serialize for ReplicationSubnetGroupProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

impl<'de> Deserialize<'de> for ReplicationSubnetGroupProperties
[src]

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<ReplicationSubnetGroupProperties> for ReplicationSubnetGroup
[src]

[src]

Performs the conversion.

Auto Trait Implementations