[][src]Struct rusoto_elasticbeanstalk::ValidateConfigurationSettingsMessage

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

application_name: String

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

environment_name: Option<String>

The name of the environment to validate the settings against.

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

option_settings: Vec<ConfigurationOptionSetting>

A list of the options and desired values to evaluate.

template_name: Option<String>

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

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

Trait Implementations

impl Clone for ValidateConfigurationSettingsMessage[src]

impl Debug for ValidateConfigurationSettingsMessage[src]

impl Default for ValidateConfigurationSettingsMessage[src]

impl PartialEq<ValidateConfigurationSettingsMessage> for ValidateConfigurationSettingsMessage[src]

impl StructuralPartialEq for ValidateConfigurationSettingsMessage[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.