Amazon EventBridge · Schema

PutRuleRequest

PutRuleRequest schema from Amazon EventBridge API

Amazon Web ServicesEvent BusEvent-DrivenEventsIntegrationServerless

Properties

Name Type Description
Name string
Description string
EventPattern string
ScheduleExpression string
State string
RoleArn string
EventBusName string
Tags array
View JSON Schema on GitHub

JSON Schema

amazon-eventbridge-put-rule-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-put-rule-request-schema.json",
  "title": "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"
  ]
}