Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

CodeContent

import type { CodeContent } from "https://aws-api.deno.dev/v0.4/services/kinesisanalyticsv2.ts?docs=full";

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

interface CodeContent {
S3ContentLocation?: S3ContentLocation | null;
TextContent?: string | null;
ZipFileContent?: Uint8Array | string | null;
}

§Properties

§
S3ContentLocation?: S3ContentLocation | null
[src]

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

§
TextContent?: string | null
[src]

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

§
ZipFileContent?: Uint8Array | string | null
[src]

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