aws-cdk-lib.aws_elasticbeanstalk.CfnApplicationVersionProps

interface CfnApplicationVersionProps

LanguageType name
.NETAmazon.CDK.AWS.ElasticBeanstalk.CfnApplicationVersionProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awselasticbeanstalk#CfnApplicationVersionProps
Javasoftware.amazon.awscdk.services.elasticbeanstalk.CfnApplicationVersionProps
Pythonaws_cdk.aws_elasticbeanstalk.CfnApplicationVersionProps
TypeScript aws-cdk-lib » aws_elasticbeanstalk » CfnApplicationVersionProps

Properties for defining a CfnApplicationVersion.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_elasticbeanstalk as elasticbeanstalk } from 'aws-cdk-lib';
const cfnApplicationVersionProps: elasticbeanstalk.CfnApplicationVersionProps = {
  applicationName: 'applicationName',
  sourceBundle: {
    s3Bucket: 's3Bucket',
    s3Key: 's3Key',
  },

  // the properties below are optional
  description: 'description',
};

Properties

NameTypeDescription
applicationNamestringThe name of the Elastic Beanstalk application that is associated with this application version.
sourceBundleIResolvable | SourceBundlePropertyThe Amazon S3 bucket and key that identify the location of the source bundle for this version.
description?stringA description of this application version.

applicationName

Type: string

The name of the Elastic Beanstalk application that is associated with this application version.


sourceBundle

Type: IResolvable | SourceBundleProperty

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.


description?

Type: string (optional)

A description of this application version.