aws-cdk-lib.aws_kinesisanalyticsv2.CfnApplicationOutputProps

interface CfnApplicationOutputProps

LanguageType name
.NETAmazon.CDK.AWS.KinesisAnalyticsV2.CfnApplicationOutputProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awskinesisanalyticsv2#CfnApplicationOutputProps
Javasoftware.amazon.awscdk.services.kinesisanalyticsv2.CfnApplicationOutputProps
Pythonaws_cdk.aws_kinesisanalyticsv2.CfnApplicationOutputProps
TypeScript aws-cdk-lib » aws_kinesisanalyticsv2 » CfnApplicationOutputProps

Properties for defining a CfnApplicationOutput.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_kinesisanalyticsv2 as kinesisanalyticsv2 } from 'aws-cdk-lib';
const cfnApplicationOutputProps: kinesisanalyticsv2.CfnApplicationOutputProps = {
  applicationName: 'applicationName',
  output: {
    destinationSchema: {
      recordFormatType: 'recordFormatType',
    },

    // the properties below are optional
    kinesisFirehoseOutput: {
      resourceArn: 'resourceArn',
    },
    kinesisStreamsOutput: {
      resourceArn: 'resourceArn',
    },
    lambdaOutput: {
      resourceArn: 'resourceArn',
    },
    name: 'name',
  },
};

Properties

NameTypeDescription
applicationNamestringThe name of the application.
outputIResolvable | OutputPropertyDescribes a SQL-based Kinesis Data Analytics application's output configuration, in which you identify an in-application stream and a destination where you want the in-application stream data to be written.

applicationName

Type: string

The name of the application.


output

Type: IResolvable | OutputProperty

Describes a SQL-based Kinesis Data Analytics application's output configuration, in which you identify an in-application stream and a destination where you want the in-application stream data to be written.

The destination can be a Kinesis data stream or a Kinesis Data Firehose delivery stream.