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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApplicationVersionPropsMixin.SourceBundlePropertystatic final classAn implementation forCfnApplicationVersionPropsMixin.SourceBundleProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3Bucket
The Amazon S3 bucket where the data is located.- See Also:
-
getS3Key
The Amazon S3 key where the data is located.- See Also:
-
builder
-