interface SourceBundleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ElasticBeanstalk.Mixins.CfnApplicationVersionPropsMixin.SourceBundleProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awselasticbeanstalk/mixins#CfnApplicationVersionPropsMixin_SourceBundleProperty |
Java | software.amazon.awscdk.mixins.preview.services.elasticbeanstalk.mixins.CfnApplicationVersionPropsMixin.SourceBundleProperty |
Python | aws_cdk.mixins_preview.aws_elasticbeanstalk.mixins.CfnApplicationVersionPropsMixin.SourceBundleProperty |
TypeScript | @aws-cdk/mixins-preview » aws_elasticbeanstalk » mixins » CfnApplicationVersionPropsMixin » 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 { mixins as elasticbeanstalk_mixins } from '@aws-cdk/mixins-preview/aws-elasticbeanstalk';
const sourceBundleProperty: elasticbeanstalk_mixins.CfnApplicationVersionPropsMixin.SourceBundleProperty = {
s3Bucket: 's3Bucket',
s3Key: 's3Key',
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | string | The Amazon S3 bucket where the data is located. |
| s3 | string | The Amazon S3 key where the data is located. |
s3Bucket?
Type:
string
(optional)
The Amazon S3 bucket where the data is located.
s3Key?
Type:
string
(optional)
The Amazon S3 key where the data is located.

.NET
Go
Java
Python
TypeScript