@Stability(value=Stable)
public static interface CfnApplicationV2.CodeContentProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnApplicationV2.CodeContentProperty.Builder
A builder for
CfnApplicationV2.CodeContentProperty |
static class |
CfnApplicationV2.CodeContentProperty.Jsii$Proxy
An implementation for
CfnApplicationV2.CodeContentProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnApplicationV2.CodeContentProperty.Builder |
builder() |
default Object |
getS3ContentLocation()
Information about the Amazon S3 bucket that contains the application code.
|
default String |
getTextContent()
The text-format code for a Flink-based Kinesis Data Analytics application.
|
default String |
getZipFileContent()
The zip-format code for a Flink-based Kinesis Data Analytics application.
|
@Stability(value=Stable) @Nullable default Object getS3ContentLocation()
@Stability(value=Stable) @Nullable default String getTextContent()
@Stability(value=Stable) @Nullable default String getZipFileContent()
@Stability(value=Stable) static CfnApplicationV2.CodeContentProperty.Builder builder()
Copyright © 2022. All rights reserved.