interface KinesisStreamSourceConfigurationProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.KinesisFirehose.CfnDeliveryStream.KinesisStreamSourceConfigurationProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awskinesisfirehose#CfnDeliveryStream_KinesisStreamSourceConfigurationProperty | 
  Java | software.amazon.awscdk.services.kinesisfirehose.CfnDeliveryStream.KinesisStreamSourceConfigurationProperty | 
  Python | aws_cdk.aws_kinesisfirehose.CfnDeliveryStream.KinesisStreamSourceConfigurationProperty | 
  TypeScript  | aws-cdk-lib » 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 { aws_kinesisfirehose as kinesisfirehose } from 'aws-cdk-lib';
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.

 .NET
 Go
 Java
 Python
 TypeScript