Interface CfnApplicationV2.CodeContentProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationV2.CodeContentProperty.Jsii$Proxy
- Enclosing class:
CfnApplicationV2
@Stability(Stable)
public static interface CfnApplicationV2.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.kinesisanalytics.*; 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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnApplicationV2.CodeContentProperty
static final class
An implementation forCfnApplicationV2.CodeContentProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
Information about the Amazon S3 bucket that contains the application code.default String
The text-format code for a Flink-based Kinesis Data Analytics application.default String
The 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
-