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

pub struct AutoScalingGroupProperties {
    pub auto_scaling_group_name: Option<Value<String>>,
    pub availability_zones: Option<ValueList<String>>,
    pub cooldown: Option<Value<String>>,
    pub desired_capacity: Option<Value<String>>,
    pub health_check_grace_period: Option<Value<u32>>,
    pub health_check_type: Option<Value<String>>,
    pub instance_id: Option<Value<String>>,
    pub launch_configuration_name: Option<Value<String>>,
    pub lifecycle_hook_specification_list: Option<ValueList<LifecycleHookSpecification>>,
    pub load_balancer_names: Option<ValueList<String>>,
    pub max_size: Value<String>,
    pub metrics_collection: Option<ValueList<MetricsCollection>>,
    pub min_size: Value<String>,
    pub notification_configurations: Option<ValueList<NotificationConfiguration>>,
    pub placement_group: Option<Value<String>>,
    pub tags: Option<ValueList<TagProperty>>,
    pub target_group_ar_ns: Option<ValueList<String>>,
    pub termination_policies: Option<ValueList<String>>,
    pub vpc_zone_identifier: Option<ValueList<String>>,
}

Properties for the AutoScalingGroup resource.

Fields

Property AutoScalingGroupName.

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

Property AvailabilityZones.

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

Property Cooldown.

Update type: Mutable. AWS CloudFormation doesn't replace 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 HealthCheckGracePeriod.

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

Property HealthCheckType.

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

Property InstanceId.

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

Property LaunchConfigurationName.

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

Property LifecycleHookSpecificationList.

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

Property LoadBalancerNames.

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 MetricsCollection.

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 NotificationConfigurations.

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

Property PlacementGroup.

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.

Property TargetGroupARNs.

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

Property TerminationPolicies.

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

Property VPCZoneIdentifier.

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

Trait Implementations

impl Debug for AutoScalingGroupProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for AutoScalingGroupProperties
[src]

[src]

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

impl Serialize for AutoScalingGroupProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<AutoScalingGroupProperties> for AutoScalingGroup
[src]

[src]

Performs the conversion.

Auto Trait Implementations