Amazon EventBridge · Schema

CreateEventBusRequest

CreateEventBusRequest schema from Amazon EventBridge API

Amazon Web ServicesEvent BusEvent-DrivenEventsIntegrationServerless

Properties

Name Type Description
Name string
EventSourceName string
Tags array
View JSON Schema on GitHub

JSON Schema

amazon-eventbridge-create-event-bus-request-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-create-event-bus-request-schema.json",
  "title": "CreateEventBusRequest",
  "description": "CreateEventBusRequest schema from Amazon EventBridge API",
  "type": "object",
  "properties": {
    "Name": {
      "type": "string"
    },
    "EventSourceName": {
      "type": "string"
    },
    "Tags": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "Key": {
            "type": "string"
          },
          "Value": {
            "type": "string"
          }
        }
      }
    }
  },
  "required": [
    "Name"
  ]
}