@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:39.017Z") @Stability(value=Stable) public interface CfnApplicationVersionProps extends software.amazon.jsii.JsiiSerializable
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.*;
CfnApplicationVersionProps cfnApplicationVersionProps = CfnApplicationVersionProps.builder()
.applicationName("applicationName")
.sourceBundle(SourceBundleProperty.builder()
.s3Bucket("s3Bucket")
.s3Key("s3Key")
.build())
// the properties below are optional
.description("description")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnApplicationVersionProps.Builder
A builder for
CfnApplicationVersionProps |
static class |
CfnApplicationVersionProps.Jsii$Proxy
An implementation for
CfnApplicationVersionProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnApplicationVersionProps.Builder |
builder() |
String |
getApplicationName()
The name of the Elastic Beanstalk application that is associated with this application version.
|
default String |
getDescription()
A description of this application version.
|
Object |
getSourceBundle()
The Amazon S3 bucket and key that identify the location of the source bundle for this version.
|
@Stability(value=Stable) @NotNull String getApplicationName()
@Stability(value=Stable) @NotNull Object getSourceBundle()
The Amazon S3 bucket must be in the same region as the environment.
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) static CfnApplicationVersionProps.Builder builder()
CfnApplicationVersionProps.Builder of CfnApplicationVersionPropsCopyright © 2022. All rights reserved.