Struct rusoto_ecs::DescribeContainerInstancesRequest[][src]

pub struct DescribeContainerInstancesRequest {
    pub cluster: Option<String>,
    pub container_instances: Vec<String>,
}

Fields

The short name or full Amazon Resource Name (ARN) of the cluster that hosts the container instances to describe. If you do not specify a cluster, the default cluster is assumed.

A list of container instance IDs or full ARN entries.

Trait Implementations

impl Default for DescribeContainerInstancesRequest
[src]

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

impl Debug for DescribeContainerInstancesRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeContainerInstancesRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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