{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PutRecordsOutput", "title": "PutRecordsOutput", "type": "object", "required": [ "Records" ], "properties": { "FailedRecordCount": { "allOf": [ { "$ref": "#/components/schemas/PositiveIntegerObject" }, { "description": "The number of unsuccessfully processed records in a PutRecords request." } ] }, "Records": { "allOf": [ { "$ref": "#/components/schemas/PutRecordsResultEntryList" }, { "description": "An array of successfully and unsuccessfully processed record results. A record that is successfully added to a stream includes SequenceNumber and ShardId in the result. A record that fails to be added to a stream includes ErrorCode and ErrorMessage in the result." } ] }, "EncryptionType": { "allOf": [ { "$ref": "#/components/schemas/EncryptionType" }, { "description": "

The encryption type used on the records. This parameter can be one of the following values:

" } ] } }, "description": " PutRecords results." }