Amazon EventBridge · JSON Structure

Amazon Eventbridge Put Rule Request Structure

PutRuleRequest schema from Amazon EventBridge API

Type: object Properties: 8 Required: 1
Amazon Web ServicesEvent BusEvent-DrivenEventsIntegrationServerless

PutRuleRequest is a JSON Structure definition published by Amazon EventBridge, describing 8 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Name Description EventPattern ScheduleExpression State RoleArn EventBusName Tags

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-eventbridge/refs/heads/main/json-structure/amazon-eventbridge-put-rule-request-structure.json",
  "name": "PutRuleRequest",
  "description": "PutRuleRequest schema from Amazon EventBridge API",
  "type": "object",
  "properties": {
    "Name": {
      "type": "string"
    },
    "Description": {
      "type": "string"
    },
    "EventPattern": {
      "type": "string"
    },
    "ScheduleExpression": {
      "type": "string"
    },
    "State": {
      "type": "string",
      "enum": [
        "ENABLED",
        "DISABLED"
      ]
    },
    "RoleArn": {
      "type": "string"
    },
    "EventBusName": {
      "type": "string"
    },
    "Tags": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "Key": {
            "type": "string"
          },
          "Value": {
            "type": "string"
          }
        }
      }
    }
  },
  "required": [
    "Name"
  ]
}