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

pub struct OptionGroupProperties {
    pub engine_name: Value<String>,
    pub major_engine_version: Value<String>,
    pub option_configurations: ValueList<OptionConfiguration>,
    pub option_group_description: Value<String>,
    pub tags: Option<ValueList<Tag>>,
}

Properties for the OptionGroup resource.

Fields

Property EngineName.

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

Property MajorEngineVersion.

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

Property OptionConfigurations.

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

Property OptionGroupDescription.

Update type: Immutable. AWS CloudFormation replaces 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 OptionGroupProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for OptionGroupProperties
[src]

[src]

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

impl Serialize for OptionGroupProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<OptionGroupProperties> for OptionGroup
[src]

[src]

Performs the conversion.

Auto Trait Implementations