[][src]Struct rusoto_elasticbeanstalk::CreateConfigurationTemplateMessage

pub struct CreateConfigurationTemplateMessage {
    pub application_name: String,
    pub description: Option<String>,
    pub environment_id: Option<String>,
    pub option_settings: Option<Vec<ConfigurationOptionSetting>>,
    pub platform_arn: Option<String>,
    pub solution_stack_name: Option<String>,
    pub source_configuration: Option<SourceConfiguration>,
    pub tags: Option<Vec<Tag>>,
    pub template_name: String,
}

Request to create a configuration template.

Fields

application_name: String

The name of the application to associate with this configuration template. If no application is found with this name, AWS Elastic Beanstalk returns an InvalidParameterValue error.

description: Option<String>

Describes this configuration.

environment_id: Option<String>

The ID of the environment used with this configuration template.

option_settings: Option<Vec<ConfigurationOptionSetting>>

If specified, AWS Elastic Beanstalk sets the specified configuration option to the requested value. The new value overrides the value obtained from the solution stack or the source configuration template.

platform_arn: Option<String>

The ARN of the custom platform.

solution_stack_name: Option<String>

The name of the solution stack used by this configuration. The solution stack specifies the operating system, architecture, and application server for a configuration template. It determines the set of configuration options as well as the possible and default values.

Use ListAvailableSolutionStacks to obtain a list of available solution stacks.

A solution stack name or a source configuration parameter must be specified, otherwise AWS Elastic Beanstalk returns an InvalidParameterValue error.

If a solution stack name is not specified and the source configuration parameter is specified, AWS Elastic Beanstalk uses the same solution stack as the source configuration template.

source_configuration: Option<SourceConfiguration>

If specified, AWS Elastic Beanstalk uses the configuration values from the specified configuration template to create a new configuration.

Values specified in the OptionSettings parameter of this call overrides any values obtained from the SourceConfiguration.

If no configuration template is found, returns an InvalidParameterValue error.

Constraint: If both the solution stack name parameter and the source configuration parameters are specified, the solution stack of the source configuration template must match the specified solution stack name or else AWS Elastic Beanstalk returns an InvalidParameterCombination error.

tags: Option<Vec<Tag>>

Specifies the tags applied to the configuration template.

template_name: String

The name of the configuration template.

Constraint: This name must be unique per application.

Default: If a configuration template already exists with this name, AWS Elastic Beanstalk returns an InvalidParameterValue error.

Trait Implementations

impl PartialEq<CreateConfigurationTemplateMessage> for CreateConfigurationTemplateMessage[src]

impl Default for CreateConfigurationTemplateMessage[src]

impl Clone for CreateConfigurationTemplateMessage[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for CreateConfigurationTemplateMessage[src]

Auto Trait Implementations

impl Send for CreateConfigurationTemplateMessage

impl Sync for CreateConfigurationTemplateMessage

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self