Struct cfn::aws::dax::SubnetGroupProperties [] [src]

pub struct SubnetGroupProperties {
    pub description: Option<Value<String>>,
    pub subnet_group_name: Option<Value<String>>,
    pub subnet_ids: ValueList<String>,
}

Properties for the SubnetGroup resource.

Fields

Property Description.

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

Property SubnetGroupName.

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.

Trait Implementations

impl Debug for SubnetGroupProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for SubnetGroupProperties
[src]

[src]

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

impl Serialize for SubnetGroupProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<SubnetGroupProperties> for SubnetGroup
[src]

[src]

Performs the conversion.

Auto Trait Implementations