-
Notifications
You must be signed in to change notification settings - Fork 15
/
Alarm.go
532 lines (462 loc) · 12.7 KB
/
Alarm.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
package awscloudwatch
import (
_init_ "github.com/aws/aws-cdk-go/awscdk/v2/jsii"
_jsii_ "github.com/aws/jsii-runtime-go/runtime"
"github.com/aws/aws-cdk-go/awscdk/v2"
"github.com/aws/constructs-go/constructs/v10"
)
// An alarm on a CloudWatch metric.
//
// Example:
// var logGroup logGroup
//
// mf := logs.NewMetricFilter(this, jsii.String("MetricFilter"), &MetricFilterProps{
// LogGroup: LogGroup,
// MetricNamespace: jsii.String("MyApp"),
// MetricName: jsii.String("Latency"),
// FilterPattern: logs.FilterPattern_Exists(jsii.String("$.latency")),
// MetricValue: jsii.String("$.latency"),
// Dimensions: map[string]*string{
// "ErrorCode": jsii.String("$.errorCode"),
// },
// Unit: cloudwatch.Unit_MILLISECONDS,
// })
//
// //expose a metric from the metric filter
// metric := mf.Metric()
//
// //you can use the metric to create a new alarm
// //you can use the metric to create a new alarm
// cloudwatch.NewAlarm(this, jsii.String("alarm from metric filter"), &AlarmProps{
// Metric: Metric,
// Threshold: jsii.Number(100),
// EvaluationPeriods: jsii.Number(2),
// })
//
type Alarm interface {
AlarmBase
AlarmActionArns() *[]*string
SetAlarmActionArns(val *[]*string)
// ARN of this alarm.
AlarmArn() *string
// Name of this alarm.
AlarmName() *string
// The environment this resource belongs to.
//
// For resources that are created and managed by the CDK
// (generally, those created by creating new class instances like Role, Bucket, etc.),
// this is always the same as the environment of the stack they belong to;
// however, for imported resources
// (those obtained from static methods like fromRoleArn, fromBucketName, etc.),
// that might be different than the stack they were imported into.
Env() *awscdk.ResourceEnvironment
InsufficientDataActionArns() *[]*string
SetInsufficientDataActionArns(val *[]*string)
// The metric object this alarm was based on.
Metric() IMetric
// The tree node.
Node() constructs.Node
OkActionArns() *[]*string
SetOkActionArns(val *[]*string)
// Returns a string-encoded token that resolves to the physical name that should be passed to the CloudFormation resource.
//
// This value will resolve to one of the following:
// - a concrete value (e.g. `"my-awesome-bucket"`)
// - `undefined`, when a name should be generated by CloudFormation
// - a concrete name generated automatically during synthesis, in
// cross-environment scenarios.
PhysicalName() *string
// The stack in which this resource is defined.
Stack() awscdk.Stack
// Trigger this action if the alarm fires.
//
// Typically SnsAction or AutoScalingAction.
AddAlarmAction(actions ...IAlarmAction)
// Trigger this action if there is insufficient data to evaluate the alarm.
//
// Typically SnsAction or AutoScalingAction.
AddInsufficientDataAction(actions ...IAlarmAction)
// Trigger this action if the alarm returns from breaching state into ok state.
//
// Typically SnsAction or AutoScalingAction.
AddOkAction(actions ...IAlarmAction)
// Apply the given removal policy to this resource.
//
// The Removal Policy controls what happens to this resource when it stops
// being managed by CloudFormation, either because you've removed it from the
// CDK application or because you've made a change that requires the resource
// to be replaced.
//
// The resource can be deleted (`RemovalPolicy.DESTROY`), or left in your AWS
// account for data recovery and cleanup later (`RemovalPolicy.RETAIN`).
ApplyRemovalPolicy(policy awscdk.RemovalPolicy)
GeneratePhysicalName() *string
// Returns an environment-sensitive token that should be used for the resource's "ARN" attribute (e.g. `bucket.bucketArn`).
//
// Normally, this token will resolve to `arnAttr`, but if the resource is
// referenced across environments, `arnComponents` will be used to synthesize
// a concrete ARN with the resource's physical name. Make sure to reference
// `this.physicalName` in `arnComponents`.
GetResourceArnAttribute(arnAttr *string, arnComponents *awscdk.ArnComponents) *string
// Returns an environment-sensitive token that should be used for the resource's "name" attribute (e.g. `bucket.bucketName`).
//
// Normally, this token will resolve to `nameAttr`, but if the resource is
// referenced across environments, it will be resolved to `this.physicalName`,
// which will be a concrete name.
GetResourceNameAttribute(nameAttr *string) *string
// AlarmRule indicating ALARM state for Alarm.
RenderAlarmRule() *string
// Turn this alarm into a horizontal annotation.
//
// This is useful if you want to represent an Alarm in a non-AlarmWidget.
// An `AlarmWidget` can directly show an alarm, but it can only show a
// single alarm and no other metrics. Instead, you can convert the alarm to
// a HorizontalAnnotation and add it as an annotation to another graph.
//
// This might be useful if:
//
// - You want to show multiple alarms inside a single graph, for example if
// you have both a "small margin/long period" alarm as well as a
// "large margin/short period" alarm.
//
// - You want to show an Alarm line in a graph with multiple metrics in it.
ToAnnotation() *HorizontalAnnotation
// Returns a string representation of this construct.
ToString() *string
}
// The jsii proxy struct for Alarm
type jsiiProxy_Alarm struct {
jsiiProxy_AlarmBase
}
func (j *jsiiProxy_Alarm) AlarmActionArns() *[]*string {
var returns *[]*string
_jsii_.Get(
j,
"alarmActionArns",
&returns,
)
return returns
}
func (j *jsiiProxy_Alarm) AlarmArn() *string {
var returns *string
_jsii_.Get(
j,
"alarmArn",
&returns,
)
return returns
}
func (j *jsiiProxy_Alarm) AlarmName() *string {
var returns *string
_jsii_.Get(
j,
"alarmName",
&returns,
)
return returns
}
func (j *jsiiProxy_Alarm) Env() *awscdk.ResourceEnvironment {
var returns *awscdk.ResourceEnvironment
_jsii_.Get(
j,
"env",
&returns,
)
return returns
}
func (j *jsiiProxy_Alarm) InsufficientDataActionArns() *[]*string {
var returns *[]*string
_jsii_.Get(
j,
"insufficientDataActionArns",
&returns,
)
return returns
}
func (j *jsiiProxy_Alarm) Metric() IMetric {
var returns IMetric
_jsii_.Get(
j,
"metric",
&returns,
)
return returns
}
func (j *jsiiProxy_Alarm) Node() constructs.Node {
var returns constructs.Node
_jsii_.Get(
j,
"node",
&returns,
)
return returns
}
func (j *jsiiProxy_Alarm) OkActionArns() *[]*string {
var returns *[]*string
_jsii_.Get(
j,
"okActionArns",
&returns,
)
return returns
}
func (j *jsiiProxy_Alarm) PhysicalName() *string {
var returns *string
_jsii_.Get(
j,
"physicalName",
&returns,
)
return returns
}
func (j *jsiiProxy_Alarm) Stack() awscdk.Stack {
var returns awscdk.Stack
_jsii_.Get(
j,
"stack",
&returns,
)
return returns
}
func NewAlarm(scope constructs.Construct, id *string, props *AlarmProps) Alarm {
_init_.Initialize()
if err := validateNewAlarmParameters(scope, id, props); err != nil {
panic(err)
}
j := jsiiProxy_Alarm{}
_jsii_.Create(
"aws-cdk-lib.aws_cloudwatch.Alarm",
[]interface{}{scope, id, props},
&j,
)
return &j
}
func NewAlarm_Override(a Alarm, scope constructs.Construct, id *string, props *AlarmProps) {
_init_.Initialize()
_jsii_.Create(
"aws-cdk-lib.aws_cloudwatch.Alarm",
[]interface{}{scope, id, props},
a,
)
}
func (j *jsiiProxy_Alarm)SetAlarmActionArns(val *[]*string) {
_jsii_.Set(
j,
"alarmActionArns",
val,
)
}
func (j *jsiiProxy_Alarm)SetInsufficientDataActionArns(val *[]*string) {
_jsii_.Set(
j,
"insufficientDataActionArns",
val,
)
}
func (j *jsiiProxy_Alarm)SetOkActionArns(val *[]*string) {
_jsii_.Set(
j,
"okActionArns",
val,
)
}
// Import an existing CloudWatch alarm provided an ARN.
func Alarm_FromAlarmArn(scope constructs.Construct, id *string, alarmArn *string) IAlarm {
_init_.Initialize()
if err := validateAlarm_FromAlarmArnParameters(scope, id, alarmArn); err != nil {
panic(err)
}
var returns IAlarm
_jsii_.StaticInvoke(
"aws-cdk-lib.aws_cloudwatch.Alarm",
"fromAlarmArn",
[]interface{}{scope, id, alarmArn},
&returns,
)
return returns
}
// Import an existing CloudWatch alarm provided an Name.
func Alarm_FromAlarmName(scope constructs.Construct, id *string, alarmName *string) IAlarm {
_init_.Initialize()
if err := validateAlarm_FromAlarmNameParameters(scope, id, alarmName); err != nil {
panic(err)
}
var returns IAlarm
_jsii_.StaticInvoke(
"aws-cdk-lib.aws_cloudwatch.Alarm",
"fromAlarmName",
[]interface{}{scope, id, alarmName},
&returns,
)
return returns
}
// Checks if `x` is a construct.
//
// Use this method instead of `instanceof` to properly detect `Construct`
// instances, even when the construct library is symlinked.
//
// Explanation: in JavaScript, multiple copies of the `constructs` library on
// disk are seen as independent, completely different libraries. As a
// consequence, the class `Construct` in each copy of the `constructs` library
// is seen as a different class, and an instance of one class will not test as
// `instanceof` the other class. `npm install` will not create installations
// like this, but users may manually symlink construct libraries together or
// use a monorepo tool: in those cases, multiple copies of the `constructs`
// library can be accidentally installed, and `instanceof` will behave
// unpredictably. It is safest to avoid using `instanceof`, and using
// this type-testing method instead.
//
// Returns: true if `x` is an object created from a class which extends `Construct`.
func Alarm_IsConstruct(x interface{}) *bool {
_init_.Initialize()
if err := validateAlarm_IsConstructParameters(x); err != nil {
panic(err)
}
var returns *bool
_jsii_.StaticInvoke(
"aws-cdk-lib.aws_cloudwatch.Alarm",
"isConstruct",
[]interface{}{x},
&returns,
)
return returns
}
// Returns true if the construct was created by CDK, and false otherwise.
func Alarm_IsOwnedResource(construct constructs.IConstruct) *bool {
_init_.Initialize()
if err := validateAlarm_IsOwnedResourceParameters(construct); err != nil {
panic(err)
}
var returns *bool
_jsii_.StaticInvoke(
"aws-cdk-lib.aws_cloudwatch.Alarm",
"isOwnedResource",
[]interface{}{construct},
&returns,
)
return returns
}
// Check whether the given construct is a Resource.
func Alarm_IsResource(construct constructs.IConstruct) *bool {
_init_.Initialize()
if err := validateAlarm_IsResourceParameters(construct); err != nil {
panic(err)
}
var returns *bool
_jsii_.StaticInvoke(
"aws-cdk-lib.aws_cloudwatch.Alarm",
"isResource",
[]interface{}{construct},
&returns,
)
return returns
}
func (a *jsiiProxy_Alarm) AddAlarmAction(actions ...IAlarmAction) {
args := []interface{}{}
for _, a := range actions {
args = append(args, a)
}
_jsii_.InvokeVoid(
a,
"addAlarmAction",
args,
)
}
func (a *jsiiProxy_Alarm) AddInsufficientDataAction(actions ...IAlarmAction) {
args := []interface{}{}
for _, a := range actions {
args = append(args, a)
}
_jsii_.InvokeVoid(
a,
"addInsufficientDataAction",
args,
)
}
func (a *jsiiProxy_Alarm) AddOkAction(actions ...IAlarmAction) {
args := []interface{}{}
for _, a := range actions {
args = append(args, a)
}
_jsii_.InvokeVoid(
a,
"addOkAction",
args,
)
}
func (a *jsiiProxy_Alarm) ApplyRemovalPolicy(policy awscdk.RemovalPolicy) {
if err := a.validateApplyRemovalPolicyParameters(policy); err != nil {
panic(err)
}
_jsii_.InvokeVoid(
a,
"applyRemovalPolicy",
[]interface{}{policy},
)
}
func (a *jsiiProxy_Alarm) GeneratePhysicalName() *string {
var returns *string
_jsii_.Invoke(
a,
"generatePhysicalName",
nil, // no parameters
&returns,
)
return returns
}
func (a *jsiiProxy_Alarm) GetResourceArnAttribute(arnAttr *string, arnComponents *awscdk.ArnComponents) *string {
if err := a.validateGetResourceArnAttributeParameters(arnAttr, arnComponents); err != nil {
panic(err)
}
var returns *string
_jsii_.Invoke(
a,
"getResourceArnAttribute",
[]interface{}{arnAttr, arnComponents},
&returns,
)
return returns
}
func (a *jsiiProxy_Alarm) GetResourceNameAttribute(nameAttr *string) *string {
if err := a.validateGetResourceNameAttributeParameters(nameAttr); err != nil {
panic(err)
}
var returns *string
_jsii_.Invoke(
a,
"getResourceNameAttribute",
[]interface{}{nameAttr},
&returns,
)
return returns
}
func (a *jsiiProxy_Alarm) RenderAlarmRule() *string {
var returns *string
_jsii_.Invoke(
a,
"renderAlarmRule",
nil, // no parameters
&returns,
)
return returns
}
func (a *jsiiProxy_Alarm) ToAnnotation() *HorizontalAnnotation {
var returns *HorizontalAnnotation
_jsii_.Invoke(
a,
"toAnnotation",
nil, // no parameters
&returns,
)
return returns
}
func (a *jsiiProxy_Alarm) ToString() *string {
var returns *string
_jsii_.Invoke(
a,
"toString",
nil, // no parameters
&returns,
)
return returns
}