[][src]Struct rusoto_cloudformation::TypeVersionSummary

pub struct TypeVersionSummary {
    pub arn: Option<String>,
    pub description: Option<String>,
    pub is_default_version: Option<bool>,
    pub time_created: Option<String>,
    pub type_: Option<String>,
    pub type_name: Option<String>,
    pub version_id: Option<String>,
}

Contains summary information about a specific version of a CloudFormation type.

Fields

arn: Option<String>

The Amazon Resource Name (ARN) of the type version.

description: Option<String>

The description of the type version.

is_default_version: Option<bool>

Whether the specified type version is set as the default version.

time_created: Option<String>

When the version was registered.

type_: Option<String>

The kind of type.

type_name: Option<String>

The name of the type.

version_id: Option<String>

The ID of a specific version of the type. The version ID is the value at the end of the Amazon Resource Name (ARN) assigned to the type version when it is registered.

Trait Implementations

impl Clone for TypeVersionSummary[src]

impl Debug for TypeVersionSummary[src]

impl Default for TypeVersionSummary[src]

impl PartialEq<TypeVersionSummary> for TypeVersionSummary[src]

impl StructuralPartialEq for TypeVersionSummary[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.