Interface CfnApplicationVersionPropsMixin.SourceBundleProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnApplicationVersionPropsMixin.SourceBundleProperty.Jsii$Proxy
Enclosing class:
CfnApplicationVersionPropsMixin

@Stability(Stable) public static interface CfnApplicationVersionPropsMixin.SourceBundleProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.elasticbeanstalk.*;
 SourceBundleProperty sourceBundleProperty = SourceBundleProperty.builder()
         .s3Bucket("s3Bucket")
         .s3Key("s3Key")
         .build();
 

See Also: