Interface CfnApplicationVersionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationVersionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-17T14:40:51.640Z")
@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();
- See Also:
-
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.- See Also:
-
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.
Returns union: either
IResolvableorCfnApplicationVersion.SourceBundleProperty- See Also:
-
getDescription
A description of this application version.- See Also:
-
builder
- Returns:
- a
CfnApplicationVersionProps.BuilderofCfnApplicationVersionProps
-