@amazon-codecatalyst/blueprints.sam-serverless-application
Version:
This blueprint creates a project that leverages a serverless application model (SAM) to quickly create and deploy an API. You can choose Java, TypeScript, or Python as the programming language
26 lines (25 loc) • 640 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "/triggers/Push/1",
"type": "object",
"title": "Schedule Trigger",
"description": "A schedule trigger causes a workflow run to start on a schedule that you define",
"properties": {
"Type": {
"type": "string",
"const": "SCHEDULE"
},
"Expression": {
"type": "String",
"description": "A CRON expression representing the schedule the workflow runs on"
},
"Branches": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": ["Type", "Expression"],
"additionalProperties": false
}