interface CfnApplicationOutputV2Props
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.KinesisAnalytics.CfnApplicationOutputV2Props |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awskinesisanalytics#CfnApplicationOutputV2Props |
Java | software.amazon.awscdk.services.kinesisanalytics.CfnApplicationOutputV2Props |
Python | aws_cdk.aws_kinesisanalytics.CfnApplicationOutputV2Props |
TypeScript | aws-cdk-lib » aws_kinesisanalytics » CfnApplicationOutputV2Props |
⚠️ Deprecated: use aws-kinesisanalyticsv2 instead
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_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
| Name | Type | Description |
|---|---|---|
| application | string | The name of the application. |
| output | IResolvable | Output | 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. |
applicationName
⚠️ Deprecated: use aws-kinesisanalyticsv2 instead
Type:
string
The name of the application.
output
⚠️ Deprecated: use aws-kinesisanalyticsv2 instead
Type:
IResolvable | Output
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.

.NET
Go
Java
Python
TypeScript