KinesisParameters

The templated target type for the Amazon Kinesis PutRecord API operation.

Amazon Web ServicesCronEvent-DrivenSchedulingServerless

Properties

Name Type Description
PartitionKey object
View JSON Schema on GitHub

JSON Schema

amazon-eventbridge-scheduler-kinesis-parameters-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-eventbridge-scheduler/refs/heads/main/json-schema/amazon-eventbridge-scheduler-kinesis-parameters-schema.json",
  "title": "KinesisParameters",
  "description": "The templated target type for the Amazon Kinesis <a href=\"kinesis/latest/APIReference/API_PutRecord.html\"> <code>PutRecord</code> </a> API operation.",
  "type": "object",
  "properties": {
    "PartitionKey": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TargetPartitionKey"
        },
        {
          "description": "Specifies the shard to which EventBridge Scheduler sends the event. For more information, see <a href=\"https://docs.aws.amazon.com/streams/latest/dev/key-concepts.html\">Amazon Kinesis Data Streams terminology and concepts</a> in the <i>Amazon Kinesis Streams Developer Guide</i>."
        }
      ]
    }
  },
  "required": [
    "PartitionKey"
  ]
}