Struct rusoto_elasticbeanstalk::DescribeConfigurationSettingsMessage [] [src]

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

The application for the environment or configuration template.

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.

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 Default for DescribeConfigurationSettingsMessage
[src]

[src]

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

impl Debug for DescribeConfigurationSettingsMessage
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeConfigurationSettingsMessage
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations