aws-cdk-lib.aws_kinesisanalyticsv2.CfnApplicationOutput.OutputProperty

interface OutputProperty

LanguageType name
.NETAmazon.CDK.AWS.KinesisAnalyticsV2.CfnApplicationOutput.OutputProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awskinesisanalyticsv2#CfnApplicationOutput_OutputProperty
Javasoftware.amazon.awscdk.services.kinesisanalyticsv2.CfnApplicationOutput.OutputProperty
Pythonaws_cdk.aws_kinesisanalyticsv2.CfnApplicationOutput.OutputProperty
TypeScript aws-cdk-lib » aws_kinesisanalyticsv2 » CfnApplicationOutput » 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.

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 outputProperty: kinesisanalyticsv2.CfnApplicationOutput.OutputProperty = {
  destinationSchema: {
    recordFormatType: 'recordFormatType',
  },

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

Properties

NameTypeDescription
destinationSchemaIResolvable | DestinationSchemaPropertyDescribes the data format when records are written to the destination.
kinesisFirehoseOutput?IResolvable | KinesisFirehoseOutputPropertyIdentifies a Kinesis Data Firehose delivery stream as the destination.
kinesisStreamsOutput?IResolvable | KinesisStreamsOutputPropertyIdentifies a Kinesis data stream as the destination.
lambdaOutput?IResolvable | LambdaOutputPropertyIdentifies an Amazon Lambda function as the destination.
name?stringThe name of the in-application stream.

destinationSchema

Type: IResolvable | DestinationSchemaProperty

Describes the data format when records are written to the destination.


kinesisFirehoseOutput?

Type: IResolvable | KinesisFirehoseOutputProperty (optional)

Identifies a Kinesis Data Firehose delivery stream as the destination.


kinesisStreamsOutput?

Type: IResolvable | KinesisStreamsOutputProperty (optional)

Identifies a Kinesis data stream as the destination.


lambdaOutput?

Type: IResolvable | LambdaOutputProperty (optional)

Identifies an Amazon Lambda function as the destination.


name?

Type: string (optional)

The name of the in-application stream.