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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApplicationVersionPropsstatic final classAn 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.BuilderofCfnApplicationVersionProps
-