Struct cfn::aws::autoscaling::ScheduledActionProperties [] [src]

pub struct ScheduledActionProperties {
    pub auto_scaling_group_name: Value<String>,
    pub desired_capacity: Option<Value<u32>>,
    pub end_time: Option<Value<String>>,
    pub max_size: Option<Value<u32>>,
    pub min_size: Option<Value<u32>>,
    pub recurrence: Option<Value<String>>,
    pub start_time: Option<Value<String>>,
}

Properties for the ScheduledAction resource.

Fields

Property AutoScalingGroupName.

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

Property DesiredCapacity.

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

Property EndTime.

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

Property MaxSize.

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

Property MinSize.

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

Property Recurrence.

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

Property StartTime.

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

Trait Implementations

impl Debug for ScheduledActionProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for ScheduledActionProperties
[src]

[src]

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

impl Serialize for ScheduledActionProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<ScheduledActionProperties> for ScheduledAction
[src]

[src]

Performs the conversion.

Auto Trait Implementations