[][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 Elastic Beanstalk application to associate with this configuration template.

description: Option<String>

An optional description for this configuration.

environment_id: Option<String>

The ID of an environment whose settings you want to use to create the configuration template. You must specify EnvironmentId if you don't specify PlatformArn, SolutionStackName, or SourceConfiguration.

option_settings: Option<Vec<ConfigurationOptionSetting>>

Option values for the Elastic Beanstalk configuration, such as the instance type. If specified, these values override the values obtained from the solution stack or the source configuration template. For a complete list of Elastic Beanstalk configuration options, see Option Values in the AWS Elastic Beanstalk Developer Guide.

platform_arn: Option<String>

The Amazon Resource Name (ARN) of the custom platform. For more information, see Custom Platforms in the AWS Elastic Beanstalk Developer Guide.

If you specify PlatformArn, then don't specify SolutionStackName.

solution_stack_name: Option<String>

The name of an Elastic Beanstalk solution stack (platform version) that this configuration uses. For example, 64bit Amazon Linux 2013.09 running Tomcat 7 Java 7. A solution stack specifies the operating system, runtime, and application server for a configuration template. It also determines the set of configuration options as well as the possible and default values. For more information, see Supported Platforms in the AWS Elastic Beanstalk Developer Guide.

You must specify SolutionStackName if you don't specify PlatformArn, EnvironmentId, or SourceConfiguration.

Use the ListAvailableSolutionStacks API to obtain a list of available solution stacks.

source_configuration: Option<SourceConfiguration>

An Elastic Beanstalk configuration template to base this one on. If specified, Elastic Beanstalk uses the configuration values from the specified configuration template to create a new configuration.

Values specified in OptionSettings override any values obtained from the SourceConfiguration.

You must specify SourceConfiguration if you don't specify PlatformArn, EnvironmentId, or SolutionStackName.

Constraint: If both solution stack name and source configuration are specified, the solution stack of the source configuration template must match the specified solution stack name.

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.

Trait Implementations

impl Clone for CreateConfigurationTemplateMessage[src]

impl Debug for CreateConfigurationTemplateMessage[src]

impl Default for CreateConfigurationTemplateMessage[src]

impl PartialEq<CreateConfigurationTemplateMessage> for CreateConfigurationTemplateMessage[src]

impl StructuralPartialEq for CreateConfigurationTemplateMessage[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.