Amazon EventBridge · Schema

PutTargetsResponse

PutTargetsResponse schema from Amazon EventBridge API

Amazon Web ServicesEvent BusEvent-DrivenEventsIntegrationServerless

Properties

Name Type Description
FailedEntryCount integer
FailedEntries array
View JSON Schema on GitHub

JSON Schema

amazon-eventbridge-put-targets-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-eventbridge/refs/heads/main/json-schema/amazon-eventbridge-put-targets-response-schema.json",
  "title": "PutTargetsResponse",
  "description": "PutTargetsResponse schema from Amazon EventBridge API",
  "type": "object",
  "properties": {
    "FailedEntryCount": {
      "type": "integer"
    },
    "FailedEntries": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "TargetId": {
            "type": "string"
          },
          "ErrorCode": {
            "type": "string"
          },
          "ErrorMessage": {
            "type": "string"
          }
        }
      }
    }
  }
}