interface KinesisActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoT.CfnTopicRulePropsMixin.KinesisActionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiot#CfnTopicRulePropsMixin_KinesisActionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iot.CfnTopicRulePropsMixin.KinesisActionProperty |
Python | aws_cdk.cfn_property_mixins.aws_iot.CfnTopicRulePropsMixin.KinesisActionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iot » 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 { aws_iot as iot } from '@aws-cdk/cfn-property-mixins';
const kinesisActionProperty: iot.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