Struct rusoto_elasticbeanstalk::UpdateConfigurationTemplateMessage [] [src]

pub struct UpdateConfigurationTemplateMessage {
    pub application_name: String,
    pub description: Option<String>,
    pub option_settings: Option<Vec<ConfigurationOptionSetting>>,
    pub options_to_remove: Option<Vec<OptionSpecification>>,
    pub template_name: String,
}

The result message containing the options for the specified solution stack.

Fields

The name of the application associated with the configuration template to update.

If no application is found with this name, UpdateConfigurationTemplate returns an InvalidParameterValue error.

A new description for the configuration.

A list of configuration option settings to update with the new specified option value.

A list of configuration options to remove from the configuration set.

Constraint: You can remove only UserDefined configuration options.

The name of the configuration template to update.

If no configuration template is found with this name, UpdateConfigurationTemplate returns an InvalidParameterValue error.

Trait Implementations

impl Default for UpdateConfigurationTemplateMessage
[src]

[src]

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

impl Debug for UpdateConfigurationTemplateMessage
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateConfigurationTemplateMessage
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations