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();
 - 
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApplication.CodeContentPropertystatic final classAn implementation forCfnApplication.CodeContentProperty - 
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectInformation about the Amazon S3 bucket that contains the application code.default StringThe text-format code for a Flink-based Kinesis Data Analytics application.default StringThe zip-format code for a Flink-based Kinesis Data Analytics application.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson 
- 
Method Details
- 
getS3ContentLocation
Information about the Amazon S3 bucket that contains the application code. - 
getTextContent
The text-format code for a Flink-based Kinesis Data Analytics application. - 
getZipFileContent
The zip-format code for a Flink-based Kinesis Data Analytics application. - 
builder
 
 -