Struct cfn::aws::rds::DBSubnetGroupProperties [] [src]

pub struct DBSubnetGroupProperties {
    pub db_subnet_group_description: Value<String>,
    pub db_subnet_group_name: Option<Value<String>>,
    pub subnet_ids: ValueList<String>,
    pub tags: Option<ValueList<Tag>>,
}

Properties for the DBSubnetGroup resource.

Fields

Property DBSubnetGroupDescription.

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

Property DBSubnetGroupName.

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: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Trait Implementations

impl Debug for DBSubnetGroupProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for DBSubnetGroupProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<DBSubnetGroupProperties> for DBSubnetGroup
[src]

[src]

Performs the conversion.

Auto Trait Implementations