[][src]Struct rusoto_opsworks::StackSummary

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

apps_count: Option<i64>

The number of apps.

arn: Option<String>

The stack's ARN.

instances_count: Option<InstancesCount>

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

layers_count: Option<i64>

The number of layers.

name: Option<String>

The stack name.

stack_id: Option<String>

The stack ID.

Trait Implementations

impl Clone for StackSummary[src]

impl Default for StackSummary[src]

impl PartialEq<StackSummary> for StackSummary[src]

impl Debug for StackSummary[src]

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

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for T[src]

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self