interface KinesisStreamsOutputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KinesisAnalytics.Mixins.CfnApplicationOutputPropsMixin.KinesisStreamsOutputProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskinesisanalytics/mixins#CfnApplicationOutputPropsMixin_KinesisStreamsOutputProperty |
Java | software.amazon.awscdk.mixins.preview.services.kinesisanalytics.mixins.CfnApplicationOutputPropsMixin.KinesisStreamsOutputProperty |
Python | aws_cdk.mixins_preview.aws_kinesisanalytics.mixins.CfnApplicationOutputPropsMixin.KinesisStreamsOutputProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kinesisanalytics » mixins » CfnApplicationOutputPropsMixin » KinesisStreamsOutputProperty |
When configuring application output, identifies an Amazon Kinesis stream as the destination.
You provide the stream Amazon Resource Name (ARN) and also an IAM role ARN that Amazon Kinesis Analytics can use to write to the stream on your behalf.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as kinesisanalytics_mixins } from '@aws-cdk/mixins-preview/aws-kinesisanalytics';
const kinesisStreamsOutputProperty: kinesisanalytics_mixins.CfnApplicationOutputPropsMixin.KinesisStreamsOutputProperty = {
resourceArn: 'resourceArn',
roleArn: 'roleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| resource | string | ARN of the destination Amazon Kinesis stream to write to. |
| role | string | ARN of the IAM role that Amazon Kinesis Analytics can assume to write to the destination stream on your behalf. |
resourceArn?
Type:
string
(optional)
ARN of the destination Amazon Kinesis stream to write to.
roleArn?
Type:
string
(optional)
ARN of the IAM role that Amazon Kinesis Analytics can assume to write to the destination stream on your behalf.
You need to grant the necessary permissions to this role.

.NET
Go
Java
Python
TypeScript