Struct rusoto_elasticbeanstalk::DescribeConfigurationOptionsMessage[][src]

pub struct DescribeConfigurationOptionsMessage {
    pub application_name: Option<String>,
    pub environment_name: Option<String>,
    pub options: Option<Vec<OptionSpecification>>,
    pub platform_arn: Option<String>,
    pub solution_stack_name: Option<String>,
    pub template_name: Option<String>,
}

Result message containing a list of application version descriptions.

Fields

The name of the application associated with the configuration template or environment. Only needed if you want to describe the configuration options associated with either the configuration template or environment.

The name of the environment whose configuration options you want to describe.

If specified, restricts the descriptions to only the specified options.

The ARN of the custom platform.

The name of the solution stack whose configuration options you want to describe.

The name of the configuration template whose configuration options you want to describe.

Trait Implementations

impl Default for DescribeConfigurationOptionsMessage
[src]

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

impl Debug for DescribeConfigurationOptionsMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeConfigurationOptionsMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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