[][src]Struct rusoto_cloudformation::TemplateParameter

pub struct TemplateParameter {
    pub default_value: Option<String>,
    pub description: Option<String>,
    pub no_echo: Option<bool>,
    pub parameter_key: Option<String>,
}

The TemplateParameter data type.

Fields

default_value: Option<String>

The default value associated with the parameter.

description: Option<String>

User defined description associated with the parameter.

no_echo: Option<bool>

Flag indicating whether the parameter should be displayed as plain text in logs and UIs.

parameter_key: Option<String>

The name associated with the parameter.

Trait Implementations

impl Clone for TemplateParameter[src]

impl Debug for TemplateParameter[src]

impl Default for TemplateParameter[src]

impl PartialEq<TemplateParameter> for TemplateParameter[src]

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