This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| AWSTemplateFormatVersion: '2010-09-09' | |
| Transform: 'AWS::Serverless-2016-10-31' | |
| Description: Yaml template to stop AWS Services like RDS, Aurora, EKS in scheduled interval | |
| Parameters: | |
| #general params | |
| ScheduleExpression: | |
| Type: String | |
| Description: Schedule expressions using cron | |
| Default: cron(30 4 * * ? *) |
OlderNewer