Struct rusoto_autoscaling::DeleteAutoScalingGroupType [] [src]

pub struct DeleteAutoScalingGroupType {
    pub auto_scaling_group_name: String,
    pub force_delete: Option<bool>,
}

Contains the parameters for DeleteAutoScalingGroup.

Fields

The name of the group to delete.

Specifies that the group will be deleted along with all instances associated with the group, without waiting for all instances to be terminated. This parameter also deletes any lifecycle actions associated with the group.

Trait Implementations

impl Default for DeleteAutoScalingGroupType
[src]

[src]

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

impl Debug for DeleteAutoScalingGroupType
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DeleteAutoScalingGroupType
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations