Skip to content

Commit

Permalink
fix(aws-ecs): fix incorrect rate
Browse files Browse the repository at this point in the history
  • Loading branch information
spg authored Jan 8, 2025
1 parent bbdd42c commit 54ee21d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/aws-cdk-lib/aws-ecs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1169,7 +1169,7 @@ taskDefinition.addContainer('TheContainer', {

// An Rule that describes the event trigger (in this case a scheduled run)
const rule = new events.Rule(this, 'Rule', {
schedule: events.Schedule.expression('rate(1 min)'),
schedule: events.Schedule.expression('rate(1 minute)'),
});

// Pass an environment variable to the container 'TheContainer' in the task
Expand Down

0 comments on commit 54ee21d

Please sign in to comment.