Interface CfnApplication.CodeContentProperty

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

@Stability(Stable) public static interface CfnApplication.CodeContentProperty extends software.amazon.jsii.JsiiSerializable
Specifies either the application code, or the location of the application code, for a Flink-based Kinesis Data Analytics application.

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.kinesisanalyticsv2.*;
 CodeContentProperty codeContentProperty = CodeContentProperty.builder()
         .s3ContentLocation(S3ContentLocationProperty.builder()
                 .bucketArn("bucketArn")
                 .fileKey("fileKey")
                 // the properties below are optional
                 .objectVersion("objectVersion")
                 .build())
         .textContent("textContent")
         .zipFileContent("zipFileContent")
         .build();