【发布时间】:2020-09-24 20:05:36
【问题描述】:
【问题讨论】:
标签: amazon-web-services amazon-cloudformation
【问题讨论】:
标签: amazon-web-services amazon-cloudformation
基本模板将是(所有 ARN 必须更改为您的)AWS::Events::Rule:
Resources:
MyCWEventRule:
Type: AWS::Events::Rule
Properties:
Name: my-batch-event-rule
ScheduleExpression: cron(01 04 ? * * *)
State: ENABLED
Targets:
- Id: my-batch-job
Arn: arn:aws:batch:us-east-1:xxxxx:job-queue/first-run-job-queue # <job-queue-arn>
BatchParameters:
JobDefinition: arn:aws:batch:us-east-1:xxxx:job-definition/td-job:1
JobName: tds-job
RoleArn: arn:aws:iam::xxx:role/service-role/AWS_Events_Invoke_Batch_Job_Queue_1226795150
【讨论】: