interface KinesisFirehoseInputProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.KinesisAnalytics.CfnApplication.KinesisFirehoseInputProperty |
![]() | software.amazon.awscdk.services.kinesisanalytics.CfnApplication.KinesisFirehoseInputProperty |
![]() | aws_cdk.aws_kinesisanalytics.CfnApplication.KinesisFirehoseInputProperty |
![]() | @aws-cdk/aws-kinesisanalytics » CfnApplication » KinesisFirehoseInputProperty |
Identifies an Amazon Kinesis Firehose delivery stream as the streaming source.
You provide the delivery stream's Amazon Resource Name (ARN) and an IAM role ARN that enables Amazon Kinesis Analytics to access 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 * as kinesisanalytics from '@aws-cdk/aws-kinesisanalytics';
const kinesisFirehoseInputProperty: kinesisanalytics.CfnApplication.KinesisFirehoseInputProperty = {
resourceArn: 'resourceArn',
roleArn: 'roleArn',
};
Properties
Name | Type | Description |
---|---|---|
resource | string | ARN of the input delivery stream. |
role | string | ARN of the IAM role that Amazon Kinesis Analytics can assume to access the stream on your behalf. |
resourceArn
Type:
string
ARN of the input delivery stream.
roleArn
Type:
string
ARN of the IAM role that Amazon Kinesis Analytics can assume to access the stream on your behalf.
You need to make sure that the role has the necessary permissions to access the stream.