Struct rusoto_opsworks::DescribeInstancesRequest[][src]

pub struct DescribeInstancesRequest {
    pub instance_ids: Option<Vec<String>>,
    pub layer_id: Option<String>,
    pub stack_id: Option<String>,
}

Fields

An array of instance IDs to be described. If you use this parameter, DescribeInstances returns a description of the specified instances. Otherwise, it returns a description of every instance.

A layer ID. If you use this parameter, DescribeInstances returns descriptions of the instances associated with the specified layer.

A stack ID. If you use this parameter, DescribeInstances returns descriptions of the instances associated with the specified stack.

Trait Implementations

impl Default for DescribeInstancesRequest
[src]

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

impl Debug for DescribeInstancesRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeInstancesRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DescribeInstancesRequest
[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