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

ApplicationDetail

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

Note: This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see Amazon Kinesis Data Analytics API V2 Documentation.

Provides a description of the application, including the application Amazon Resource Name (ARN), status, latest version, and input and output configuration.

interface ApplicationDetail {
ApplicationARN: string;
ApplicationCode?: string | null;
ApplicationDescription?: string | null;
ApplicationName: string;
ApplicationStatus: ApplicationStatus;
ApplicationVersionId: number;
CloudWatchLoggingOptionDescriptions?: CloudWatchLoggingOptionDescription[] | null;
CreateTimestamp?: Date | number | null;
InputDescriptions?: InputDescription[] | null;
LastUpdateTimestamp?: Date | number | null;
OutputDescriptions?: OutputDescription[] | null;
ReferenceDataSourceDescriptions?: ReferenceDataSourceDescription[] | null;
}

§Properties

§
ApplicationARN: string
[src]

ARN of the application.

§
ApplicationCode?: string | null
[src]

Returns the application code that you provided to perform data analysis on any of the in-application streams in your application.

§
ApplicationDescription?: string | null
[src]

Description of the application.

§
ApplicationName: string
[src]

Name of the application.

§
ApplicationStatus: ApplicationStatus
[src]

Status of the application.

§
ApplicationVersionId: number
[src]

Provides the current application version.

§
CloudWatchLoggingOptionDescriptions?: CloudWatchLoggingOptionDescription[] | null
[src]

Describes the CloudWatch log streams that are configured to receive application messages. For more information about using CloudWatch log streams with Amazon Kinesis Analytics applications, see Working with Amazon CloudWatch Logs.

§
CreateTimestamp?: Date | number | null
[src]

Time stamp when the application version was created.

§
InputDescriptions?: InputDescription[] | null
[src]

Describes the application input configuration. For more information, see Configuring Application Input.

§
LastUpdateTimestamp?: Date | number | null
[src]

Time stamp when the application was last updated.

§
OutputDescriptions?: OutputDescription[] | null
[src]

Describes the application output configuration. For more information, see Configuring Application Output.

§
ReferenceDataSourceDescriptions?: ReferenceDataSourceDescription[] | null
[src]

Describes reference data sources configured for the application. For more information, see Configuring Application Input.