Interface CfnApplicationVersionProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnApplicationVersionProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)", date="2024-10-25T14:21:15.124Z") @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: