aws-cdk-lib.aws_kinesisanalytics.CfnApplicationOutputV2Props

interface CfnApplicationOutputV2Props

LanguageType name
.NETAmazon.CDK.AWS.KinesisAnalytics.CfnApplicationOutputV2Props
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awskinesisanalytics#CfnApplicationOutputV2Props
Javasoftware.amazon.awscdk.services.kinesisanalytics.CfnApplicationOutputV2Props
Pythonaws_cdk.aws_kinesisanalytics.CfnApplicationOutputV2Props
TypeScript aws-cdk-lib » aws_kinesisanalytics » CfnApplicationOutputV2Props

Properties for defining a CfnApplicationOutputV2.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_kinesisanalytics as kinesisanalytics } from 'aws-cdk-lib';
const cfnApplicationOutputV2Props: kinesisanalytics.CfnApplicationOutputV2Props = {
  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.