{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--aws-scheduler-schedule.json",
  "title": "AWSSchedulerScheduleProperties",
  "description": "Definition of AWS::Scheduler::Schedule Resource Type. Source:- No source definition found, add manually please",
  "x-lintel": {
    "source": "https://raw.githubusercontent.com/lalcebo/json-schema/master/serverless/resources/cloudformation-modified/aws-scheduler-schedule.json",
    "sourceSha256": "cce32c3d0312b13c2980f518b24d71c2218f597195fc27a2713dd91a59fddee6"
  },
  "type": "object",
  "properties": {
    "Description": {
      "oneOf": [
        {
          "type": "string",
          "maxLength": 512,
          "minLength": 0
        },
        {
          "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
        }
      ],
      "description": "The description of the schedule."
    },
    "EndDate": {
      "oneOf": [
        {
          "type": "string",
          "format": "date-time"
        },
        {
          "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
        }
      ],
      "description": "The date, in UTC, before which the schedule can invoke its target. Depending on the schedule's recurrence expression, invocations might stop on, or before, the EndDate you specify."
    },
    "FlexibleTimeWindow": {
      "$ref": "#/$defs/FlexibleTimeWindow"
    },
    "GroupName": {
      "oneOf": [
        {
          "type": "string",
          "maxLength": 64,
          "minLength": 1,
          "pattern": "^[0-9a-zA-Z-_.]+$"
        },
        {
          "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
        }
      ],
      "description": "The name of the schedule group to associate with this schedule. If you omit this, the default schedule group is used."
    },
    "KmsKeyArn": {
      "oneOf": [
        {
          "type": "string",
          "maxLength": 2048,
          "minLength": 1,
          "pattern": "^arn:aws(-[a-z]+)?:kms:[a-z0-9\\-]+:\\d{12}:(key|alias)\\/[0-9a-zA-Z-_]*$"
        },
        {
          "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
        }
      ],
      "description": "The ARN for a KMS Key that will be used to encrypt customer data."
    },
    "Name": {
      "oneOf": [
        {
          "type": "string",
          "maxLength": 64,
          "minLength": 1,
          "pattern": "^[0-9a-zA-Z-_.]+$"
        },
        {
          "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
        }
      ]
    },
    "ScheduleExpression": {
      "oneOf": [
        {
          "type": "string",
          "maxLength": 256,
          "minLength": 1
        },
        {
          "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
        }
      ],
      "description": "The scheduling expression."
    },
    "ScheduleExpressionTimezone": {
      "oneOf": [
        {
          "type": "string",
          "maxLength": 50,
          "minLength": 1
        },
        {
          "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
        }
      ],
      "description": "The timezone in which the scheduling expression is evaluated."
    },
    "StartDate": {
      "oneOf": [
        {
          "type": "string",
          "format": "date-time"
        },
        {
          "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
        }
      ],
      "description": "The date, in UTC, after which the schedule can begin invoking its target. Depending on the schedule's recurrence expression, invocations might occur on, or after, the StartDate you specify."
    },
    "State": {
      "$ref": "#/$defs/ScheduleState"
    },
    "Target": {
      "$ref": "#/$defs/Target"
    }
  },
  "typeName": "AWS::Scheduler::Schedule",
  "$defs": {
    "AssignPublicIp": {
      "oneOf": [
        {
          "type": "string",
          "enum": [
            "ENABLED",
            "DISABLED"
          ]
        },
        {
          "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
        }
      ],
      "description": "Specifies whether the task's elastic network interface receives a public IP address. You can specify ENABLED only when LaunchType in EcsParameters is set to FARGATE.",
      "title": "AWSSchedulerScheduleAssignPublicIpDefinition"
    },
    "AwsVpcConfiguration": {
      "type": "object",
      "description": "This structure specifies the VPC subnets and security groups for the task, and whether a public IP address is to be used. This structure is relevant only for ECS tasks that use the awsvpc network mode.",
      "properties": {
        "Subnets": {
          "type": "array",
          "items": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "description": "Specifies the subnet associated with the task."
          },
          "maxItems": 16,
          "minItems": 1,
          "description": "Specifies the subnets associated with the task. These subnets must all be in the same VPC. You can specify as many as 16 subnets.",
          "insertionOrder": false
        },
        "SecurityGroups": {
          "type": "array",
          "items": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "description": "Specifies the security group associated with the task."
          },
          "maxItems": 5,
          "minItems": 1,
          "description": "Specifies the security groups associated with the task. These security groups must all be in the same VPC. You can specify as many as five security groups. If you do not specify a security group, the default security group for the VPC is used.",
          "insertionOrder": false
        },
        "AssignPublicIp": {
          "$ref": "#/$defs/AssignPublicIp"
        }
      },
      "required": [
        "Subnets"
      ],
      "title": "AWSSchedulerScheduleAwsVpcConfigurationDefinition",
      "additionalProperties": false
    },
    "CapacityProviderStrategyItem": {
      "type": "object",
      "description": "The details of a capacity provider strategy.",
      "properties": {
        "CapacityProvider": {
          "oneOf": [
            {
              "type": "string",
              "maxLength": 255,
              "minLength": 1
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The short name of the capacity provider."
        },
        "Weight": {
          "type": "number",
          "default": 0,
          "maximum": 1000,
          "minimum": 0,
          "description": "The weight value designates the relative percentage of the total number of tasks launched that should use the specified capacity provider. The weight value is taken into consideration after the base value, if defined, is satisfied."
        },
        "Base": {
          "type": "number",
          "default": 0,
          "maximum": 100000,
          "minimum": 0,
          "description": "The base value designates how many tasks, at a minimum, to run on the specified capacity provider. Only one capacity provider in a capacity provider strategy can have a base defined. If no value is specified, the default value of 0 is used."
        }
      },
      "required": [
        "CapacityProvider"
      ],
      "title": "AWSSchedulerScheduleCapacityProviderStrategyItemDefinition",
      "additionalProperties": false
    },
    "DeadLetterConfig": {
      "type": "object",
      "description": "A DeadLetterConfig object that contains information about a dead-letter queue configuration.",
      "properties": {
        "Arn": {
          "oneOf": [
            {
              "type": "string",
              "maxLength": 1600,
              "minLength": 1,
              "pattern": "^arn:aws(-[a-z]+)?:sqs:[a-z0-9\\-]+:\\d{12}:[a-zA-Z0-9\\-_]+$"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The ARN of the SQS queue specified as the target for the dead-letter queue."
        }
      },
      "title": "AWSSchedulerScheduleDeadLetterConfigDefinition",
      "additionalProperties": false
    },
    "EcsParameters": {
      "type": "object",
      "description": "The custom parameters to be used when the target is an Amazon ECS task.",
      "properties": {
        "TaskDefinitionArn": {
          "oneOf": [
            {
              "type": "string",
              "maxLength": 1600,
              "minLength": 1
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The ARN of the task definition to use if the event target is an Amazon ECS task."
        },
        "TaskCount": {
          "type": "number",
          "maximum": 10,
          "minimum": 1,
          "description": "The number of tasks to create based on TaskDefinition. The default is 1."
        },
        "LaunchType": {
          "$ref": "#/$defs/LaunchType"
        },
        "NetworkConfiguration": {
          "$ref": "#/$defs/NetworkConfiguration"
        },
        "PlatformVersion": {
          "oneOf": [
            {
              "type": "string",
              "maxLength": 64,
              "minLength": 1
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "Specifies the platform version for the task. Specify only the numeric portion of the platform version, such as 1.1.0."
        },
        "Group": {
          "oneOf": [
            {
              "type": "string",
              "maxLength": 255,
              "minLength": 1
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "Specifies an ECS task group for the task. The maximum length is 255 characters."
        },
        "CapacityProviderStrategy": {
          "type": "array",
          "items": {
            "$ref": "#/$defs/CapacityProviderStrategyItem"
          },
          "maxItems": 6,
          "description": "The capacity provider strategy to use for the task.",
          "insertionOrder": false
        },
        "EnableECSManagedTags": {
          "type": "boolean",
          "description": "Specifies whether to enable Amazon ECS managed tags for the task. For more information, see Tagging Your Amazon ECS Resources in the Amazon Elastic Container Service Developer Guide."
        },
        "EnableExecuteCommand": {
          "type": "boolean",
          "description": "Whether or not to enable the execute command functionality for the containers in this task. If true, this enables execute command functionality on all containers in the task."
        },
        "PlacementConstraints": {
          "type": "array",
          "items": {
            "$ref": "#/$defs/PlacementConstraint"
          },
          "maxItems": 10,
          "description": "An array of placement constraint objects to use for the task. You can specify up to 10 constraints per task (including constraints in the task definition and those specified at runtime).",
          "insertionOrder": false
        },
        "PlacementStrategy": {
          "type": "array",
          "items": {
            "$ref": "#/$defs/PlacementStrategy"
          },
          "maxItems": 5,
          "description": "The placement strategy objects to use for the task. You can specify a maximum of five strategy rules per task.",
          "insertionOrder": false
        },
        "PropagateTags": {
          "$ref": "#/$defs/PropagateTags"
        },
        "ReferenceId": {
          "oneOf": [
            {
              "type": "string",
              "maxLength": 1024
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The reference ID to use for the task."
        },
        "Tags": {
          "type": "array",
          "items": {
            "$ref": "#/$defs/TagMap"
          },
          "maxItems": 50,
          "minItems": 0,
          "description": "The metadata that you apply to the task to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define. To learn more, see RunTask in the Amazon ECS API Reference.",
          "insertionOrder": false
        }
      },
      "required": [
        "TaskDefinitionArn"
      ],
      "title": "AWSSchedulerScheduleEcsParametersDefinition",
      "additionalProperties": false
    },
    "EventBridgeParameters": {
      "type": "object",
      "description": "EventBridge PutEvent predefined target type.",
      "properties": {
        "DetailType": {
          "oneOf": [
            {
              "type": "string",
              "maxLength": 128,
              "minLength": 1
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "Free-form string, with a maximum of 128 characters, used to decide what fields to expect in the event detail."
        },
        "Source": {
          "oneOf": [
            {
              "type": "string",
              "maxLength": 256,
              "minLength": 1,
              "pattern": "^(?=[/\\.\\-_A-Za-z0-9]+)((?!aws\\.).*)|(\\$(\\.[\\w_-]+(\\[(\\d+|\\*)\\])*)*)$"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The source of the event."
        }
      },
      "required": [
        "DetailType",
        "Source"
      ],
      "title": "AWSSchedulerScheduleEventBridgeParametersDefinition",
      "additionalProperties": false
    },
    "FlexibleTimeWindow": {
      "type": "object",
      "description": "Flexible time window allows configuration of a window within which a schedule can be invoked",
      "properties": {
        "Mode": {
          "$ref": "#/$defs/FlexibleTimeWindowMode"
        },
        "MaximumWindowInMinutes": {
          "type": "number",
          "maximum": 1440,
          "minimum": 1,
          "description": "The maximum time window during which a schedule can be invoked."
        }
      },
      "required": [
        "Mode"
      ],
      "title": "AWSSchedulerScheduleFlexibleTimeWindowDefinition",
      "additionalProperties": false
    },
    "FlexibleTimeWindowMode": {
      "oneOf": [
        {
          "type": "string",
          "enum": [
            "OFF",
            "FLEXIBLE"
          ]
        },
        {
          "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
        }
      ],
      "description": "Determines whether the schedule is executed within a flexible time window.",
      "title": "AWSSchedulerScheduleFlexibleTimeWindowModeDefinition"
    },
    "KinesisParameters": {
      "type": "object",
      "description": "The custom parameter you can use to control the shard to which EventBridge Scheduler sends the event.",
      "properties": {
        "PartitionKey": {
          "oneOf": [
            {
              "type": "string",
              "maxLength": 256,
              "minLength": 1
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The custom parameter used as the Kinesis partition key. For more information, see Amazon Kinesis Streams Key Concepts in the Amazon Kinesis Streams Developer Guide."
        }
      },
      "required": [
        "PartitionKey"
      ],
      "title": "AWSSchedulerScheduleKinesisParametersDefinition",
      "additionalProperties": false
    },
    "LaunchType": {
      "oneOf": [
        {
          "type": "string",
          "enum": [
            "EC2",
            "FARGATE",
            "EXTERNAL"
          ]
        },
        {
          "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
        }
      ],
      "description": "Specifies the launch type on which your task is running. The launch type that you specify here must match one of the launch type (compatibilities) of the target task. The FARGATE value is supported only in the Regions where AWS Fargate with Amazon ECS is supported. For more information, see AWS Fargate on Amazon ECS in the Amazon Elastic Container Service Developer Guide.",
      "title": "AWSSchedulerScheduleLaunchTypeDefinition"
    },
    "NetworkConfiguration": {
      "type": "object",
      "description": "This structure specifies the network configuration for an ECS task.",
      "properties": {
        "AwsvpcConfiguration": {
          "$ref": "#/$defs/AwsVpcConfiguration"
        }
      },
      "title": "AWSSchedulerScheduleNetworkConfigurationDefinition",
      "additionalProperties": false
    },
    "PlacementConstraint": {
      "type": "object",
      "description": "An object representing a constraint on task placement.",
      "properties": {
        "Type": {
          "$ref": "#/$defs/PlacementConstraintType"
        },
        "Expression": {
          "oneOf": [
            {
              "type": "string",
              "maxLength": 2000
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "A cluster query language expression to apply to the constraint. You cannot specify an expression if the constraint type is distinctInstance. To learn more, see Cluster Query Language in the Amazon Elastic Container Service Developer Guide."
        }
      },
      "title": "AWSSchedulerSchedulePlacementConstraintDefinition",
      "additionalProperties": false
    },
    "PlacementConstraintType": {
      "oneOf": [
        {
          "type": "string",
          "enum": [
            "distinctInstance",
            "memberOf"
          ]
        },
        {
          "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
        }
      ],
      "description": "The type of constraint. Use distinctInstance to ensure that each task in a particular group is running on a different container instance. Use memberOf to restrict the selection to a group of valid candidates.",
      "title": "AWSSchedulerSchedulePlacementConstraintTypeDefinition"
    },
    "PlacementStrategy": {
      "type": "object",
      "description": "The task placement strategy for a task or service.",
      "properties": {
        "Type": {
          "$ref": "#/$defs/PlacementStrategyType"
        },
        "Field": {
          "oneOf": [
            {
              "type": "string",
              "maxLength": 255
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The field to apply the placement strategy against. For the spread placement strategy, valid values are instanceId (or host, which has the same effect), or any platform or custom attribute that is applied to a container instance, such as attribute:ecs.availability-zone. For the binpack placement strategy, valid values are cpu and memory. For the random placement strategy, this field is not used."
        }
      },
      "title": "AWSSchedulerSchedulePlacementStrategyDefinition",
      "additionalProperties": false
    },
    "PlacementStrategyType": {
      "oneOf": [
        {
          "type": "string",
          "enum": [
            "random",
            "spread",
            "binpack"
          ]
        },
        {
          "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
        }
      ],
      "description": "The type of placement strategy. The random placement strategy randomly places tasks on available candidates. The spread placement strategy spreads placement across available candidates evenly based on the field parameter. The binpack strategy places tasks on available candidates that have the least available amount of the resource that is specified with the field parameter. For example, if you binpack on memory, a task is placed on the instance with the least amount of remaining memory (but still enough to run the task).",
      "title": "AWSSchedulerSchedulePlacementStrategyTypeDefinition"
    },
    "PropagateTags": {
      "oneOf": [
        {
          "type": "string",
          "enum": [
            "TASK_DEFINITION"
          ]
        },
        {
          "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
        }
      ],
      "description": "Specifies whether to propagate the tags from the task definition to the task. If no value is specified, the tags are not propagated. Tags can only be propagated to the task during task creation. To add tags to a task after task creation, use the TagResource API action.",
      "title": "AWSSchedulerSchedulePropagateTagsDefinition"
    },
    "RetryPolicy": {
      "type": "object",
      "description": "A RetryPolicy object that includes information about the retry policy settings.",
      "properties": {
        "MaximumEventAgeInSeconds": {
          "type": "number",
          "maximum": 86400,
          "minimum": 60,
          "description": "The maximum amount of time, in seconds, to continue to make retry attempts."
        },
        "MaximumRetryAttempts": {
          "type": "number",
          "maximum": 185,
          "minimum": 0,
          "description": "The maximum number of retry attempts to make before the request fails. Retry attempts with exponential backoff continue until either the maximum number of attempts is made or until the duration of the MaximumEventAgeInSeconds is reached."
        }
      },
      "title": "AWSSchedulerScheduleRetryPolicyDefinition",
      "additionalProperties": false
    },
    "SageMakerPipelineParameter": {
      "type": "object",
      "description": "Name/Value pair of a parameter to start execution of a SageMaker Model Building Pipeline.",
      "properties": {
        "Name": {
          "oneOf": [
            {
              "type": "string",
              "maxLength": 256,
              "minLength": 1,
              "pattern": "^[A-Za-z0-9\\-_]*$"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "Name of parameter to start execution of a SageMaker Model Building Pipeline."
        },
        "Value": {
          "oneOf": [
            {
              "type": "string",
              "maxLength": 1024,
              "minLength": 1
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "Value of parameter to start execution of a SageMaker Model Building Pipeline."
        }
      },
      "required": [
        "Name",
        "Value"
      ],
      "title": "AWSSchedulerScheduleSageMakerPipelineParameterDefinition",
      "additionalProperties": false
    },
    "SageMakerPipelineParameters": {
      "type": "object",
      "description": "These are custom parameters to use when the target is a SageMaker Model Building Pipeline that starts based on AWS EventBridge Scheduler schedules.",
      "properties": {
        "PipelineParameterList": {
          "type": "array",
          "items": {
            "$ref": "#/$defs/SageMakerPipelineParameter"
          },
          "maxItems": 200,
          "minItems": 0,
          "description": "List of Parameter names and values for SageMaker Model Building Pipeline execution.",
          "insertionOrder": false
        }
      },
      "title": "AWSSchedulerScheduleSageMakerPipelineParametersDefinition",
      "additionalProperties": false
    },
    "ScheduleState": {
      "oneOf": [
        {
          "type": "string",
          "enum": [
            "ENABLED",
            "DISABLED"
          ]
        },
        {
          "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
        }
      ],
      "description": "Specifies whether the schedule is enabled or disabled.",
      "title": "AWSSchedulerScheduleScheduleStateDefinition"
    },
    "SqsParameters": {
      "type": "object",
      "description": "Contains the message group ID to use when the target is a FIFO queue. If you specify an SQS FIFO queue as a target, the queue must have content-based deduplication enabled.",
      "properties": {
        "MessageGroupId": {
          "oneOf": [
            {
              "type": "string",
              "maxLength": 128,
              "minLength": 1
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The FIFO message group ID to use as the target."
        }
      },
      "title": "AWSSchedulerScheduleSqsParametersDefinition",
      "additionalProperties": false
    },
    "TagMap": {
      "type": "object",
      "additionalProperties": false,
      "title": "AWSSchedulerScheduleTagMapDefinition",
      "patternProperties": {
        ".+": {
          "type": "string",
          "maxLength": 256,
          "minLength": 1
        }
      }
    },
    "Target": {
      "type": "object",
      "description": "The schedule target.",
      "properties": {
        "Arn": {
          "oneOf": [
            {
              "type": "string",
              "maxLength": 1600,
              "minLength": 1
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The Amazon Resource Name (ARN) of the target."
        },
        "RoleArn": {
          "oneOf": [
            {
              "type": "string",
              "maxLength": 1600,
              "minLength": 1,
              "pattern": "^arn:aws(-[a-z]+)?:iam::\\d{12}:role\\/[\\w+=,.@\\/-]+$"
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The Amazon Resource Name (ARN) of the IAM role to be used for this target when the schedule is triggered."
        },
        "DeadLetterConfig": {
          "$ref": "#/$defs/DeadLetterConfig"
        },
        "RetryPolicy": {
          "$ref": "#/$defs/RetryPolicy"
        },
        "Input": {
          "oneOf": [
            {
              "type": "string",
              "minLength": 1
            },
            {
              "$ref": "https://catalog.lintel.tools/schemas/schemastore/serverless-framework-configuration/_shared/latest--cf.functions.json#/Aws_CF_FunctionString"
            }
          ],
          "description": "The text, or well-formed JSON, passed to the target. If you are configuring a templated Lambda, AWS Step Functions, or Amazon EventBridge target, the input must be a well-formed JSON. For all other target types, a JSON is not required. If you do not specify anything for this field, EventBridge Scheduler delivers a default notification to the target."
        },
        "EcsParameters": {
          "$ref": "#/$defs/EcsParameters"
        },
        "EventBridgeParameters": {
          "$ref": "#/$defs/EventBridgeParameters"
        },
        "KinesisParameters": {
          "$ref": "#/$defs/KinesisParameters"
        },
        "SageMakerPipelineParameters": {
          "$ref": "#/$defs/SageMakerPipelineParameters"
        },
        "SqsParameters": {
          "$ref": "#/$defs/SqsParameters"
        }
      },
      "required": [
        "Arn",
        "RoleArn"
      ],
      "title": "AWSSchedulerScheduleTargetDefinition",
      "additionalProperties": false
    }
  },
  "additionalProperties": false,
  "tagging": {
    "taggable": false,
    "tagOnCreate": false,
    "tagUpdatable": false,
    "cloudFormationSystemTags": false
  },
  "required": [
    "FlexibleTimeWindow",
    "ScheduleExpression",
    "Target"
  ],
  "readOnlyProperties": [
    "/properties/Arn"
  ],
  "createOnlyProperties": [
    "/properties/Name"
  ],
  "primaryIdentifier": [
    "/properties/Name"
  ]
}
