@rio-cloud/cdk-v2-constructs 4.18.0 → 4.20.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.jsii CHANGED
@@ -3510,7 +3510,7 @@
3510
3510
  },
3511
3511
  "name": "@rio-cloud/cdk-v2-constructs",
3512
3512
  "readme": {
3513
- "markdown": "# RIO CDK Constructs\n\nThis package contains CDK2 constructs for RIO teams.\n\n> NPM: `@rio-cloud/cdk-v2-constructs`\n\n## Bootstrapping of CDK project\n\n```\n$ npx cdk init --language typescript\n```\n\n## Installation\n\n```\n$ npm install --save @rio-cloud/cdk-v2-constructs\n```\n\n## See also\n\n * [How to contribut](./CONTRIBUTION.md)\n * [Changelog](./CHANGELOG.md)\n * [brief API desciption](./API.md)\n"
3513
+ "markdown": "# RIO CDK Constructs\n\nThis package contains CDK2 constructs for RIO teams.\n\n> NPM: `@rio-cloud/cdk-v2-constructs`\n\n## Bootstrapping of CDK project\n\n```\n$ npx cdk init --language typescript\n```\n\n## Installation\n\n```\n$ npm install --save @rio-cloud/cdk-v2-constructs\n```\n\n## See also\n\n * [How to contribut](./CONTRIBUTION.md)\n * [Changelog](./CHANGELOG.md)\n * [brief API desciption](./API.md)\n\n## FAQ's\n- How can I udpate the thresholds of monitors created by watchful?\n\n There is an `overrideAlarmThreshold` method which can be used to override the default watchful thresholds. Please make aure to use the method before the `watchscope` function.\n Eg -\n ```\n ...\n const dw = new Watchful(stack, 'Watchful', {});\n dw.overrideAlarmThreshold({\n monitoredResourceScope: lambdaA,\n monitorType: MonitorType.ERRORS,\n threshold: 5,\n });\n dw.watchScope(stack);\n ```"
3514
3514
  },
3515
3515
  "repository": {
3516
3516
  "type": "git",
@@ -3612,7 +3612,7 @@
3612
3612
  "kind": "class",
3613
3613
  "locationInModule": {
3614
3614
  "filename": "src/watchful/watchful.ts",
3615
- "line": 54
3615
+ "line": 83
3616
3616
  },
3617
3617
  "methods": [
3618
3618
  {
@@ -3623,7 +3623,7 @@
3623
3623
  },
3624
3624
  "locationInModule": {
3625
3625
  "filename": "src/watchful/watchful.ts",
3626
- "line": 56
3626
+ "line": 86
3627
3627
  },
3628
3628
  "name": "createAlarm",
3629
3629
  "overrides": "@rio-cloud/cdk-v2-constructs.IWatchful",
@@ -3637,7 +3637,7 @@
3637
3637
  {
3638
3638
  "name": "id",
3639
3639
  "type": {
3640
- "primitive": "string"
3640
+ "fqn": "@rio-cloud/cdk-v2-constructs.MonitorType"
3641
3641
  }
3642
3642
  },
3643
3643
  {
@@ -3656,7 +3656,7 @@
3656
3656
  },
3657
3657
  "locationInModule": {
3658
3658
  "filename": "src/watchful/watchful.ts",
3659
- "line": 55
3659
+ "line": 85
3660
3660
  },
3661
3661
  "name": "createLogAlarm",
3662
3662
  "overrides": "@rio-cloud/cdk-v2-constructs.IWatchful",
@@ -3668,9 +3668,9 @@
3668
3668
  }
3669
3669
  },
3670
3670
  {
3671
- "name": "serviceName",
3671
+ "name": "id",
3672
3672
  "type": {
3673
- "primitive": "string"
3673
+ "fqn": "@rio-cloud/cdk-v2-constructs.MonitorType"
3674
3674
  }
3675
3675
  },
3676
3676
  {
@@ -3681,6 +3681,49 @@
3681
3681
  }
3682
3682
  ]
3683
3683
  },
3684
+ {
3685
+ "docs": {
3686
+ "stability": "stable",
3687
+ "summary": "Override the default thresholds for the watchful monitors."
3688
+ },
3689
+ "locationInModule": {
3690
+ "filename": "src/watchful/watchful.ts",
3691
+ "line": 91
3692
+ },
3693
+ "name": "overrideAlarmThreshold",
3694
+ "parameters": [
3695
+ {
3696
+ "name": "props",
3697
+ "type": {
3698
+ "fqn": "@rio-cloud/cdk-v2-constructs.OverrideAlarmThresholdProps"
3699
+ }
3700
+ }
3701
+ ]
3702
+ },
3703
+ {
3704
+ "docs": {
3705
+ "stability": "stable"
3706
+ },
3707
+ "locationInModule": {
3708
+ "filename": "src/watchful/watchful.ts",
3709
+ "line": 99
3710
+ },
3711
+ "name": "shouldOverrideThreshold",
3712
+ "parameters": [
3713
+ {
3714
+ "name": "props",
3715
+ "type": {
3716
+ "fqn": "@rio-cloud/cdk-v2-constructs.ShouldOverrideThresholdProps"
3717
+ }
3718
+ }
3719
+ ],
3720
+ "protected": true,
3721
+ "returns": {
3722
+ "type": {
3723
+ "fqn": "@rio-cloud/cdk-v2-constructs.ShouldOverrideThresholdReturnProps"
3724
+ }
3725
+ }
3726
+ },
3684
3727
  {
3685
3728
  "docs": {
3686
3729
  "stability": "stable",
@@ -3688,7 +3731,7 @@
3688
3731
  },
3689
3732
  "locationInModule": {
3690
3733
  "filename": "src/watchful/watchful.ts",
3691
- "line": 102
3734
+ "line": 154
3692
3735
  },
3693
3736
  "name": "watchAlb",
3694
3737
  "parameters": [
@@ -3717,7 +3760,7 @@
3717
3760
  },
3718
3761
  "locationInModule": {
3719
3762
  "filename": "src/watchful/watchful.ts",
3720
- "line": 114
3763
+ "line": 166
3721
3764
  },
3722
3765
  "name": "watchApplicationTargetGroup",
3723
3766
  "parameters": [
@@ -3746,7 +3789,7 @@
3746
3789
  },
3747
3790
  "locationInModule": {
3748
3791
  "filename": "src/watchful/watchful.ts",
3749
- "line": 75
3792
+ "line": 127
3750
3793
  },
3751
3794
  "name": "watchCloudfrontDistribution",
3752
3795
  "parameters": [
@@ -3775,7 +3818,7 @@
3775
3818
  },
3776
3819
  "locationInModule": {
3777
3820
  "filename": "src/watchful/watchful.ts",
3778
- "line": 141
3821
+ "line": 193
3779
3822
  },
3780
3823
  "name": "watchDatabaseCluster",
3781
3824
  "parameters": [
@@ -3804,7 +3847,7 @@
3804
3847
  },
3805
3848
  "locationInModule": {
3806
3849
  "filename": "src/watchful/watchful.ts",
3807
- "line": 129
3850
+ "line": 181
3808
3851
  },
3809
3852
  "name": "watchDocDb",
3810
3853
  "parameters": [
@@ -3833,7 +3876,7 @@
3833
3876
  },
3834
3877
  "locationInModule": {
3835
3878
  "filename": "src/watchful/watchful.ts",
3836
- "line": 153
3879
+ "line": 205
3837
3880
  },
3838
3881
  "name": "watchDynamoDbTable",
3839
3882
  "parameters": [
@@ -3862,7 +3905,7 @@
3862
3905
  },
3863
3906
  "locationInModule": {
3864
3907
  "filename": "src/watchful/watchful.ts",
3865
- "line": 90
3908
+ "line": 142
3866
3909
  },
3867
3910
  "name": "watchEcsService",
3868
3911
  "parameters": [
@@ -3891,7 +3934,7 @@
3891
3934
  },
3892
3935
  "locationInModule": {
3893
3936
  "filename": "src/watchful/watchful.ts",
3894
- "line": 62
3937
+ "line": 114
3895
3938
  },
3896
3939
  "name": "watchLambdaFunction",
3897
3940
  "parameters": [
@@ -3915,6 +3958,28 @@
3915
3958
  }
3916
3959
  ],
3917
3960
  "name": "AbstractWatchful",
3961
+ "properties": [
3962
+ {
3963
+ "docs": {
3964
+ "stability": "stable"
3965
+ },
3966
+ "immutable": true,
3967
+ "locationInModule": {
3968
+ "filename": "src/watchful/watchful.ts",
3969
+ "line": 84
3970
+ },
3971
+ "name": "metricsAlarmOverrides",
3972
+ "protected": true,
3973
+ "type": {
3974
+ "collection": {
3975
+ "elementtype": {
3976
+ "fqn": "@rio-cloud/cdk-v2-constructs.OverrideAlarmThresholdProps"
3977
+ },
3978
+ "kind": "array"
3979
+ }
3980
+ }
3981
+ }
3982
+ ],
3918
3983
  "symbolId": "src/watchful/watchful:AbstractWatchful"
3919
3984
  },
3920
3985
  "@rio-cloud/cdk-v2-constructs.AppStackProps": {
@@ -4060,7 +4125,7 @@
4060
4125
  },
4061
4126
  "locationInModule": {
4062
4127
  "filename": "src/contributions/team-claid/aws-backup-monitoring/aws-backup-monitoring.ts",
4063
- "line": 56
4128
+ "line": 46
4064
4129
  },
4065
4130
  "parameters": [
4066
4131
  {
@@ -4086,7 +4151,7 @@
4086
4151
  "kind": "class",
4087
4152
  "locationInModule": {
4088
4153
  "filename": "src/contributions/team-claid/aws-backup-monitoring/aws-backup-monitoring.ts",
4089
- "line": 55
4154
+ "line": 45
4090
4155
  },
4091
4156
  "name": "AwsBackupOverallMonitoring",
4092
4157
  "symbolId": "src/contributions/team-claid/aws-backup-monitoring/aws-backup-monitoring:AwsBackupOverallMonitoring"
@@ -5676,7 +5741,7 @@
5676
5741
  "kind": "interface",
5677
5742
  "locationInModule": {
5678
5743
  "filename": "src/watchful/watchful.ts",
5679
- "line": 40
5744
+ "line": 41
5680
5745
  },
5681
5746
  "methods": [
5682
5747
  {
@@ -5687,7 +5752,7 @@
5687
5752
  },
5688
5753
  "locationInModule": {
5689
5754
  "filename": "src/watchful/watchful.ts",
5690
- "line": 51
5755
+ "line": 52
5691
5756
  },
5692
5757
  "name": "createAlarm",
5693
5758
  "parameters": [
@@ -5700,7 +5765,7 @@
5700
5765
  {
5701
5766
  "name": "id",
5702
5767
  "type": {
5703
- "primitive": "string"
5768
+ "fqn": "@rio-cloud/cdk-v2-constructs.MonitorType"
5704
5769
  }
5705
5770
  },
5706
5771
  {
@@ -5722,7 +5787,7 @@
5722
5787
  },
5723
5788
  "locationInModule": {
5724
5789
  "filename": "src/watchful/watchful.ts",
5725
- "line": 45
5790
+ "line": 46
5726
5791
  },
5727
5792
  "name": "createLogAlarm",
5728
5793
  "parameters": [
@@ -5736,9 +5801,9 @@
5736
5801
  "docs": {
5737
5802
  "summary": "- The name of the service."
5738
5803
  },
5739
- "name": "serviceName",
5804
+ "name": "id",
5740
5805
  "type": {
5741
- "primitive": "string"
5806
+ "fqn": "@rio-cloud/cdk-v2-constructs.MonitorType"
5742
5807
  }
5743
5808
  },
5744
5809
  {
@@ -6792,6 +6857,200 @@
6792
6857
  ],
6793
6858
  "symbolId": "src/watchful/metric-alarm:MetricAlarmProps"
6794
6859
  },
6860
+ "@rio-cloud/cdk-v2-constructs.MonitorType": {
6861
+ "assembly": "@rio-cloud/cdk-v2-constructs",
6862
+ "docs": {
6863
+ "stability": "stable"
6864
+ },
6865
+ "fqn": "@rio-cloud/cdk-v2-constructs.MonitorType",
6866
+ "kind": "enum",
6867
+ "locationInModule": {
6868
+ "filename": "src/watchful/monitor-type.ts",
6869
+ "line": 1
6870
+ },
6871
+ "members": [
6872
+ {
6873
+ "docs": {
6874
+ "stability": "stable",
6875
+ "summary": "Monitor id for application load balancer rejected connections."
6876
+ },
6877
+ "name": "REJECTED_CONNECTION"
6878
+ },
6879
+ {
6880
+ "docs": {
6881
+ "stability": "stable",
6882
+ "summary": "5xx error codes for cloudfront and application load balancer."
6883
+ },
6884
+ "name": "HTTP_CODE5XX"
6885
+ },
6886
+ {
6887
+ "docs": {
6888
+ "stability": "stable",
6889
+ "summary": "Cache hit rate for document db."
6890
+ },
6891
+ "name": "CACHE_HIT_RATE"
6892
+ },
6893
+ {
6894
+ "docs": {
6895
+ "stability": "stable",
6896
+ "summary": "CPU Utilization for document db, ECS and RDS."
6897
+ },
6898
+ "name": "CPU_UTILIZATION"
6899
+ },
6900
+ {
6901
+ "docs": {
6902
+ "stability": "stable",
6903
+ "summary": "Swap usage for document DB."
6904
+ },
6905
+ "name": "SWAP_USAGE"
6906
+ },
6907
+ {
6908
+ "docs": {
6909
+ "stability": "stable",
6910
+ "summary": "Free local storage for document DB."
6911
+ },
6912
+ "name": "FREE_LOCAL_STORAGE"
6913
+ },
6914
+ {
6915
+ "docs": {
6916
+ "stability": "stable",
6917
+ "summary": "Read throttle events for dynamodb."
6918
+ },
6919
+ "name": "READ_THROTTLE_EVENTS"
6920
+ },
6921
+ {
6922
+ "docs": {
6923
+ "stability": "stable",
6924
+ "summary": "Write throttle events for dynamodb."
6925
+ },
6926
+ "name": "WRITE_THROTTLE_EVENTS"
6927
+ },
6928
+ {
6929
+ "docs": {
6930
+ "stability": "stable",
6931
+ "summary": "Throttle request evebts for dynamodb."
6932
+ },
6933
+ "name": "THROTTLED_REQUESTS_EVENTS"
6934
+ },
6935
+ {
6936
+ "docs": {
6937
+ "stability": "stable",
6938
+ "summary": "Memory utilization for ECS."
6939
+ },
6940
+ "name": "MEMORY_UTILIZATION"
6941
+ },
6942
+ {
6943
+ "docs": {
6944
+ "stability": "stable",
6945
+ "summary": "Log error monitor for ECS and lambda."
6946
+ },
6947
+ "name": "LOG_ERROR_MONITOR"
6948
+ },
6949
+ {
6950
+ "docs": {
6951
+ "stability": "stable",
6952
+ "summary": "Inovation errors with lambda."
6953
+ },
6954
+ "name": "ERRORS"
6955
+ },
6956
+ {
6957
+ "docs": {
6958
+ "stability": "stable",
6959
+ "summary": "Throttle metrics for lambda."
6960
+ },
6961
+ "name": "THROTTLES"
6962
+ },
6963
+ {
6964
+ "docs": {
6965
+ "stability": "stable",
6966
+ "summary": "Runtime duration metrics for lambda."
6967
+ },
6968
+ "name": "DURATION"
6969
+ },
6970
+ {
6971
+ "docs": {
6972
+ "stability": "stable",
6973
+ "summary": "Free memory for Document DB and RDS."
6974
+ },
6975
+ "name": "FREEABLE_MEMORY"
6976
+ },
6977
+ {
6978
+ "docs": {
6979
+ "stability": "stable",
6980
+ "summary": "Connection error metrics for Application load balancer target group."
6981
+ },
6982
+ "name": "CONNECTION_ERROR"
6983
+ }
6984
+ ],
6985
+ "name": "MonitorType",
6986
+ "symbolId": "src/watchful/monitor-type:MonitorType"
6987
+ },
6988
+ "@rio-cloud/cdk-v2-constructs.OverrideAlarmThresholdProps": {
6989
+ "assembly": "@rio-cloud/cdk-v2-constructs",
6990
+ "datatype": true,
6991
+ "docs": {
6992
+ "stability": "stable"
6993
+ },
6994
+ "fqn": "@rio-cloud/cdk-v2-constructs.OverrideAlarmThresholdProps",
6995
+ "kind": "interface",
6996
+ "locationInModule": {
6997
+ "filename": "src/watchful/watchful.ts",
6998
+ "line": 55
6999
+ },
7000
+ "name": "OverrideAlarmThresholdProps",
7001
+ "properties": [
7002
+ {
7003
+ "abstract": true,
7004
+ "docs": {
7005
+ "stability": "stable",
7006
+ "summary": "The scope of the resource for which the threshold needs to be overriden."
7007
+ },
7008
+ "immutable": true,
7009
+ "locationInModule": {
7010
+ "filename": "src/watchful/watchful.ts",
7011
+ "line": 59
7012
+ },
7013
+ "name": "monitoredResourceScope",
7014
+ "type": {
7015
+ "fqn": "constructs.Construct"
7016
+ }
7017
+ },
7018
+ {
7019
+ "abstract": true,
7020
+ "docs": {
7021
+ "remarks": "Eg - Errors, Thresholds, LogErrorMonitor",
7022
+ "stability": "stable",
7023
+ "summary": "Id of the monitor that needs to be overriden."
7024
+ },
7025
+ "immutable": true,
7026
+ "locationInModule": {
7027
+ "filename": "src/watchful/watchful.ts",
7028
+ "line": 65
7029
+ },
7030
+ "name": "monitorType",
7031
+ "type": {
7032
+ "fqn": "@rio-cloud/cdk-v2-constructs.MonitorType"
7033
+ }
7034
+ },
7035
+ {
7036
+ "abstract": true,
7037
+ "docs": {
7038
+ "stability": "stable",
7039
+ "summary": "The threshold that needs to be set."
7040
+ },
7041
+ "immutable": true,
7042
+ "locationInModule": {
7043
+ "filename": "src/watchful/watchful.ts",
7044
+ "line": 70
7045
+ },
7046
+ "name": "threshold",
7047
+ "type": {
7048
+ "primitive": "number"
7049
+ }
7050
+ }
7051
+ ],
7052
+ "symbolId": "src/watchful/watchful:OverrideAlarmThresholdProps"
7053
+ },
6795
7054
  "@rio-cloud/cdk-v2-constructs.PipelineSchedulesProps": {
6796
7055
  "assembly": "@rio-cloud/cdk-v2-constructs",
6797
7056
  "datatype": true,
@@ -8305,6 +8564,101 @@
8305
8564
  ],
8306
8565
  "symbolId": "src/pipeline/rio-backup-secrets-restore-stage:RioSecretsDeployStepProps"
8307
8566
  },
8567
+ "@rio-cloud/cdk-v2-constructs.ShouldOverrideThresholdProps": {
8568
+ "assembly": "@rio-cloud/cdk-v2-constructs",
8569
+ "datatype": true,
8570
+ "docs": {
8571
+ "stability": "stable"
8572
+ },
8573
+ "fqn": "@rio-cloud/cdk-v2-constructs.ShouldOverrideThresholdProps",
8574
+ "kind": "interface",
8575
+ "locationInModule": {
8576
+ "filename": "src/watchful/watchful.ts",
8577
+ "line": 73
8578
+ },
8579
+ "name": "ShouldOverrideThresholdProps",
8580
+ "properties": [
8581
+ {
8582
+ "abstract": true,
8583
+ "docs": {
8584
+ "stability": "stable"
8585
+ },
8586
+ "immutable": true,
8587
+ "locationInModule": {
8588
+ "filename": "src/watchful/watchful.ts",
8589
+ "line": 74
8590
+ },
8591
+ "name": "watchfulMonitorScope",
8592
+ "type": {
8593
+ "fqn": "constructs.Construct"
8594
+ }
8595
+ },
8596
+ {
8597
+ "abstract": true,
8598
+ "docs": {
8599
+ "stability": "stable"
8600
+ },
8601
+ "immutable": true,
8602
+ "locationInModule": {
8603
+ "filename": "src/watchful/watchful.ts",
8604
+ "line": 75
8605
+ },
8606
+ "name": "watchfulNodeId",
8607
+ "type": {
8608
+ "primitive": "string"
8609
+ }
8610
+ }
8611
+ ],
8612
+ "symbolId": "src/watchful/watchful:ShouldOverrideThresholdProps"
8613
+ },
8614
+ "@rio-cloud/cdk-v2-constructs.ShouldOverrideThresholdReturnProps": {
8615
+ "assembly": "@rio-cloud/cdk-v2-constructs",
8616
+ "datatype": true,
8617
+ "docs": {
8618
+ "stability": "stable"
8619
+ },
8620
+ "fqn": "@rio-cloud/cdk-v2-constructs.ShouldOverrideThresholdReturnProps",
8621
+ "kind": "interface",
8622
+ "locationInModule": {
8623
+ "filename": "src/watchful/watchful.ts",
8624
+ "line": 78
8625
+ },
8626
+ "name": "ShouldOverrideThresholdReturnProps",
8627
+ "properties": [
8628
+ {
8629
+ "abstract": true,
8630
+ "docs": {
8631
+ "stability": "stable"
8632
+ },
8633
+ "immutable": true,
8634
+ "locationInModule": {
8635
+ "filename": "src/watchful/watchful.ts",
8636
+ "line": 79
8637
+ },
8638
+ "name": "shouldOverrideThreshold",
8639
+ "type": {
8640
+ "primitive": "boolean"
8641
+ }
8642
+ },
8643
+ {
8644
+ "abstract": true,
8645
+ "docs": {
8646
+ "stability": "stable"
8647
+ },
8648
+ "immutable": true,
8649
+ "locationInModule": {
8650
+ "filename": "src/watchful/watchful.ts",
8651
+ "line": 80
8652
+ },
8653
+ "name": "threshold",
8654
+ "optional": true,
8655
+ "type": {
8656
+ "primitive": "number"
8657
+ }
8658
+ }
8659
+ ],
8660
+ "symbolId": "src/watchful/watchful:ShouldOverrideThresholdReturnProps"
8661
+ },
8308
8662
  "@rio-cloud/cdk-v2-constructs.TriggerKey": {
8309
8663
  "assembly": "@rio-cloud/cdk-v2-constructs",
8310
8664
  "docs": {
@@ -8470,7 +8824,7 @@
8470
8824
  },
8471
8825
  "locationInModule": {
8472
8826
  "filename": "src/watchful/alb.ts",
8473
- "line": 53
8827
+ "line": 54
8474
8828
  },
8475
8829
  "parameters": [
8476
8830
  {
@@ -8496,7 +8850,7 @@
8496
8850
  "kind": "class",
8497
8851
  "locationInModule": {
8498
8852
  "filename": "src/watchful/alb.ts",
8499
- "line": 49
8853
+ "line": 50
8500
8854
  },
8501
8855
  "name": "WatchApplicationLoadBalancer",
8502
8856
  "symbolId": "src/watchful/alb:WatchApplicationLoadBalancer"
@@ -8512,7 +8866,7 @@
8512
8866
  "kind": "interface",
8513
8867
  "locationInModule": {
8514
8868
  "filename": "src/watchful/alb.ts",
8515
- "line": 11
8869
+ "line": 12
8516
8870
  },
8517
8871
  "name": "WatchApplicationLoadBalancerOptions",
8518
8872
  "properties": [
@@ -8526,7 +8880,7 @@
8526
8880
  "immutable": true,
8527
8881
  "locationInModule": {
8528
8882
  "filename": "src/watchful/alb.ts",
8529
- "line": 24
8883
+ "line": 25
8530
8884
  },
8531
8885
  "name": "http5xxPerMinuteThreshold",
8532
8886
  "optional": true,
@@ -8544,7 +8898,7 @@
8544
8898
  "immutable": true,
8545
8899
  "locationInModule": {
8546
8900
  "filename": "src/watchful/alb.ts",
8547
- "line": 17
8901
+ "line": 18
8548
8902
  },
8549
8903
  "name": "rejectedConnectionPerMinuteThreshold",
8550
8904
  "optional": true,
@@ -8569,7 +8923,7 @@
8569
8923
  "kind": "interface",
8570
8924
  "locationInModule": {
8571
8925
  "filename": "src/watchful/alb.ts",
8572
- "line": 30
8926
+ "line": 31
8573
8927
  },
8574
8928
  "name": "WatchApplicationLoadBalancerProps",
8575
8929
  "properties": [
@@ -8583,7 +8937,7 @@
8583
8937
  "immutable": true,
8584
8938
  "locationInModule": {
8585
8939
  "filename": "src/watchful/alb.ts",
8586
- "line": 40
8940
+ "line": 41
8587
8941
  },
8588
8942
  "name": "alb",
8589
8943
  "type": {
@@ -8600,7 +8954,7 @@
8600
8954
  "immutable": true,
8601
8955
  "locationInModule": {
8602
8956
  "filename": "src/watchful/alb.ts",
8603
- "line": 34
8957
+ "line": 35
8604
8958
  },
8605
8959
  "name": "watchful",
8606
8960
  "type": {
@@ -8625,7 +8979,7 @@
8625
8979
  },
8626
8980
  "locationInModule": {
8627
8981
  "filename": "src/watchful/targetgroup.ts",
8628
- "line": 53
8982
+ "line": 54
8629
8983
  },
8630
8984
  "parameters": [
8631
8985
  {
@@ -8651,7 +9005,7 @@
8651
9005
  "kind": "class",
8652
9006
  "locationInModule": {
8653
9007
  "filename": "src/watchful/targetgroup.ts",
8654
- "line": 49
9008
+ "line": 50
8655
9009
  },
8656
9010
  "name": "WatchApplicationTargetGroup",
8657
9011
  "symbolId": "src/watchful/targetgroup:WatchApplicationTargetGroup"
@@ -8667,7 +9021,7 @@
8667
9021
  "kind": "interface",
8668
9022
  "locationInModule": {
8669
9023
  "filename": "src/watchful/targetgroup.ts",
8670
- "line": 11
9024
+ "line": 12
8671
9025
  },
8672
9026
  "name": "WatchApplicationTargetGroupOptions",
8673
9027
  "properties": [
@@ -8681,7 +9035,7 @@
8681
9035
  "immutable": true,
8682
9036
  "locationInModule": {
8683
9037
  "filename": "src/watchful/targetgroup.ts",
8684
- "line": 24
9038
+ "line": 25
8685
9039
  },
8686
9040
  "name": "http5xxPerMinuteThreshold",
8687
9041
  "optional": true,
@@ -8699,7 +9053,7 @@
8699
9053
  "immutable": true,
8700
9054
  "locationInModule": {
8701
9055
  "filename": "src/watchful/targetgroup.ts",
8702
- "line": 17
9056
+ "line": 18
8703
9057
  },
8704
9058
  "name": "targetConnectionErrorPerMinuteThreshold",
8705
9059
  "optional": true,
@@ -8724,7 +9078,7 @@
8724
9078
  "kind": "interface",
8725
9079
  "locationInModule": {
8726
9080
  "filename": "src/watchful/targetgroup.ts",
8727
- "line": 30
9081
+ "line": 31
8728
9082
  },
8729
9083
  "name": "WatchApplicationTargetGroupProps",
8730
9084
  "properties": [
@@ -8738,7 +9092,7 @@
8738
9092
  "immutable": true,
8739
9093
  "locationInModule": {
8740
9094
  "filename": "src/watchful/targetgroup.ts",
8741
- "line": 40
9095
+ "line": 41
8742
9096
  },
8743
9097
  "name": "atg",
8744
9098
  "type": {
@@ -8755,7 +9109,7 @@
8755
9109
  "immutable": true,
8756
9110
  "locationInModule": {
8757
9111
  "filename": "src/watchful/targetgroup.ts",
8758
- "line": 34
9112
+ "line": 35
8759
9113
  },
8760
9114
  "name": "watchful",
8761
9115
  "type": {
@@ -8780,7 +9134,7 @@
8780
9134
  },
8781
9135
  "locationInModule": {
8782
9136
  "filename": "src/watchful/cloudfront.ts",
8783
- "line": 56
9137
+ "line": 58
8784
9138
  },
8785
9139
  "parameters": [
8786
9140
  {
@@ -8806,7 +9160,7 @@
8806
9160
  "kind": "class",
8807
9161
  "locationInModule": {
8808
9162
  "filename": "src/watchful/cloudfront.ts",
8809
- "line": 52
9163
+ "line": 54
8810
9164
  },
8811
9165
  "name": "WatchCloudfrontDistribution",
8812
9166
  "symbolId": "src/watchful/cloudfront:WatchCloudfrontDistribution"
@@ -8822,7 +9176,7 @@
8822
9176
  "kind": "interface",
8823
9177
  "locationInModule": {
8824
9178
  "filename": "src/watchful/cloudfront.ts",
8825
- "line": 11
9179
+ "line": 12
8826
9180
  },
8827
9181
  "name": "WatchCloudfrontDistributionOptions",
8828
9182
  "properties": [
@@ -8837,7 +9191,7 @@
8837
9191
  "immutable": true,
8838
9192
  "locationInModule": {
8839
9193
  "filename": "src/watchful/cloudfront.ts",
8840
- "line": 27
9194
+ "line": 28
8841
9195
  },
8842
9196
  "name": "cacheHitPercent",
8843
9197
  "optional": true,
@@ -8856,7 +9210,7 @@
8856
9210
  "immutable": true,
8857
9211
  "locationInModule": {
8858
9212
  "filename": "src/watchful/cloudfront.ts",
8859
- "line": 17
9213
+ "line": 18
8860
9214
  },
8861
9215
  "name": "errorsPerMinuteThreshold",
8862
9216
  "optional": true,
@@ -8881,7 +9235,7 @@
8881
9235
  "kind": "interface",
8882
9236
  "locationInModule": {
8883
9237
  "filename": "src/watchful/cloudfront.ts",
8884
- "line": 33
9238
+ "line": 34
8885
9239
  },
8886
9240
  "name": "WatchCloudfrontDistributionProps",
8887
9241
  "properties": [
@@ -8895,7 +9249,7 @@
8895
9249
  "immutable": true,
8896
9250
  "locationInModule": {
8897
9251
  "filename": "src/watchful/cloudfront.ts",
8898
- "line": 43
9252
+ "line": 44
8899
9253
  },
8900
9254
  "name": "cf",
8901
9255
  "type": {
@@ -8912,7 +9266,7 @@
8912
9266
  "immutable": true,
8913
9267
  "locationInModule": {
8914
9268
  "filename": "src/watchful/cloudfront.ts",
8915
- "line": 37
9269
+ "line": 38
8916
9270
  },
8917
9271
  "name": "watchful",
8918
9272
  "type": {
@@ -8937,7 +9291,7 @@
8937
9291
  },
8938
9292
  "locationInModule": {
8939
9293
  "filename": "src/watchful/rds.ts",
8940
- "line": 53
9294
+ "line": 54
8941
9295
  },
8942
9296
  "parameters": [
8943
9297
  {
@@ -8963,7 +9317,7 @@
8963
9317
  "kind": "class",
8964
9318
  "locationInModule": {
8965
9319
  "filename": "src/watchful/rds.ts",
8966
- "line": 49
9320
+ "line": 50
8967
9321
  },
8968
9322
  "name": "WatchDatabaseCluster",
8969
9323
  "symbolId": "src/watchful/rds:WatchDatabaseCluster"
@@ -8979,7 +9333,7 @@
8979
9333
  "kind": "interface",
8980
9334
  "locationInModule": {
8981
9335
  "filename": "src/watchful/rds.ts",
8982
- "line": 11
9336
+ "line": 12
8983
9337
  },
8984
9338
  "name": "WatchDatabaseClusterOptions",
8985
9339
  "properties": [
@@ -8993,7 +9347,7 @@
8993
9347
  "immutable": true,
8994
9348
  "locationInModule": {
8995
9349
  "filename": "src/watchful/rds.ts",
8996
- "line": 17
9350
+ "line": 18
8997
9351
  },
8998
9352
  "name": "cpuUtilizationThreshold",
8999
9353
  "optional": true,
@@ -9011,7 +9365,7 @@
9011
9365
  "immutable": true,
9012
9366
  "locationInModule": {
9013
9367
  "filename": "src/watchful/rds.ts",
9014
- "line": 24
9368
+ "line": 25
9015
9369
  },
9016
9370
  "name": "freeableMemoryThreshold",
9017
9371
  "optional": true,
@@ -9036,7 +9390,7 @@
9036
9390
  "kind": "interface",
9037
9391
  "locationInModule": {
9038
9392
  "filename": "src/watchful/rds.ts",
9039
- "line": 30
9393
+ "line": 31
9040
9394
  },
9041
9395
  "name": "WatchDatabaseClusterProps",
9042
9396
  "properties": [
@@ -9050,7 +9404,7 @@
9050
9404
  "immutable": true,
9051
9405
  "locationInModule": {
9052
9406
  "filename": "src/watchful/rds.ts",
9053
- "line": 40
9407
+ "line": 41
9054
9408
  },
9055
9409
  "name": "databaseCluster",
9056
9410
  "type": {
@@ -9067,7 +9421,7 @@
9067
9421
  "immutable": true,
9068
9422
  "locationInModule": {
9069
9423
  "filename": "src/watchful/rds.ts",
9070
- "line": 34
9424
+ "line": 35
9071
9425
  },
9072
9426
  "name": "watchful",
9073
9427
  "type": {
@@ -9092,7 +9446,7 @@
9092
9446
  },
9093
9447
  "locationInModule": {
9094
9448
  "filename": "src/watchful/docdb.ts",
9095
- "line": 65
9449
+ "line": 66
9096
9450
  },
9097
9451
  "parameters": [
9098
9452
  {
@@ -9118,7 +9472,7 @@
9118
9472
  "kind": "class",
9119
9473
  "locationInModule": {
9120
9474
  "filename": "src/watchful/docdb.ts",
9121
- "line": 61
9475
+ "line": 62
9122
9476
  },
9123
9477
  "name": "WatchDocDbCluster",
9124
9478
  "symbolId": "src/watchful/docdb:WatchDocDbCluster"
@@ -9134,7 +9488,7 @@
9134
9488
  "kind": "interface",
9135
9489
  "locationInModule": {
9136
9490
  "filename": "src/watchful/docdb.ts",
9137
- "line": 11
9491
+ "line": 12
9138
9492
  },
9139
9493
  "name": "WatchDocDbClusterOptions",
9140
9494
  "properties": [
@@ -9148,7 +9502,7 @@
9148
9502
  "immutable": true,
9149
9503
  "locationInModule": {
9150
9504
  "filename": "src/watchful/docdb.ts",
9151
- "line": 17
9505
+ "line": 18
9152
9506
  },
9153
9507
  "name": "cpuUtilizationThreshold",
9154
9508
  "optional": true,
@@ -9166,7 +9520,7 @@
9166
9520
  "immutable": true,
9167
9521
  "locationInModule": {
9168
9522
  "filename": "src/watchful/docdb.ts",
9169
- "line": 23
9523
+ "line": 24
9170
9524
  },
9171
9525
  "name": "freeableMemoryThresholdInByte",
9172
9526
  "optional": true,
@@ -9184,7 +9538,7 @@
9184
9538
  "immutable": true,
9185
9539
  "locationInModule": {
9186
9540
  "filename": "src/watchful/docdb.ts",
9187
- "line": 35
9541
+ "line": 36
9188
9542
  },
9189
9543
  "name": "freeLocalStorageInByte",
9190
9544
  "optional": true,
@@ -9202,7 +9556,7 @@
9202
9556
  "immutable": true,
9203
9557
  "locationInModule": {
9204
9558
  "filename": "src/watchful/docdb.ts",
9205
- "line": 29
9559
+ "line": 30
9206
9560
  },
9207
9561
  "name": "swapUsageThresholdInByte",
9208
9562
  "optional": true,
@@ -9227,7 +9581,7 @@
9227
9581
  "kind": "interface",
9228
9582
  "locationInModule": {
9229
9583
  "filename": "src/watchful/docdb.ts",
9230
- "line": 41
9584
+ "line": 42
9231
9585
  },
9232
9586
  "name": "WatchDocDbClusterProps",
9233
9587
  "properties": [
@@ -9241,7 +9595,7 @@
9241
9595
  "immutable": true,
9242
9596
  "locationInModule": {
9243
9597
  "filename": "src/watchful/docdb.ts",
9244
- "line": 51
9598
+ "line": 52
9245
9599
  },
9246
9600
  "name": "docDb",
9247
9601
  "type": {
@@ -9258,7 +9612,7 @@
9258
9612
  "immutable": true,
9259
9613
  "locationInModule": {
9260
9614
  "filename": "src/watchful/docdb.ts",
9261
- "line": 45
9615
+ "line": 46
9262
9616
  },
9263
9617
  "name": "watchful",
9264
9618
  "type": {
@@ -9283,7 +9637,7 @@
9283
9637
  },
9284
9638
  "locationInModule": {
9285
9639
  "filename": "src/watchful/dynamodb.ts",
9286
- "line": 72
9640
+ "line": 73
9287
9641
  },
9288
9642
  "parameters": [
9289
9643
  {
@@ -9309,7 +9663,7 @@
9309
9663
  "kind": "class",
9310
9664
  "locationInModule": {
9311
9665
  "filename": "src/watchful/dynamodb.ts",
9312
- "line": 68
9666
+ "line": 69
9313
9667
  },
9314
9668
  "name": "WatchDynamoDbTable",
9315
9669
  "symbolId": "src/watchful/dynamodb:WatchDynamoDbTable"
@@ -9325,7 +9679,7 @@
9325
9679
  "kind": "interface",
9326
9680
  "locationInModule": {
9327
9681
  "filename": "src/watchful/dynamodb.ts",
9328
- "line": 9
9682
+ "line": 10
9329
9683
  },
9330
9684
  "name": "WatchDynamoDbTableOptions",
9331
9685
  "properties": [
@@ -9339,7 +9693,7 @@
9339
9693
  "immutable": true,
9340
9694
  "locationInModule": {
9341
9695
  "filename": "src/watchful/dynamodb.ts",
9342
- "line": 15
9696
+ "line": 16
9343
9697
  },
9344
9698
  "name": "readThrottleEventsThreshold",
9345
9699
  "optional": true,
@@ -9357,7 +9711,7 @@
9357
9711
  "immutable": true,
9358
9712
  "locationInModule": {
9359
9713
  "filename": "src/watchful/dynamodb.ts",
9360
- "line": 40
9714
+ "line": 41
9361
9715
  },
9362
9716
  "name": "systemErrorsThreshold",
9363
9717
  "optional": true,
@@ -9375,7 +9729,7 @@
9375
9729
  "immutable": true,
9376
9730
  "locationInModule": {
9377
9731
  "filename": "src/watchful/dynamodb.ts",
9378
- "line": 27
9732
+ "line": 28
9379
9733
  },
9380
9734
  "name": "throttledRequestsEventsThreshold",
9381
9735
  "optional": true,
@@ -9393,7 +9747,7 @@
9393
9747
  "immutable": true,
9394
9748
  "locationInModule": {
9395
9749
  "filename": "src/watchful/dynamodb.ts",
9396
- "line": 33
9750
+ "line": 34
9397
9751
  },
9398
9752
  "name": "userErrorsThreshold",
9399
9753
  "optional": true,
@@ -9411,7 +9765,7 @@
9411
9765
  "immutable": true,
9412
9766
  "locationInModule": {
9413
9767
  "filename": "src/watchful/dynamodb.ts",
9414
- "line": 21
9768
+ "line": 22
9415
9769
  },
9416
9770
  "name": "writeThrottleEventsThreshold",
9417
9771
  "optional": true,
@@ -9436,7 +9790,7 @@
9436
9790
  "kind": "interface",
9437
9791
  "locationInModule": {
9438
9792
  "filename": "src/watchful/dynamodb.ts",
9439
- "line": 46
9793
+ "line": 47
9440
9794
  },
9441
9795
  "name": "WatchDynamoDbTableProps",
9442
9796
  "properties": [
@@ -9450,7 +9804,7 @@
9450
9804
  "immutable": true,
9451
9805
  "locationInModule": {
9452
9806
  "filename": "src/watchful/dynamodb.ts",
9453
- "line": 56
9807
+ "line": 57
9454
9808
  },
9455
9809
  "name": "dynamoDbTable",
9456
9810
  "type": {
@@ -9467,7 +9821,7 @@
9467
9821
  "immutable": true,
9468
9822
  "locationInModule": {
9469
9823
  "filename": "src/watchful/dynamodb.ts",
9470
- "line": 50
9824
+ "line": 51
9471
9825
  },
9472
9826
  "name": "watchful",
9473
9827
  "type": {
@@ -9647,7 +10001,7 @@
9647
10001
  },
9648
10002
  "locationInModule": {
9649
10003
  "filename": "src/watchful/lambda.ts",
9650
- "line": 68
10004
+ "line": 69
9651
10005
  },
9652
10006
  "parameters": [
9653
10007
  {
@@ -9673,7 +10027,7 @@
9673
10027
  "kind": "class",
9674
10028
  "locationInModule": {
9675
10029
  "filename": "src/watchful/lambda.ts",
9676
- "line": 64
10030
+ "line": 65
9677
10031
  },
9678
10032
  "name": "WatchLambdaFunction",
9679
10033
  "symbolId": "src/watchful/lambda:WatchLambdaFunction"
@@ -9689,7 +10043,7 @@
9689
10043
  "kind": "interface",
9690
10044
  "locationInModule": {
9691
10045
  "filename": "src/watchful/lambda.ts",
9692
- "line": 14
10046
+ "line": 15
9693
10047
  },
9694
10048
  "name": "WatchLambdaFunctionOptions",
9695
10049
  "properties": [
@@ -9704,7 +10058,7 @@
9704
10058
  "immutable": true,
9705
10059
  "locationInModule": {
9706
10060
  "filename": "src/watchful/lambda.ts",
9707
- "line": 38
10061
+ "line": 39
9708
10062
  },
9709
10063
  "name": "durationThresholdPercent",
9710
10064
  "optional": true,
@@ -9723,7 +10077,7 @@
9723
10077
  "immutable": true,
9724
10078
  "locationInModule": {
9725
10079
  "filename": "src/watchful/lambda.ts",
9726
- "line": 20
10080
+ "line": 21
9727
10081
  },
9728
10082
  "name": "errorsPerMinuteThreshold",
9729
10083
  "optional": true,
@@ -9741,7 +10095,7 @@
9741
10095
  "immutable": true,
9742
10096
  "locationInModule": {
9743
10097
  "filename": "src/watchful/lambda.ts",
9744
- "line": 27
10098
+ "line": 28
9745
10099
  },
9746
10100
  "name": "throttlesPerMinuteThreshold",
9747
10101
  "optional": true,
@@ -9766,7 +10120,7 @@
9766
10120
  "kind": "interface",
9767
10121
  "locationInModule": {
9768
10122
  "filename": "src/watchful/lambda.ts",
9769
- "line": 44
10123
+ "line": 45
9770
10124
  },
9771
10125
  "name": "WatchLambdaFunctionProps",
9772
10126
  "properties": [
@@ -9780,7 +10134,7 @@
9780
10134
  "immutable": true,
9781
10135
  "locationInModule": {
9782
10136
  "filename": "src/watchful/lambda.ts",
9783
- "line": 54
10137
+ "line": 55
9784
10138
  },
9785
10139
  "name": "fn",
9786
10140
  "type": {
@@ -9797,7 +10151,7 @@
9797
10151
  "immutable": true,
9798
10152
  "locationInModule": {
9799
10153
  "filename": "src/watchful/lambda.ts",
9800
- "line": 48
10154
+ "line": 49
9801
10155
  },
9802
10156
  "name": "watchful",
9803
10157
  "type": {
@@ -9822,7 +10176,7 @@
9822
10176
  },
9823
10177
  "locationInModule": {
9824
10178
  "filename": "src/watchful/watchful.ts",
9825
- "line": 204
10179
+ "line": 256
9826
10180
  },
9827
10181
  "parameters": [
9828
10182
  {
@@ -9849,7 +10203,7 @@
9849
10203
  "kind": "class",
9850
10204
  "locationInModule": {
9851
10205
  "filename": "src/watchful/watchful.ts",
9852
- "line": 198
10206
+ "line": 250
9853
10207
  },
9854
10208
  "methods": [
9855
10209
  {
@@ -9859,7 +10213,7 @@
9859
10213
  },
9860
10214
  "locationInModule": {
9861
10215
  "filename": "src/watchful/watchful.ts",
9862
- "line": 229
10216
+ "line": 281
9863
10217
  },
9864
10218
  "name": "createAlarm",
9865
10219
  "overrides": "@rio-cloud/cdk-v2-constructs.AbstractWatchful",
@@ -9873,7 +10227,7 @@
9873
10227
  {
9874
10228
  "name": "id",
9875
10229
  "type": {
9876
- "primitive": "string"
10230
+ "fqn": "@rio-cloud/cdk-v2-constructs.MonitorType"
9877
10231
  }
9878
10232
  },
9879
10233
  {
@@ -9894,7 +10248,7 @@
9894
10248
  },
9895
10249
  "locationInModule": {
9896
10250
  "filename": "src/watchful/watchful.ts",
9897
- "line": 262
10251
+ "line": 315
9898
10252
  },
9899
10253
  "name": "createLogAlarm",
9900
10254
  "overrides": "@rio-cloud/cdk-v2-constructs.AbstractWatchful",
@@ -9908,7 +10262,7 @@
9908
10262
  {
9909
10263
  "name": "id",
9910
10264
  "type": {
9911
- "primitive": "string"
10265
+ "fqn": "@rio-cloud/cdk-v2-constructs.MonitorType"
9912
10266
  }
9913
10267
  },
9914
10268
  {
@@ -9926,7 +10280,7 @@
9926
10280
  },
9927
10281
  "locationInModule": {
9928
10282
  "filename": "src/watchful/watchful.ts",
9929
- "line": 286
10283
+ "line": 339
9930
10284
  },
9931
10285
  "name": "watchScope",
9932
10286
  "parameters": [
@@ -10014,7 +10368,7 @@
10014
10368
  "kind": "interface",
10015
10369
  "locationInModule": {
10016
10370
  "filename": "src/watchful/watchful.ts",
10017
- "line": 165
10371
+ "line": 217
10018
10372
  },
10019
10373
  "name": "WatchfulProps",
10020
10374
  "properties": [
@@ -10028,7 +10382,7 @@
10028
10382
  "immutable": true,
10029
10383
  "locationInModule": {
10030
10384
  "filename": "src/watchful/watchful.ts",
10031
- "line": 171
10385
+ "line": 223
10032
10386
  },
10033
10387
  "name": "alarmSns",
10034
10388
  "optional": true,
@@ -10046,7 +10400,7 @@
10046
10400
  "immutable": true,
10047
10401
  "locationInModule": {
10048
10402
  "filename": "src/watchful/watchful.ts",
10049
- "line": 185
10403
+ "line": 237
10050
10404
  },
10051
10405
  "name": "dataDogMonitorServiceName",
10052
10406
  "optional": true,
@@ -10064,7 +10418,7 @@
10064
10418
  "immutable": true,
10065
10419
  "locationInModule": {
10066
10420
  "filename": "src/watchful/watchful.ts",
10067
- "line": 178
10421
+ "line": 230
10068
10422
  },
10069
10423
  "name": "dataDogMonitorServiceToken",
10070
10424
  "optional": true,
@@ -10082,7 +10436,7 @@
10082
10436
  "immutable": true,
10083
10437
  "locationInModule": {
10084
10438
  "filename": "src/watchful/watchful.ts",
10085
- "line": 192
10439
+ "line": 244
10086
10440
  },
10087
10441
  "name": "dataDogOpsGenieIntegrationName",
10088
10442
  "optional": true,
@@ -10565,7 +10919,7 @@
10565
10919
  "kind": "interface",
10566
10920
  "locationInModule": {
10567
10921
  "filename": "src/datadogv2/datadog-monitor.ts",
10568
- "line": 113
10922
+ "line": 125
10569
10923
  },
10570
10924
  "name": "CfnDatadogMonitorOptions",
10571
10925
  "namespace": "datadogv2",
@@ -10579,7 +10933,7 @@
10579
10933
  "immutable": true,
10580
10934
  "locationInModule": {
10581
10935
  "filename": "src/datadogv2/datadog-monitor.ts",
10582
- "line": 118
10936
+ "line": 130
10583
10937
  },
10584
10938
  "name": "enableLogsSample",
10585
10939
  "optional": true,
@@ -10596,7 +10950,7 @@
10596
10950
  "immutable": true,
10597
10951
  "locationInModule": {
10598
10952
  "filename": "src/datadogv2/datadog-monitor.ts",
10599
- "line": 123
10953
+ "line": 135
10600
10954
  },
10601
10955
  "name": "escalationMessage",
10602
10956
  "optional": true,
@@ -10614,7 +10968,7 @@
10614
10968
  "immutable": true,
10615
10969
  "locationInModule": {
10616
10970
  "filename": "src/datadogv2/datadog-monitor.ts",
10617
- "line": 130
10971
+ "line": 142
10618
10972
  },
10619
10973
  "name": "evaluationDelay",
10620
10974
  "optional": true,
@@ -10632,7 +10986,7 @@
10632
10986
  "immutable": true,
10633
10987
  "locationInModule": {
10634
10988
  "filename": "src/datadogv2/datadog-monitor.ts",
10635
- "line": 137
10989
+ "line": 149
10636
10990
  },
10637
10991
  "name": "includeTags",
10638
10992
  "optional": true,
@@ -10649,7 +11003,7 @@
10649
11003
  "immutable": true,
10650
11004
  "locationInModule": {
10651
11005
  "filename": "src/datadogv2/datadog-monitor.ts",
10652
- "line": 142
11006
+ "line": 154
10653
11007
  },
10654
11008
  "name": "locked",
10655
11009
  "optional": true,
@@ -10666,7 +11020,7 @@
10666
11020
  "immutable": true,
10667
11021
  "locationInModule": {
10668
11022
  "filename": "src/datadogv2/datadog-monitor.ts",
10669
- "line": 210
11023
+ "line": 222
10670
11024
  },
10671
11025
  "name": "minFailureDuration",
10672
11026
  "optional": true,
@@ -10683,7 +11037,7 @@
10683
11037
  "immutable": true,
10684
11038
  "locationInModule": {
10685
11039
  "filename": "src/datadogv2/datadog-monitor.ts",
10686
- "line": 147
11040
+ "line": 159
10687
11041
  },
10688
11042
  "name": "minLocationFailed",
10689
11043
  "optional": true,
@@ -10691,6 +11045,24 @@
10691
11045
  "primitive": "number"
10692
11046
  }
10693
11047
  },
11048
+ {
11049
+ "abstract": true,
11050
+ "docs": {
11051
+ "default": "{@link MonitorNotificationPreset.SHOW_ALL}",
11052
+ "stability": "stable",
11053
+ "summary": "Controls which information should be added/lett out from the notification."
11054
+ },
11055
+ "immutable": true,
11056
+ "locationInModule": {
11057
+ "filename": "src/datadogv2/datadog-monitor.ts",
11058
+ "line": 229
11059
+ },
11060
+ "name": "monitorNotificationPresetName",
11061
+ "optional": true,
11062
+ "type": {
11063
+ "fqn": "@rio-cloud/cdk-v2-constructs.datadogv2.MonitorNotificationPreset"
11064
+ }
11065
+ },
10694
11066
  {
10695
11067
  "abstract": true,
10696
11068
  "docs": {
@@ -10701,7 +11073,7 @@
10701
11073
  "immutable": true,
10702
11074
  "locationInModule": {
10703
11075
  "filename": "src/datadogv2/datadog-monitor.ts",
10704
- "line": 215
11076
+ "line": 234
10705
11077
  },
10706
11078
  "name": "newGroupDelay",
10707
11079
  "optional": true,
@@ -10718,7 +11090,7 @@
10718
11090
  "immutable": true,
10719
11091
  "locationInModule": {
10720
11092
  "filename": "src/datadogv2/datadog-monitor.ts",
10721
- "line": 152
11093
+ "line": 164
10722
11094
  },
10723
11095
  "name": "newHostDelay",
10724
11096
  "optional": true,
@@ -10735,7 +11107,7 @@
10735
11107
  "immutable": true,
10736
11108
  "locationInModule": {
10737
11109
  "filename": "src/datadogv2/datadog-monitor.ts",
10738
- "line": 157
11110
+ "line": 169
10739
11111
  },
10740
11112
  "name": "noDataTimeframe",
10741
11113
  "optional": true,
@@ -10752,7 +11124,7 @@
10752
11124
  "immutable": true,
10753
11125
  "locationInModule": {
10754
11126
  "filename": "src/datadogv2/datadog-monitor.ts",
10755
- "line": 162
11127
+ "line": 174
10756
11128
  },
10757
11129
  "name": "notifyAudit",
10758
11130
  "optional": true,
@@ -10770,7 +11142,7 @@
10770
11142
  "immutable": true,
10771
11143
  "locationInModule": {
10772
11144
  "filename": "src/datadogv2/datadog-monitor.ts",
10773
- "line": 169
11145
+ "line": 181
10774
11146
  },
10775
11147
  "name": "notifyNoData",
10776
11148
  "optional": true,
@@ -10787,7 +11159,7 @@
10787
11159
  "immutable": true,
10788
11160
  "locationInModule": {
10789
11161
  "filename": "src/datadogv2/datadog-monitor.ts",
10790
- "line": 174
11162
+ "line": 186
10791
11163
  },
10792
11164
  "name": "renotifyInterval",
10793
11165
  "optional": true,
@@ -10804,7 +11176,7 @@
10804
11176
  "immutable": true,
10805
11177
  "locationInModule": {
10806
11178
  "filename": "src/datadogv2/datadog-monitor.ts",
10807
- "line": 200
11179
+ "line": 212
10808
11180
  },
10809
11181
  "name": "renotifyOccurrences",
10810
11182
  "optional": true,
@@ -10821,7 +11193,7 @@
10821
11193
  "immutable": true,
10822
11194
  "locationInModule": {
10823
11195
  "filename": "src/datadogv2/datadog-monitor.ts",
10824
- "line": 205
11196
+ "line": 217
10825
11197
  },
10826
11198
  "name": "renotifyStatuses",
10827
11199
  "optional": true,
@@ -10839,7 +11211,7 @@
10839
11211
  "immutable": true,
10840
11212
  "locationInModule": {
10841
11213
  "filename": "src/datadogv2/datadog-monitor.ts",
10842
- "line": 181
11214
+ "line": 193
10843
11215
  },
10844
11216
  "name": "requireFullWindow",
10845
11217
  "optional": true,
@@ -10856,7 +11228,7 @@
10856
11228
  "immutable": true,
10857
11229
  "locationInModule": {
10858
11230
  "filename": "src/datadogv2/datadog-monitor.ts",
10859
- "line": 186
11231
+ "line": 198
10860
11232
  },
10861
11233
  "name": "syntheticsCheckID",
10862
11234
  "optional": true,
@@ -10872,7 +11244,7 @@
10872
11244
  "immutable": true,
10873
11245
  "locationInModule": {
10874
11246
  "filename": "src/datadogv2/datadog-monitor.ts",
10875
- "line": 188
11247
+ "line": 200
10876
11248
  },
10877
11249
  "name": "thresholds",
10878
11250
  "optional": true,
@@ -10888,7 +11260,7 @@
10888
11260
  "immutable": true,
10889
11261
  "locationInModule": {
10890
11262
  "filename": "src/datadogv2/datadog-monitor.ts",
10891
- "line": 190
11263
+ "line": 202
10892
11264
  },
10893
11265
  "name": "thresholdWindows",
10894
11266
  "optional": true,
@@ -10905,7 +11277,7 @@
10905
11277
  "immutable": true,
10906
11278
  "locationInModule": {
10907
11279
  "filename": "src/datadogv2/datadog-monitor.ts",
10908
- "line": 195
11280
+ "line": 207
10909
11281
  },
10910
11282
  "name": "timeoutH",
10911
11283
  "optional": true,
@@ -10922,7 +11294,7 @@
10922
11294
  "immutable": true,
10923
11295
  "locationInModule": {
10924
11296
  "filename": "src/datadogv2/datadog-monitor.ts",
10925
- "line": 220
11297
+ "line": 239
10926
11298
  },
10927
11299
  "name": "variables",
10928
11300
  "optional": true,
@@ -10948,7 +11320,7 @@
10948
11320
  "kind": "interface",
10949
11321
  "locationInModule": {
10950
11322
  "filename": "src/datadogv2/datadog-monitor.ts",
10951
- "line": 251
11323
+ "line": 270
10952
11324
  },
10953
11325
  "name": "CfnDatadogMonitorThresholdWindows",
10954
11326
  "namespace": "datadogv2",
@@ -10962,7 +11334,7 @@
10962
11334
  "immutable": true,
10963
11335
  "locationInModule": {
10964
11336
  "filename": "src/datadogv2/datadog-monitor.ts",
10965
- "line": 261
11337
+ "line": 280
10966
11338
  },
10967
11339
  "name": "recoveryWindow",
10968
11340
  "optional": true,
@@ -10979,7 +11351,7 @@
10979
11351
  "immutable": true,
10980
11352
  "locationInModule": {
10981
11353
  "filename": "src/datadogv2/datadog-monitor.ts",
10982
- "line": 256
11354
+ "line": 275
10983
11355
  },
10984
11356
  "name": "triggerWindow",
10985
11357
  "optional": true,
@@ -11000,7 +11372,7 @@
11000
11372
  "kind": "interface",
11001
11373
  "locationInModule": {
11002
11374
  "filename": "src/datadogv2/datadog-monitor.ts",
11003
- "line": 223
11375
+ "line": 242
11004
11376
  },
11005
11377
  "name": "CfnDatadogMonitorThresholds",
11006
11378
  "namespace": "datadogv2",
@@ -11014,7 +11386,7 @@
11014
11386
  "immutable": true,
11015
11387
  "locationInModule": {
11016
11388
  "filename": "src/datadogv2/datadog-monitor.ts",
11017
- "line": 228
11389
+ "line": 247
11018
11390
  },
11019
11391
  "name": "critical",
11020
11392
  "optional": true,
@@ -11031,7 +11403,7 @@
11031
11403
  "immutable": true,
11032
11404
  "locationInModule": {
11033
11405
  "filename": "src/datadogv2/datadog-monitor.ts",
11034
- "line": 233
11406
+ "line": 252
11035
11407
  },
11036
11408
  "name": "criticalRecovery",
11037
11409
  "optional": true,
@@ -11048,7 +11420,7 @@
11048
11420
  "immutable": true,
11049
11421
  "locationInModule": {
11050
11422
  "filename": "src/datadogv2/datadog-monitor.ts",
11051
- "line": 238
11423
+ "line": 257
11052
11424
  },
11053
11425
  "name": "ok",
11054
11426
  "optional": true,
@@ -11065,7 +11437,7 @@
11065
11437
  "immutable": true,
11066
11438
  "locationInModule": {
11067
11439
  "filename": "src/datadogv2/datadog-monitor.ts",
11068
- "line": 243
11440
+ "line": 262
11069
11441
  },
11070
11442
  "name": "warning",
11071
11443
  "optional": true,
@@ -11082,7 +11454,7 @@
11082
11454
  "immutable": true,
11083
11455
  "locationInModule": {
11084
11456
  "filename": "src/datadogv2/datadog-monitor.ts",
11085
- "line": 248
11457
+ "line": 267
11086
11458
  },
11087
11459
  "name": "warningRecovery",
11088
11460
  "optional": true,
@@ -11431,7 +11803,7 @@
11431
11803
  },
11432
11804
  "locationInModule": {
11433
11805
  "filename": "src/datadogv2/datadog-monitor.ts",
11434
- "line": 280
11806
+ "line": 299
11435
11807
  },
11436
11808
  "parameters": [
11437
11809
  {
@@ -11457,7 +11829,7 @@
11457
11829
  "kind": "class",
11458
11830
  "locationInModule": {
11459
11831
  "filename": "src/datadogv2/datadog-monitor.ts",
11460
- "line": 271
11832
+ "line": 290
11461
11833
  },
11462
11834
  "name": "DatadogMonitor",
11463
11835
  "namespace": "datadogv2",
@@ -11471,7 +11843,7 @@
11471
11843
  "immutable": true,
11472
11844
  "locationInModule": {
11473
11845
  "filename": "src/datadogv2/datadog-monitor.ts",
11474
- "line": 275
11846
+ "line": 294
11475
11847
  },
11476
11848
  "name": "DEFAULT_PRIORITY",
11477
11849
  "static": true,
@@ -11486,7 +11858,7 @@
11486
11858
  "immutable": true,
11487
11859
  "locationInModule": {
11488
11860
  "filename": "src/datadogv2/datadog-monitor.ts",
11489
- "line": 277
11861
+ "line": 296
11490
11862
  },
11491
11863
  "name": "name",
11492
11864
  "type": {
@@ -11500,7 +11872,7 @@
11500
11872
  "immutable": true,
11501
11873
  "locationInModule": {
11502
11874
  "filename": "src/datadogv2/datadog-monitor.ts",
11503
- "line": 278
11875
+ "line": 297
11504
11876
  },
11505
11877
  "name": "priority",
11506
11878
  "type": {
@@ -11913,6 +12285,49 @@
11913
12285
  "namespace": "datadogv2",
11914
12286
  "symbolId": "src/datadogv2/datadog-notification:INotification"
11915
12287
  },
12288
+ "@rio-cloud/cdk-v2-constructs.datadogv2.MonitorNotificationPreset": {
12289
+ "assembly": "@rio-cloud/cdk-v2-constructs",
12290
+ "docs": {
12291
+ "see": "https://github.com/DataDog/datadog-cloudformation-resources/blob/master/datadog-monitors-monitor-handler/datadog-monitors-monitor.json",
12292
+ "stability": "stable",
12293
+ "summary": "Well known notification presets supported by Datadog."
12294
+ },
12295
+ "fqn": "@rio-cloud/cdk-v2-constructs.datadogv2.MonitorNotificationPreset",
12296
+ "kind": "enum",
12297
+ "locationInModule": {
12298
+ "filename": "src/datadogv2/datadog-monitor.ts",
12299
+ "line": 113
12300
+ },
12301
+ "members": [
12302
+ {
12303
+ "docs": {
12304
+ "stability": "stable"
12305
+ },
12306
+ "name": "SHOW_ALL"
12307
+ },
12308
+ {
12309
+ "docs": {
12310
+ "stability": "stable"
12311
+ },
12312
+ "name": "HIDE_QUERY"
12313
+ },
12314
+ {
12315
+ "docs": {
12316
+ "stability": "stable"
12317
+ },
12318
+ "name": "HIDE_HANDLES"
12319
+ },
12320
+ {
12321
+ "docs": {
12322
+ "stability": "stable"
12323
+ },
12324
+ "name": "HIDE_ALL"
12325
+ }
12326
+ ],
12327
+ "name": "MonitorNotificationPreset",
12328
+ "namespace": "datadogv2",
12329
+ "symbolId": "src/datadogv2/datadog-monitor:MonitorNotificationPreset"
12330
+ },
11916
12331
  "@rio-cloud/cdk-v2-constructs.datadogv2.NoNotification": {
11917
12332
  "assembly": "@rio-cloud/cdk-v2-constructs",
11918
12333
  "docs": {
@@ -13987,7 +14402,7 @@
13987
14402
  {
13988
14403
  "name": "id",
13989
14404
  "type": {
13990
- "primitive": "string"
14405
+ "fqn": "@rio-cloud/cdk-v2-constructs.MonitorType"
13991
14406
  }
13992
14407
  },
13993
14408
  {
@@ -14008,7 +14423,7 @@
14008
14423
  },
14009
14424
  "locationInModule": {
14010
14425
  "filename": "src/watchfulv2/watchful.ts",
14011
- "line": 72
14426
+ "line": 74
14012
14427
  },
14013
14428
  "name": "createLogAlarm",
14014
14429
  "overrides": "@rio-cloud/cdk-v2-constructs.AbstractWatchful",
@@ -14022,7 +14437,7 @@
14022
14437
  {
14023
14438
  "name": "id",
14024
14439
  "type": {
14025
- "primitive": "string"
14440
+ "fqn": "@rio-cloud/cdk-v2-constructs.MonitorType"
14026
14441
  }
14027
14442
  },
14028
14443
  {
@@ -14040,7 +14455,7 @@
14040
14455
  },
14041
14456
  "locationInModule": {
14042
14457
  "filename": "src/watchfulv2/watchful.ts",
14043
- "line": 93
14458
+ "line": 95
14044
14459
  },
14045
14460
  "name": "watchScope",
14046
14461
  "parameters": [
@@ -14114,5 +14529,5 @@
14114
14529
  }
14115
14530
  },
14116
14531
  "version": "0.0.0",
14117
- "fingerprint": "jYunCxkVmaWE+TA+LwQLLtxsKHuar49mgsrLZuyKW3k="
14532
+ "fingerprint": "ekNnnIlHe4FJBaPdWRLzEk8OdGTeTKIl5mhBSdsvpTc="
14118
14533
  }