aws-cdk-lib.aws_kinesisfirehose.CfnDeliveryStream.KinesisStreamSourceConfigurationProperty

interface KinesisStreamSourceConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.KinesisFirehose.CfnDeliveryStream.KinesisStreamSourceConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awskinesisfirehose#CfnDeliveryStream_KinesisStreamSourceConfigurationProperty
Javasoftware.amazon.awscdk.services.kinesisfirehose.CfnDeliveryStream.KinesisStreamSourceConfigurationProperty
Pythonaws_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

NameTypeDescription
kinesisStreamArnstringThe ARN of the source Kinesis data stream.
roleArnstringThe 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.