[][src]Struct rusoto_apigateway::SdkConfigurationProperty

pub struct SdkConfigurationProperty {
    pub default_value: Option<String>,
    pub description: Option<String>,
    pub friendly_name: Option<String>,
    pub name: Option<String>,
    pub required: Option<bool>,
}

A configuration property of an SDK type.

Fields

default_value: Option<String>

The default value of an SdkType configuration property.

description: Option<String>

The description of an SdkType configuration property.

friendly_name: Option<String>

The user-friendly name of an SdkType configuration property.

name: Option<String>

The name of a an SdkType configuration property.

required: Option<bool>

A boolean flag of an SdkType configuration property to indicate if the associated SDK configuration property is required (true) or not (false).

Trait Implementations

impl Clone for SdkConfigurationProperty[src]

impl Debug for SdkConfigurationProperty[src]

impl Default for SdkConfigurationProperty[src]

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

impl PartialEq<SdkConfigurationProperty> for SdkConfigurationProperty[src]

impl StructuralPartialEq for SdkConfigurationProperty[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.