Struct rusoto_elasticbeanstalk::ConfigurationOptionSetting [] [src]

pub struct ConfigurationOptionSetting {
    pub namespace: Option<String>,
    pub option_name: Option<String>,
    pub resource_name: Option<String>,
    pub value: Option<String>,
}

A specification identifying an individual configuration option along with its current value. For a list of possible option values, go to Option Values in the AWS Elastic Beanstalk Developer Guide.

Fields

A unique namespace identifying the option's associated AWS resource.

The name of the configuration option.

A unique resource name for a time-based scaling configuration option.

The current value for the configuration option.

Trait Implementations

impl Default for ConfigurationOptionSetting
[src]

[src]

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

impl Debug for ConfigurationOptionSetting
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ConfigurationOptionSetting
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations