interface KinesisStreamSourceConfigurationProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.KinesisFirehose.CfnDeliveryStream.KinesisStreamSourceConfigurationProperty |
Java | software.amazon.awscdk.services.kinesisfirehose.CfnDeliveryStream.KinesisStreamSourceConfigurationProperty |
Python | aws_cdk.aws_kinesisfirehose.CfnDeliveryStream.KinesisStreamSourceConfigurationProperty |
TypeScript | @aws-cdk/aws-kinesisfirehose » CfnDeliveryStream » KinesisStreamSourceConfigurationProperty |
The KinesisStreamSourceConfiguration
property type specifies the stream and role Amazon Resource Names (ARNs) for a Kinesis stream used as the source for a delivery stream.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as kinesisfirehose from '@aws-cdk/aws-kinesisfirehose';
const kinesisStreamSourceConfigurationProperty: kinesisfirehose.CfnDeliveryStream.KinesisStreamSourceConfigurationProperty = {
kinesisStreamArn: 'kinesisStreamArn',
roleArn: 'roleArn',
};
Properties
Name | Type | Description |
---|---|---|
kinesis | string | The ARN of the source Kinesis data stream. |
role | string | The ARN of the role that provides access to the source Kinesis data stream. |
kinesisStreamArn
Type:
string
The ARN of the source Kinesis data stream.
roleArn
Type:
string
The ARN of the role that provides access to the source Kinesis data stream.