@Stability(value=Stable)
public static interface CfnApplicationVersion.SourceBundleProperty
extends software.amazon.jsii.JsiiSerializable
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() |
String |
getS3Bucket()
The Amazon S3 bucket where the data is located.
|
String |
getS3Key()
The Amazon S3 key where the data is located.
|
@Stability(value=Stable) @NotNull String getS3Bucket()
@Stability(value=Stable) @NotNull String getS3Key()
@Stability(value=Stable) static CfnApplicationVersion.SourceBundleProperty.Builder builder()
Copyright © 2022. All rights reserved.