Struct rusoto_elasticbeanstalk::ConfigurationSettingsDescription [] [src]

pub struct ConfigurationSettingsDescription {
    pub application_name: Option<String>,
    pub date_created: Option<String>,
    pub date_updated: Option<String>,
    pub deployment_status: Option<String>,
    pub description: Option<String>,
    pub environment_name: Option<String>,
    pub option_settings: Option<Vec<ConfigurationOptionSetting>>,
    pub platform_arn: Option<String>,
    pub solution_stack_name: Option<String>,
    pub template_name: Option<String>,
}

Describes the settings for a configuration set.

Fields

The name of the application associated with this configuration set.

The date (in UTC time) when this configuration set was created.

The date (in UTC time) when this configuration set was last modified.

If this configuration set is associated with an environment, the DeploymentStatus parameter indicates the deployment status of this configuration set:

  • null: This configuration is not associated with a running environment.

  • pending: This is a draft configuration that is not deployed to the associated environment but is in the process of deploying.

  • deployed: This is the configuration that is currently deployed to the associated running environment.

  • failed: This is a draft configuration that failed to successfully deploy.

Describes this configuration set.

If not null, the name of the environment for this configuration set.

A list of the configuration options and their values in this configuration set.

The ARN of the platform.

The name of the solution stack this configuration set uses.

If not null, the name of the configuration template for this configuration set.

Trait Implementations

impl Default for ConfigurationSettingsDescription
[src]

[src]

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

impl Debug for ConfigurationSettingsDescription
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ConfigurationSettingsDescription
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations