ScheduleSummary

The details of a schedule.

Amazon Web ServicesCronEvent-DrivenSchedulingServerless

Properties

Name Type Description
Arn object
CreationDate object
GroupName object
LastModificationDate object
Name object
State object
Target object
View JSON Schema on GitHub

JSON Schema

amazon-eventbridge-scheduler-schedule-summary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-eventbridge-scheduler/refs/heads/main/json-schema/amazon-eventbridge-scheduler-schedule-summary-schema.json",
  "title": "ScheduleSummary",
  "description": "The details of a schedule.",
  "type": "object",
  "properties": {
    "Arn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ScheduleArn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the schedule."
        }
      ]
    },
    "CreationDate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CreationDate"
        },
        {
          "description": "The time at which the schedule was created."
        }
      ]
    },
    "GroupName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ScheduleGroupName"
        },
        {
          "description": "The name of the schedule group associated with this schedule."
        }
      ]
    },
    "LastModificationDate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/LastModificationDate"
        },
        {
          "description": "The time at which the schedule was last modified."
        }
      ]
    },
    "Name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Name"
        },
        {
          "description": "The name of the schedule."
        }
      ]
    },
    "State": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ScheduleState"
        },
        {
          "description": "Specifies whether the schedule is enabled or disabled."
        }
      ]
    },
    "Target": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TargetSummary"
        },
        {
          "description": "The schedule's target details."
        }
      ]
    }
  }
}