interface KinesisStreamSourceConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KinesisFirehose.Mixins.CfnDeliveryStreamPropsMixin.KinesisStreamSourceConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskinesisfirehose/mixins#CfnDeliveryStreamPropsMixin_KinesisStreamSourceConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.kinesisfirehose.mixins.CfnDeliveryStreamPropsMixin.KinesisStreamSourceConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_kinesisfirehose.mixins.CfnDeliveryStreamPropsMixin.KinesisStreamSourceConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kinesisfirehose » mixins » 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 { mixins as kinesisfirehose_mixins } from '@aws-cdk/mixins-preview/aws-kinesisfirehose';
const kinesisStreamSourceConfigurationProperty: kinesisfirehose_mixins.CfnDeliveryStreamPropsMixin.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
(optional)
The ARN of the source Kinesis data stream.
roleArn?
Type:
string
(optional)
The ARN of the role that provides access to the source Kinesis data stream.

.NET
Go
Java
Python
TypeScript