public static interface CfnApplicationVersion.SourceBundleProperty
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.services.elasticbeanstalk.*; SourceBundleProperty sourceBundleProperty = SourceBundleProperty.builder() .s3Bucket("s3Bucket") .s3Key("s3Key") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnApplicationVersion.SourceBundleProperty.Builder
A builder for
CfnApplicationVersion.SourceBundleProperty |
static class |
CfnApplicationVersion.SourceBundleProperty.Jsii$Proxy
An implementation for
CfnApplicationVersion.SourceBundleProperty |
Modifier and Type | Method and Description |
---|---|
static CfnApplicationVersion.SourceBundleProperty.Builder |
builder() |
java.lang.String |
getS3Bucket()
The Amazon S3 bucket where the data is located.
|
java.lang.String |
getS3Key()
The Amazon S3 key where the data is located.
|
java.lang.String getS3Bucket()
java.lang.String getS3Key()
static CfnApplicationVersion.SourceBundleProperty.Builder builder()