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]

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

impl Debug for ValidateConfigurationSettingsMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for ValidateConfigurationSettingsMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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