0.7.0 • Published 9 months ago

@ez4/aws-scheduler v0.7.0

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

EZ4: AWS Scheduler

It provides all the components to manage scheduled events on AWS.

Getting started

Install

npm install @ez4/aws-scheduler -D

Permission

Ensure the user performing deployments has the permissions below:

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Sid": "SchedulerManagement",
      "Effect": "Allow",
      "Action": [
        "scheduler:CreateSchedule",
        "scheduler:UpdateSchedule",
        "scheduler:DeleteSchedule",
        "scheduler:TagResource",
        "scheduler:UntagResource"
      ],
      "Resource": ["arn:aws:scheduler:us-east-1:{account-id}:schedule/*/{prefix}-*"]
    }
  ]
}

License

MIT License