Struct rusoto_elasticbeanstalk::ValidateConfigurationSettingsMessage [] [src]

pub struct ValidateConfigurationSettingsMessage {
    pub application_name: String,
    pub environment_name: Option<String>,
    pub option_settings: Vec<ConfigurationOptionSetting>,
    pub template_name: Option<String>,
}

A list of validation messages for a specified configuration template.

Fields

The name of the application that the configuration template or environment belongs to.

The name of the environment to validate the settings against.

Condition: You cannot specify both this and a configuration template name.

A list of the options and desired values to evaluate.

The name of the configuration template to validate the settings against.

Condition: You cannot specify both this and an environment name.

Trait Implementations

impl Default for ValidateConfigurationSettingsMessage
[src]

[src]

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

impl Debug for ValidateConfigurationSettingsMessage
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ValidateConfigurationSettingsMessage
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations