Struct cfn::aws::logs::LogGroupProperties [] [src]

pub struct LogGroupProperties {
    pub log_group_name: Option<Value<String>>,
    pub retention_in_days: Option<Value<u32>>,
}

Properties for the LogGroup resource.

Fields

Property LogGroupName.

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

Property RetentionInDays.

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

Trait Implementations

impl Debug for LogGroupProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for LogGroupProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<LogGroupProperties> for LogGroup
[src]

[src]

Performs the conversion.

Auto Trait Implementations