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]

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

impl Debug for ConfigurationOptionSetting
[src]

Formats the value using the given formatter. Read more

impl Clone for ConfigurationOptionSetting
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ConfigurationOptionSetting
[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