Struct rusoto_ecs::RegisterContainerInstanceRequest [] [src]

pub struct RegisterContainerInstanceRequest {
    pub attributes: Option<Vec<Attribute>>,
    pub cluster: Option<String>,
    pub container_instance_arn: Option<String>,
    pub instance_identity_document: Option<String>,
    pub instance_identity_document_signature: Option<String>,
    pub total_resources: Option<Vec<Resource>>,
    pub version_info: Option<VersionInfo>,
}

Fields

The container instance attributes that this container instance supports.

The short name or full Amazon Resource Name (ARN) of the cluster with which to register your container instance. If you do not specify a cluster, the default cluster is assumed.

The Amazon Resource Name (ARN) of the container instance (if it was previously registered).

The instance identity document for the EC2 instance to register. This document can be found by running the following command from the instance: curl http://169.254.169.254/latest/dynamic/instance-identity/document/

The instance identity document signature for the EC2 instance to register. This signature can be found by running the following command from the instance: curl http://169.254.169.254/latest/dynamic/instance-identity/signature/

The resources available on the instance.

The version information for the Amazon ECS container agent and Docker daemon running on the container instance.

Trait Implementations

impl Default for RegisterContainerInstanceRequest
[src]

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

impl Debug for RegisterContainerInstanceRequest
[src]

Formats the value using the given formatter.

impl Clone for RegisterContainerInstanceRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more