Struct rusoto_apigateway::SdkConfigurationProperty[][src]

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

The default value of an SdkType configuration property.

The description of an SdkType configuration property.

The user-friendly name of an SdkType configuration property.

The name of a an SdkType configuration property.

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 Default for SdkConfigurationProperty
[src]

Returns the "default value" for a type. Read more

impl Debug for SdkConfigurationProperty
[src]

Formats the value using the given formatter. Read more

impl Clone for SdkConfigurationProperty
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for SdkConfigurationProperty
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations