Interface CfnApplicationVersionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationVersionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:56.523Z")
@Stability(Stable)
public interface CfnApplicationVersionProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnApplicationVersion
.
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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnApplicationVersionProps
static final class
An implementation forCfnApplicationVersionProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApplicationName
The name of the Elastic Beanstalk application that is associated with this application version. -
getSourceBundle
The Amazon S3 bucket and key that identify the location of the source bundle for this version.The Amazon S3 bucket must be in the same region as the environment.
-
getDescription
A description of this application version. -
builder
- Returns:
- a
CfnApplicationVersionProps.Builder
ofCfnApplicationVersionProps
-