[][src]Struct rusoto_elasticbeanstalk::DescribeConfigurationSettingsMessage

pub struct DescribeConfigurationSettingsMessage {
    pub application_name: String,
    pub environment_name: Option<String>,
    pub template_name: Option<String>,
}

Result message containing all of the configuration settings for a specified solution stack or configuration template.

Fields

application_name: String

The application for the environment or configuration template.

environment_name: Option<String>

The name of the environment to describe.

Condition: You must specify either this or a TemplateName, but not both. If you specify both, AWS Elastic Beanstalk returns an InvalidParameterCombination error. If you do not specify either, AWS Elastic Beanstalk returns MissingRequiredParameter error.

template_name: Option<String>

The name of the configuration template to describe.

Conditional: You must specify either this parameter or an EnvironmentName, but not both. If you specify both, AWS Elastic Beanstalk returns an InvalidParameterCombination error. If you do not specify either, AWS Elastic Beanstalk returns a MissingRequiredParameter error.

Trait Implementations

impl Clone for DescribeConfigurationSettingsMessage[src]

impl Debug for DescribeConfigurationSettingsMessage[src]

impl Default for DescribeConfigurationSettingsMessage[src]

impl PartialEq<DescribeConfigurationSettingsMessage> for DescribeConfigurationSettingsMessage[src]

impl StructuralPartialEq for DescribeConfigurationSettingsMessage[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> 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.