Struct rusoto_autoscaling::DescribePoliciesType[][src]

pub struct DescribePoliciesType {
    pub auto_scaling_group_name: Option<String>,
    pub max_records: Option<i64>,
    pub next_token: Option<String>,
    pub policy_names: Option<Vec<String>>,
    pub policy_types: Option<Vec<String>>,
}

Fields

The name of the Auto Scaling group.

The maximum number of items to be returned with each call. The default value is 50 and the maximum value is 100.

The token for the next set of items to return. (You received this token from a previous call.)

The names of one or more policies. If you omit this parameter, all policies are described. If an group name is provided, the results are limited to that group. This list is limited to 50 items. If you specify an unknown policy name, it is ignored with no error.

One or more policy types. Valid values are SimpleScaling and StepScaling.

Trait Implementations

impl Default for DescribePoliciesType
[src]

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

impl Debug for DescribePoliciesType
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribePoliciesType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DescribePoliciesType
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations