ApplicationCodeContentArgs

data class ApplicationCodeContentArgs(val s3ContentLocation: Output<ApplicationS3ContentLocationArgs>? = null, val textContent: Output<String>? = null, val zipFileContent: Output<String>? = null) : ConvertibleToJava<ApplicationCodeContentArgs>

Specifies either the application code, or the location of the application code, for a Flink-based Kinesis Data Analytics application.

Constructors

Link copied to clipboard
constructor(s3ContentLocation: Output<ApplicationS3ContentLocationArgs>? = null, textContent: Output<String>? = null, zipFileContent: Output<String>? = null)

Properties

Link copied to clipboard

Information about the Amazon S3 bucket that contains the application code.

Link copied to clipboard
val textContent: Output<String>? = null

The text-format code for a Flink-based Kinesis Data Analytics application.

Link copied to clipboard
val zipFileContent: Output<String>? = null

The zip-format code for a Flink-based Kinesis Data Analytics application.

Functions

Link copied to clipboard
open override fun toJava(): ApplicationCodeContentArgs