Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
49a67aa
feat(cloudwatch): imprements AT_LEAST wrapper function of comopsite a…
aki-kii Nov 18, 2025
b643346
Merge branch 'main' into cloudwatch-composite-alarm-add-at-least
aki-kii Nov 19, 2025
311ab3f
Update packages/aws-cdk-lib/aws-cloudwatch/lib/alarm-rule.ts
aki-kii Nov 19, 2025
53fbbd5
Update packages/aws-cdk-lib/aws-cloudwatch/test/composite-alarm.test.ts
aki-kii Nov 19, 2025
b862d6a
fix: integ and unit tests
aki-kii Nov 19, 2025
5a0ce04
refactor: rewrote AT_LEAST threshold to Union-like class
aki-kii Nov 20, 2025
c1d81e7
Update packages/aws-cdk-lib/aws-cloudwatch/lib/alarm-rule.ts
aki-kii Nov 22, 2025
67d792c
Update packages/aws-cdk-lib/aws-cloudwatch/lib/alarm-rule.ts
aki-kii Nov 22, 2025
2059bf8
refactor: minor adjustments to method names and parameter names
aki-kii Nov 22, 2025
dad45b8
fix: add @internal comment for _bind method
aki-kii Nov 22, 2025
7072fde
Merge branch 'main' into cloudwatch-composite-alarm-add-at-least
aki-kii Dec 12, 2025
700c2c1
Merge branch 'main' into cloudwatch-composite-alarm-add-at-least
aki-kii Jan 14, 2026
df4be41
Merge branch 'main' into cloudwatch-composite-alarm-add-at-least
aki-kii Jan 15, 2026
b9cdda3
Merge branch 'main' into cloudwatch-composite-alarm-add-at-least
aki-kii Jan 15, 2026
202a687
Merge branch 'main' into cloudwatch-composite-alarm-add-at-least
aki-kii Jan 19, 2026
9ee837d
Merge branch 'main' into cloudwatch-composite-alarm-add-at-least
aki-kii Jan 20, 2026
152f36e
Merge branch 'main' into cloudwatch-composite-alarm-add-at-least
aki-kii Jan 28, 2026
092a812
Merge branch 'main' into cloudwatch-composite-alarm-add-at-least
aki-kii Feb 3, 2026
aff0635
Merge branch 'cloudwatch-composite-alarm-add-at-least' of https://git…
aki-kii Feb 3, 2026
ebeb925
Merge branch 'main' into cloudwatch-composite-alarm-add-at-least
aki-kii Feb 3, 2026
2a0aa6c
Merge branch 'main' into cloudwatch-composite-alarm-add-at-least
aki-kii Feb 10, 2026
bb411f5
fix: Change to import as 'type' when using only for type annotations.
aki-kii Feb 10, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@
"Alarm548383B2F": {
"Type": "AWS::CloudWatch::Alarm",
"Properties": {
"AlarmName": "Alarm with space in name",
"ComparisonOperator": "GreaterThanOrEqualToThreshold",
"EvaluationPeriods": 3,
"AlarmName": "Alarm with space in name",
"MetricName": "Metric",
"Namespace": "CDK/Test",
"Period": 300,
Expand All @@ -64,6 +64,15 @@
"CompositeAlarmF4C3D082": {
"Type": "AWS::CloudWatch::CompositeAlarm",
"Properties": {
"ActionsSuppressor": {
"Fn::GetAtt": [
"Alarm548383B2F",
"Arn"
]
},
"ActionsSuppressorExtensionPeriod": 60,
"ActionsSuppressorWaitPeriod": 60,
"AlarmName": "CompositeAlarmIntegrationTestCompositeAlarm742D2FBA",
"AlarmRule": {
"Fn::Join": [
"",
Expand Down Expand Up @@ -103,19 +112,52 @@
"Arn"
]
},
"\")))) OR FALSE)"
"\"))) AND AT_LEAST(2, ALARM , (",
{
"Fn::GetAtt": [
"Alarm1F9009D71",
"Arn"
]
},
", ",
{
"Fn::GetAtt": [
"Alarm2A7122E13",
"Arn"
]
},
", ",
{
"Fn::GetAtt": [
"Alarm32341D8D9",
"Arn"
]
},
")) AND AT_LEAST(60%, NOT OK , (",
{
"Fn::GetAtt": [
"Alarm1F9009D71",
"Arn"
]
},
", ",
{
"Fn::GetAtt": [
"Alarm2A7122E13",
"Arn"
]
},
", ",
{
"Fn::GetAtt": [
"Alarm32341D8D9",
"Arn"
]
},
"))) OR FALSE)"
]
]
},
"ActionsSuppressor": {
"Fn::GetAtt": [
"Alarm548383B2F",
"Arn"
]
},
"ActionsSuppressorExtensionPeriod": 60,
"ActionsSuppressorWaitPeriod": 60,
"AlarmName": "CompositeAlarmIntegrationTestCompositeAlarm742D2FBA"
}
}
}
},
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading