interface KinesisFirehoseOutputProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.KinesisAnalyticsV2.CfnApplicationOutput.KinesisFirehoseOutputProperty | 
  Java | software.amazon.awscdk.services.kinesisanalyticsv2.CfnApplicationOutput.KinesisFirehoseOutputProperty | 
  Python | aws_cdk.aws_kinesisanalyticsv2.CfnApplicationOutput.KinesisFirehoseOutputProperty | 
  TypeScript  | @aws-cdk/aws-kinesisanalyticsv2 » CfnApplicationOutput » KinesisFirehoseOutputProperty | 
For a SQL-based Kinesis Data Analytics application, when configuring application output, identifies a Kinesis Data Firehose delivery stream as the destination.
You provide the stream Amazon Resource Name (ARN) of the delivery stream.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as kinesisanalyticsv2 from '@aws-cdk/aws-kinesisanalyticsv2';
const kinesisFirehoseOutputProperty: kinesisanalyticsv2.CfnApplicationOutput.KinesisFirehoseOutputProperty = {
  resourceArn: 'resourceArn',
};
Properties
| Name | Type | Description | 
|---|---|---|
| resource | string | The ARN of the destination delivery stream to write to. | 
resourceArn
Type:
string
The ARN of the destination delivery stream to write to.

 .NET
 Java
 Python
 TypeScript