Struct rusoto_elasticbeanstalk::CreateApplicationVersionMessage[][src]

pub struct CreateApplicationVersionMessage {
    pub application_name: String,
    pub auto_create_application: Option<bool>,
    pub build_configuration: Option<BuildConfiguration>,
    pub description: Option<String>,
    pub process: Option<bool>,
    pub source_build_information: Option<SourceBuildInformation>,
    pub source_bundle: Option<S3Location>,
    pub version_label: String,
}

Fields

The name of the application. If no application is found with this name, and AutoCreateApplication is false, returns an InvalidParameterValue error.

Set to true to create an application with the specified name if it doesn't already exist.

Settings for an AWS CodeBuild build.

Describes this version.

Preprocesses and validates the environment manifest (env.yaml) and configuration files (*.config files in the .ebextensions folder) in the source bundle. Validating configuration files can identify issues prior to deploying the application version to an environment.

The Process option validates Elastic Beanstalk configuration files. It doesn't validate your application's configuration files, like proxy server or Docker configuration.

Specify a commit in an AWS CodeCommit Git repository to use as the source code for the application version.

The Amazon S3 bucket and key that identify the location of the source bundle for this version.

The Amazon S3 bucket must be in the same region as the environment.

Specify a source bundle in S3 or a commit in an AWS CodeCommit repository (with SourceBuildInformation), but not both. If neither SourceBundle nor SourceBuildInformation are provided, Elastic Beanstalk uses a sample application.

A label identifying this version.

Constraint: Must be unique per application. If an application version already exists with this label for the specified application, AWS Elastic Beanstalk returns an InvalidParameterValue error.

Trait Implementations

impl Default for CreateApplicationVersionMessage
[src]

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

impl Debug for CreateApplicationVersionMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateApplicationVersionMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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