interface KinesisParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Scheduler.Mixins.CfnSchedulePropsMixin.KinesisParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsscheduler/mixins#CfnSchedulePropsMixin_KinesisParametersProperty |
Java | software.amazon.awscdk.mixins.preview.services.scheduler.mixins.CfnSchedulePropsMixin.KinesisParametersProperty |
Python | aws_cdk.mixins_preview.aws_scheduler.mixins.CfnSchedulePropsMixin.KinesisParametersProperty |
TypeScript | @aws-cdk/mixins-preview » aws_scheduler » mixins » CfnSchedulePropsMixin » KinesisParametersProperty |
The templated target type for the Amazon Kinesis PutRecord API operation.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as scheduler_mixins } from '@aws-cdk/mixins-preview/aws-scheduler';
const kinesisParametersProperty: scheduler_mixins.CfnSchedulePropsMixin.KinesisParametersProperty = {
partitionKey: 'partitionKey',
};
Properties
| Name | Type | Description |
|---|---|---|
| partition | string | Specifies the shard to which EventBridge Scheduler sends the event. |
partitionKey?
Type:
string
(optional)
Specifies the shard to which EventBridge Scheduler sends the event.
For more information, see Amazon Kinesis Data Streams terminology and concepts in the Amazon Kinesis Streams Developer Guide .

.NET
Go
Java
Python
TypeScript