File tree 1 file changed +2
-2
lines changed
packages/cli/src/constructs
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ export interface CheckGroupProps {
69
69
/**
70
70
* An array of one or more data center locations where to run the checks.
71
71
*/
72
- locations : Array < keyof Region >
72
+ locations ? : Array < keyof Region >
73
73
/**
74
74
* An array of one or more private locations where to run the checks.
75
75
*/
@@ -166,7 +166,7 @@ export class CheckGroup extends Construct {
166
166
this . doubleCheck = props . doubleCheck
167
167
this . tags = props . tags
168
168
this . runtimeId = props . runtimeId
169
- this . locations = props . locations
169
+ this . locations = props . locations ?? [ ]
170
170
this . privateLocations = props . privateLocations
171
171
this . concurrency = props . concurrency
172
172
// `frequency` is not a CheckGroup resource property. Not present in synthesize()
You can’t perform that action at this time.
0 commit comments