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();
 
  • Method Details

    • getApplicationName

      @Stability(Stable) @NotNull String getApplicationName()
      The name of the Elastic Beanstalk application that is associated with this application version.
    • getSourceBundle

      @Stability(Stable) @NotNull Object 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

      @Stability(Stable) @Nullable default String getDescription()
      A description of this application version.
    • builder

      @Stability(Stable) static CfnApplicationVersionProps.Builder builder()
      Returns:
      a CfnApplicationVersionProps.Builder of CfnApplicationVersionProps