AWS CloudFormation
User Guide (API Version 2010-05-15)
« PreviousNext »
View the PDF for this guide.Go to the AWS Discussion Forum for this product.Go to the Kindle Store to download this guide in Kindle format.Did this page help you?  Yes | No |  Tell us about it...

ElasticBeanstalk ApplicationVersion Property Type

The ApplicationVersion property is an embedded property of the AWS::ElasticBeanstalk::Application type.

Syntax

{
   "Description" : String,
   "SourceBundle" : { SourceBundle },
   "VersionLabel" : String
}     

Members

Description

A description for this ApplicationVersion.

Required: No.

Type: String.

SourceBundle

The location where the source bundle is located for this version.

Required: No.

Type: Source Bundle

VersionLabel

A label that uniquely identifies the version of the associated application.

Required: Yes.

Type: String.

Example

{
   "VersionLabel" : "Initial Version",
   "Description" : "Version 1.0",
   "SourceBundle" : {
      "S3Bucket" : { "Fn::Join" :
         [ "-", [ "elasticbeanstalk-samples", { "Ref" : "AWS::Region" } ] ] },
      "S3Key" : "php-sample.zip"
   }
}