interface KinesisActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins.CfnTopicRulePropsMixin.KinesisActionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiot/mixins#CfnTopicRulePropsMixin_KinesisActionProperty |
Java | software.amazon.awscdk.mixins.preview.services.iot.mixins.CfnTopicRulePropsMixin.KinesisActionProperty |
Python | aws_cdk.mixins_preview.aws_iot.mixins.CfnTopicRulePropsMixin.KinesisActionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iot » mixins » CfnTopicRulePropsMixin » KinesisActionProperty |
Describes an action to write data to an Amazon Kinesis stream.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iot_mixins } from '@aws-cdk/mixins-preview/aws-iot';
const kinesisActionProperty: iot_mixins.CfnTopicRulePropsMixin.KinesisActionProperty = {
partitionKey: 'partitionKey',
roleArn: 'roleArn',
streamName: 'streamName',
};
Properties
| Name | Type | Description |
|---|---|---|
| partition | string | The partition key. |
| role | string | The ARN of the IAM role that grants access to the Amazon Kinesis stream. |
| stream | string | The name of the Amazon Kinesis stream. |
partitionKey?
Type:
string
(optional)
The partition key.
roleArn?
Type:
string
(optional)
The ARN of the IAM role that grants access to the Amazon Kinesis stream.
streamName?
Type:
string
(optional)
The name of the Amazon Kinesis stream.

.NET
Go
Java
Python
TypeScript