{ "$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 PutRecord 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 Amazon Kinesis Data Streams terminology and concepts in the Amazon Kinesis Streams Developer Guide." } ] } }, "required": [ "PartitionKey" ] }