Struct rusoto_ecs::Container [] [src]

pub struct Container {
    pub container_arn: Option<String>,
    pub exit_code: Option<i64>,
    pub last_status: Option<String>,
    pub name: Option<String>,
    pub network_bindings: Option<Vec<NetworkBinding>>,
    pub reason: Option<String>,
    pub task_arn: Option<String>,
}

A Docker container that is part of a task.

Fields

The Amazon Resource Name (ARN) of the container.

The exit code returned from the container.

The last known status of the container.

The name of the container.

The network bindings associated with the container.

A short (255 max characters) human-readable string to provide additional details about a running or stopped container.

The Amazon Resource Name (ARN) of the task.

Trait Implementations

impl Default for Container
[src]

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

impl Debug for Container
[src]

Formats the value using the given formatter.

impl Clone for Container
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more