Struct rusoto_autoscaling::DescribeAccountLimitsAnswer [] [src]

pub struct DescribeAccountLimitsAnswer {
    pub max_number_of_auto_scaling_groups: Option<i64>,
    pub max_number_of_launch_configurations: Option<i64>,
    pub number_of_auto_scaling_groups: Option<i64>,
    pub number_of_launch_configurations: Option<i64>,
}

Contains the parameters for DescribeAccountLimits.

Fields

The maximum number of groups allowed for your AWS account. The default limit is 20 per region.

The maximum number of launch configurations allowed for your AWS account. The default limit is 100 per region.

The current number of groups for your AWS account.

The current number of launch configurations for your AWS account.

Trait Implementations

impl Default for DescribeAccountLimitsAnswer
[src]

[src]

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

impl Debug for DescribeAccountLimitsAnswer
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeAccountLimitsAnswer
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations