interface KinesisStreamsOutputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.KinesisAnalyticsV2.CfnApplicationOutputPropsMixin.KinesisStreamsOutputProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awskinesisanalyticsv2#CfnApplicationOutputPropsMixin_KinesisStreamsOutputProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.kinesisanalyticsv2.CfnApplicationOutputPropsMixin.KinesisStreamsOutputProperty |
Python | aws_cdk.cfn_property_mixins.aws_kinesisanalyticsv2.CfnApplicationOutputPropsMixin.KinesisStreamsOutputProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_kinesisanalyticsv2 » CfnApplicationOutputPropsMixin » KinesisStreamsOutputProperty |
When you configure a SQL-based Kinesis Data Analytics application's output, identifies a Kinesis data stream as the destination.
You provide the stream Amazon Resource Name (ARN).
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/cfn-property-mixins';
const kinesisStreamsOutputProperty: kinesisanalyticsv2.CfnApplicationOutputPropsMixin.KinesisStreamsOutputProperty = {
resourceArn: 'resourceArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| resource | string | The ARN of the destination Kinesis data stream to write to. |
resourceArn?
Type:
string
(optional)
The ARN of the destination Kinesis data stream to write to.

.NET
Go
Java
Python
TypeScript