Struct rusoto_opsworks::StackSummary[][src]

pub struct StackSummary {
    pub apps_count: Option<i64>,
    pub arn: Option<String>,
    pub instances_count: Option<InstancesCount>,
    pub layers_count: Option<i64>,
    pub name: Option<String>,
    pub stack_id: Option<String>,
}

Summarizes the number of layers, instances, and apps in a stack.

Fields

The number of apps.

The stack's ARN.

An InstancesCount object with the number of instances in each status.

The number of layers.

The stack name.

The stack ID.

Trait Implementations

impl Default for StackSummary
[src]

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

impl Debug for StackSummary
[src]

Formats the value using the given formatter. Read more

impl Clone for StackSummary
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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