Struct rusoto_autoscaling::DescribeAutoScalingInstancesType [] [src]

pub struct DescribeAutoScalingInstancesType {
    pub instance_ids: Option<Vec<String>>,
    pub max_records: Option<i64>,
    pub next_token: Option<String>,
}

Contains the parameters for DescribeAutoScalingInstances.

Fields

The instances to describe; up to 50 instance IDs. If you omit this parameter, all Auto Scaling instances are described. If you specify an ID that does not exist, it is ignored with no error.

The maximum number of items to return with this 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.)

Trait Implementations

impl Default for DescribeAutoScalingInstancesType
[src]

[src]

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

impl Debug for DescribeAutoScalingInstancesType
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeAutoScalingInstancesType
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations