Skip to content

Commit

Permalink
feature: update schema.js to support AWS::Scheduler::Schedule (#353)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexw23 authored and juanjoDiaz committed Oct 2, 2024
1 parent 2fd6e60 commit 5c9bd6a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/schema.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ function extendServerlessSchema(serverless) {
const cronSyntax = '^cron\\(\\S+ \\S+ \\S+ \\S+ \\S+ \\S+\\)$';
const scheduleSyntax = `${rateSyntax}|${cronSyntax}`;

const METHOD_SCHEDULER = 'scheduler';
const METHOD_EVENT_BUS = 'eventBus';

const globalConfigSchemaProperties = {
folderName: { type: 'string' },
cleanFolder: { type: 'boolean' },
Expand Down Expand Up @@ -84,6 +87,14 @@ function extendServerlessSchema(serverless) {
required: ['inputTemplate'],
additionalProperties: false,
},
method: {
type: 'string',
enum: [METHOD_EVENT_BUS, METHOD_SCHEDULER],
},
timezone: {
type: 'string',
pattern: '[\\w\\-\\/]+',
},
},
required: ['rate'],
additionalProperties: false,
Expand Down

0 comments on commit 5c9bd6a

Please sign in to comment.