You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::ElasticBeanstalk::Types::CreateApplicationVersionMessage

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing CreateApplicationVersionMessage as input to an Aws::Client method, you can use a vanilla Hash:

{
  application_name: "ApplicationName", # required
  version_label: "VersionLabel", # required
  description: "Description",
  source_build_information: {
    source_type: "Git", # required, accepts Git, Zip
    source_repository: "CodeCommit", # required, accepts CodeCommit, S3
    source_location: "SourceLocation", # required
  },
  source_bundle: {
    s3_bucket: "S3Bucket",
    s3_key: "S3Key",
  },
  build_configuration: {
    artifact_name: "String",
    code_build_service_role: "NonEmptyString", # required
    compute_type: "BUILD_GENERAL1_SMALL", # accepts BUILD_GENERAL1_SMALL, BUILD_GENERAL1_MEDIUM, BUILD_GENERAL1_LARGE
    image: "NonEmptyString", # required
    timeout_in_minutes: 1,
  },
  auto_create_application: false,
  process: false,
  tags: [
    {
      key: "TagKey",
      value: "TagValue",
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#application_nameString

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

Returns:

  • (String)

    The name of the application.

#auto_create_applicationBoolean

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

Returns:

  • (Boolean)

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

#build_configurationTypes::BuildConfiguration

Settings for an AWS CodeBuild build.

Returns:

#descriptionString

A description of this application version.

Returns:

  • (String)

    A description of this application version.

#processBoolean

Pre-processes 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.

You must turn processing on for application versions that you create using AWS CodeBuild or AWS CodeCommit. For application versions built from a source bundle in Amazon S3, processing is optional.

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

Returns:

  • (Boolean)

    Pre-processes and validates the environment manifest (env.yaml) and configuration files (*.config files in the .ebextensions folder) in the source bundle.

#source_build_informationTypes::SourceBuildInformation

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

Returns:

  • (Types::SourceBuildInformation)

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

#source_bundleTypes::S3Location

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.

Returns:

  • (Types::S3Location)

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

#tagsArray<Types::Tag>

Specifies the tags applied to the application version.

Elastic Beanstalk applies these tags only to the application version. Environments that use the application version don\'t inherit the tags.

Returns:

  • (Array<Types::Tag>)

    Specifies the tags applied to the application version.

#version_labelString

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.

Returns:

  • (String)

    A label identifying this version.