[][src]Struct rusoto_cloudformation::SetTypeDefaultVersionInput

pub struct SetTypeDefaultVersionInput {
    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 for which you want version summary information.

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

type_: Option<String>

The kind of type.

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.

Trait Implementations

impl Clone for SetTypeDefaultVersionInput[src]

impl Debug for SetTypeDefaultVersionInput[src]

impl Default for SetTypeDefaultVersionInput[src]

impl PartialEq<SetTypeDefaultVersionInput> for SetTypeDefaultVersionInput[src]

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