Interface CfnApplicationV2.S3ContentLocationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnApplicationV2.S3ContentLocationProperty.Jsii$Proxy
Enclosing class:
CfnApplicationV2

@Stability(Stable) public static interface CfnApplicationV2.S3ContentLocationProperty extends software.amazon.jsii.JsiiSerializable
The location of an application or a custom artifact.

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.kinesisanalytics.*;
 S3ContentLocationProperty s3ContentLocationProperty = S3ContentLocationProperty.builder()
         .bucketArn("bucketArn")
         .fileKey("fileKey")
         // the properties below are optional
         .objectVersion("objectVersion")
         .build();