interface KinesisStreamSourceConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.KinesisFirehose.CfnDeliveryStreamPropsMixin.KinesisStreamSourceConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awskinesisfirehose#CfnDeliveryStreamPropsMixin_KinesisStreamSourceConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.kinesisfirehose.CfnDeliveryStreamPropsMixin.KinesisStreamSourceConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_kinesisfirehose.CfnDeliveryStreamPropsMixin.KinesisStreamSourceConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_kinesisfirehose » CfnDeliveryStreamPropsMixin » 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 { aws_kinesisfirehose as kinesisfirehose } from '@aws-cdk/cfn-property-mixins';
const kinesisStreamSourceConfigurationProperty: kinesisfirehose.CfnDeliveryStreamPropsMixin.KinesisStreamSourceConfigurationProperty = {
kinesisStreamArn: 'kinesisStreamArn',
roleArn: 'roleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| kinesis | string | IStream | The ARN of the source Kinesis data stream. |
| role | string | IRole | The ARN of the role that provides access to the source Kinesis data stream. |
kinesisStreamArn?
Type:
string | IStream
(optional)
The ARN of the source Kinesis data stream.
roleArn?
Type:
string | IRole
(optional)
The ARN of the role that provides access to the source Kinesis data stream.

.NET
Go
Java
Python
TypeScript