aws-cdk-lib.aws_kinesisanalytics.CfnApplicationOutput.KinesisStreamsOutputProperty

interface KinesisStreamsOutputProperty

LanguageType name
.NETAmazon.CDK.AWS.KinesisAnalytics.CfnApplicationOutput.KinesisStreamsOutputProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awskinesisanalytics#CfnApplicationOutput_KinesisStreamsOutputProperty
Javasoftware.amazon.awscdk.services.kinesisanalytics.CfnApplicationOutput.KinesisStreamsOutputProperty
Pythonaws_cdk.aws_kinesisanalytics.CfnApplicationOutput.KinesisStreamsOutputProperty
TypeScript aws-cdk-lib » aws_kinesisanalytics » CfnApplicationOutput » 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 { aws_kinesisanalytics as kinesisanalytics } from 'aws-cdk-lib';
const kinesisStreamsOutputProperty: kinesisanalytics.CfnApplicationOutput.KinesisStreamsOutputProperty = {
  resourceArn: 'resourceArn',
  roleArn: 'roleArn',
};

Properties

NameTypeDescription
resourceArnstringARN of the destination Amazon Kinesis stream to write to.
roleArnstringARN of the IAM role that Amazon Kinesis Analytics can assume to write to the destination stream on your behalf.

resourceArn

Type: string

ARN of the destination Amazon Kinesis stream to write to.


roleArn

Type: string

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.