[][src]Struct rusoto_cloudformation::DescribeTypeInput

pub struct DescribeTypeInput {
    pub arn: Option<String>,
    pub type_: Option<String>,
    pub type_name: Option<String>,
    pub version_id: Option<String>,
}

Fields

arn: Option<String>

The Amazon Resource Name (ARN) of the type.

Conditional: You must specify either TypeName and Type, or Arn.

type_: Option<String>

The kind of type.

Currently the only valid value is RESOURCE.

Conditional: You must specify either TypeName and Type, or Arn.

type_name: Option<String>

The name of the type.

Conditional: You must specify either TypeName and Type, or Arn.

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.

If you specify a VersionId, DescribeType returns information about that specific type version. Otherwise, it returns information about the default type version.

Trait Implementations

impl Clone for DescribeTypeInput[src]

impl Debug for DescribeTypeInput[src]

impl Default for DescribeTypeInput[src]

impl PartialEq<DescribeTypeInput> for DescribeTypeInput[src]

impl StructuralPartialEq for DescribeTypeInput[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.