Skip to content

Commit

Permalink
fix(cloudwatch): fixed lte operator string for alarms annotations label
Browse files Browse the repository at this point in the history
- Fixed incorrect comparison operator (LTE) string from '>=' to '<='
- fixes aws#8913
  • Loading branch information
alvyn279 committed Sep 18, 2020
1 parent a5e77e4 commit 0c3821a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@aws-cdk/aws-cloudwatch/lib/alarm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ const OPERATOR_SYMBOLS: {[key: string]: string} = {
GreaterThanOrEqualToThreshold: '>=',
GreaterThanThreshold: '>',
LessThanThreshold: '<',
LessThanOrEqualToThreshold: '>=',
LessThanOrEqualToThreshold: '<=',
};

/**
Expand Down

0 comments on commit 0c3821a

Please sign in to comment.