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

pub struct DBClusterParameterGroupProperties {
    pub description: Value<String>,
    pub family: Value<String>,
    pub parameters: Value<Value>,
    pub tags: Option<ValueList<Tag>>,
}

Properties for the DBClusterParameterGroup resource.

Fields

Property Description.

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

Property Family.

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

Property Parameters.

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 DBClusterParameterGroupProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for DBClusterParameterGroupProperties
[src]

[src]

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

impl Serialize for DBClusterParameterGroupProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<DBClusterParameterGroupProperties> for DBClusterParameterGroup
[src]

[src]

Performs the conversion.

Auto Trait Implementations