[][src]Struct rusoto_ecs::Cluster

pub struct Cluster {
    pub active_services_count: Option<i64>,
    pub cluster_arn: Option<String>,
    pub cluster_name: Option<String>,
    pub pending_tasks_count: Option<i64>,
    pub registered_container_instances_count: Option<i64>,
    pub running_tasks_count: Option<i64>,
    pub statistics: Option<Vec<KeyValuePair>>,
    pub status: Option<String>,
    pub tags: Option<Vec<Tag>>,
}

A regional grouping of one or more container instances on which you can run task requests. Each account receives a default cluster the first time you use the Amazon ECS service, but you may also create other clusters. Clusters may contain more than one instance type simultaneously.

Fields

active_services_count: Option<i64>

The number of services that are running on the cluster in an ACTIVE state. You can view these services with ListServices.

cluster_arn: Option<String>

The Amazon Resource Name (ARN) that identifies the cluster. The ARN contains the arn:aws:ecs namespace, followed by the Region of the cluster, the AWS account ID of the cluster owner, the cluster namespace, and then the cluster name. For example, arn:aws:ecs:region:012345678910:cluster/test ..

cluster_name: Option<String>

A user-generated string that you use to identify your cluster.

pending_tasks_count: Option<i64>

The number of tasks in the cluster that are in the PENDING state.

registered_container_instances_count: Option<i64>

The number of container instances registered into the cluster. This includes container instances in both ACTIVE and DRAINING status.

running_tasks_count: Option<i64>

The number of tasks in the cluster that are in the RUNNING state.

statistics: Option<Vec<KeyValuePair>>

Additional information about your clusters that are separated by launch type, including:

  • runningEC2TasksCount

  • RunningFargateTasksCount

  • pendingEC2TasksCount

  • pendingFargateTasksCount

  • activeEC2ServiceCount

  • activeFargateServiceCount

  • drainingEC2ServiceCount

  • drainingFargateServiceCount

status: Option<String>

The status of the cluster. The valid values are ACTIVE or INACTIVE. ACTIVE indicates that you can register container instances with the cluster and the associated instances can accept tasks.

tags: Option<Vec<Tag>>

The metadata that you apply to the cluster to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.

Trait Implementations

impl PartialEq<Cluster> for Cluster[src]

impl Default for Cluster[src]

impl Clone for Cluster[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Cluster[src]

impl<'de> Deserialize<'de> for Cluster[src]

Auto Trait Implementations

impl Send for Cluster

impl Sync for Cluster

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self