Amazon Macie · JSON Structure

Amazon Macie Job Schedule Frequency Structure

Specifies the recurrence pattern for running a classification job.

Type: object Properties: 3
Data SecuritySensitive DataPrivacyComplianceMachine LearningS3

JobScheduleFrequency is a JSON Structure definition published by Amazon Macie, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

dailySchedule monthlySchedule weeklySchedule

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-macie/refs/heads/main/json-structure/amazon-macie-job-schedule-frequency-structure.json",
  "name": "JobScheduleFrequency",
  "description": "Specifies the recurrence pattern for running a classification job.",
  "type": "object",
  "properties": {
    "dailySchedule": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DailySchedule"
        },
        {
          "description": "Specifies a daily recurrence pattern for running the job."
        }
      ]
    },
    "monthlySchedule": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MonthlySchedule"
        },
        {
          "description": "Specifies a monthly recurrence pattern for running the job."
        }
      ]
    },
    "weeklySchedule": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WeeklySchedule"
        },
        {
          "description": "Specifies a weekly recurrence pattern for running the job."
        }
      ]
    }
  }
}