aws-cdk-lib.aws_elasticbeanstalk.CfnApplicationVersion.SourceBundleProperty

interface SourceBundleProperty

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

Use the SourceBundle property type to specify the Amazon S3 location of the source bundle for an AWS Elastic Beanstalk application version when defining an AWS::ElasticBeanstalk::ApplicationVersion resource in an AWS CloudFormation template.

The SourceBundle property is an embedded property of the AWS::ElasticBeanstalk::ApplicationVersion resource. It specifies the Amazon S3 location of the source bundle for an AWS Elastic Beanstalk application version.

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 sourceBundleProperty: elasticbeanstalk.CfnApplicationVersion.SourceBundleProperty = {
  s3Bucket: 's3Bucket',
  s3Key: 's3Key',
};

Properties

NameTypeDescription
s3BucketstringThe Amazon S3 bucket where the data is located.
s3KeystringThe Amazon S3 key where the data is located.

s3Bucket

Type: string

The Amazon S3 bucket where the data is located.


s3Key

Type: string

The Amazon S3 key where the data is located.