aws-cdk-lib 2.203.0__py3-none-any.whl → 2.204.0__py3-none-any.whl

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.

Potentially problematic release.


This version of aws-cdk-lib might be problematic. Click here for more details.

Files changed (33) hide show
  1. aws_cdk/__init__.py +38 -0
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.203.0.jsii.tgz → aws-cdk-lib@2.204.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_apigateway/__init__.py +164 -0
  5. aws_cdk/aws_apigatewayv2/__init__.py +412 -0
  6. aws_cdk/aws_certificatemanager/__init__.py +28 -0
  7. aws_cdk/aws_chatbot/__init__.py +28 -0
  8. aws_cdk/aws_cloudfront/__init__.py +92 -0
  9. aws_cdk/aws_cloudfront/experimental/__init__.py +32 -0
  10. aws_cdk/aws_cloudwatch/__init__.py +217 -23
  11. aws_cdk/aws_codebuild/__init__.py +84 -0
  12. aws_cdk/aws_dynamodb/__init__.py +316 -2
  13. aws_cdk/aws_ec2/__init__.py +94 -0
  14. aws_cdk/aws_ecs/__init__.py +52 -0
  15. aws_cdk/aws_elasticloadbalancingv2/__init__.py +724 -0
  16. aws_cdk/aws_elasticsearch/__init__.py +260 -0
  17. aws_cdk/aws_kinesis/__init__.py +324 -0
  18. aws_cdk/aws_kinesisfirehose/__init__.py +100 -0
  19. aws_cdk/aws_lambda/__init__.py +144 -0
  20. aws_cdk/aws_logs/__init__.py +58 -0
  21. aws_cdk/aws_opensearchservice/__init__.py +260 -0
  22. aws_cdk/aws_rds/__init__.py +384 -0
  23. aws_cdk/aws_scheduler/__init__.py +210 -0
  24. aws_cdk/aws_sns/__init__.py +164 -0
  25. aws_cdk/aws_sqs/__init__.py +164 -0
  26. aws_cdk/aws_stepfunctions/__init__.py +288 -0
  27. aws_cdk/aws_synthetics/__init__.py +18 -0
  28. {aws_cdk_lib-2.203.0.dist-info → aws_cdk_lib-2.204.0.dist-info}/METADATA +2 -2
  29. {aws_cdk_lib-2.203.0.dist-info → aws_cdk_lib-2.204.0.dist-info}/RECORD +33 -33
  30. {aws_cdk_lib-2.203.0.dist-info → aws_cdk_lib-2.204.0.dist-info}/LICENSE +0 -0
  31. {aws_cdk_lib-2.203.0.dist-info → aws_cdk_lib-2.204.0.dist-info}/NOTICE +0 -0
  32. {aws_cdk_lib-2.203.0.dist-info → aws_cdk_lib-2.204.0.dist-info}/WHEEL +0 -0
  33. {aws_cdk_lib-2.203.0.dist-info → aws_cdk_lib-2.204.0.dist-info}/top_level.txt +0 -0
@@ -4414,6 +4414,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4414
4414
  account: typing.Optional[builtins.str] = None,
4415
4415
  color: typing.Optional[builtins.str] = None,
4416
4416
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
4417
+ id: typing.Optional[builtins.str] = None,
4417
4418
  label: typing.Optional[builtins.str] = None,
4418
4419
  period: typing.Optional[_Duration_4839e8c3] = None,
4419
4420
  region: typing.Optional[builtins.str] = None,
@@ -4421,6 +4422,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4421
4422
  stack_region: typing.Optional[builtins.str] = None,
4422
4423
  statistic: typing.Optional[builtins.str] = None,
4423
4424
  unit: typing.Optional[_Unit_61bc6f70] = None,
4425
+ visible: typing.Optional[builtins.bool] = None,
4424
4426
  ) -> _Metric_e396a4dc:
4425
4427
  '''(deprecated) Return the given named metric for this Domain.
4426
4428
 
@@ -4428,6 +4430,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4428
4430
  :param account: Account which this metric comes from. Default: - Deployment account.
4429
4431
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
4430
4432
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
4433
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
4431
4434
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
4432
4435
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4433
4436
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -4435,6 +4438,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4435
4438
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4436
4439
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
4437
4440
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
4441
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
4438
4442
 
4439
4443
  :deprecated: use opensearchservice module instead
4440
4444
 
@@ -4449,6 +4453,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4449
4453
  account: typing.Optional[builtins.str] = None,
4450
4454
  color: typing.Optional[builtins.str] = None,
4451
4455
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
4456
+ id: typing.Optional[builtins.str] = None,
4452
4457
  label: typing.Optional[builtins.str] = None,
4453
4458
  period: typing.Optional[_Duration_4839e8c3] = None,
4454
4459
  region: typing.Optional[builtins.str] = None,
@@ -4456,12 +4461,14 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4456
4461
  stack_region: typing.Optional[builtins.str] = None,
4457
4462
  statistic: typing.Optional[builtins.str] = None,
4458
4463
  unit: typing.Optional[_Unit_61bc6f70] = None,
4464
+ visible: typing.Optional[builtins.bool] = None,
4459
4465
  ) -> _Metric_e396a4dc:
4460
4466
  '''(deprecated) Metric for automated snapshot failures.
4461
4467
 
4462
4468
  :param account: Account which this metric comes from. Default: - Deployment account.
4463
4469
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
4464
4470
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
4471
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
4465
4472
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
4466
4473
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4467
4474
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -4469,6 +4476,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4469
4476
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4470
4477
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
4471
4478
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
4479
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
4472
4480
 
4473
4481
  :default: maximum over 5 minutes
4474
4482
 
@@ -4485,6 +4493,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4485
4493
  account: typing.Optional[builtins.str] = None,
4486
4494
  color: typing.Optional[builtins.str] = None,
4487
4495
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
4496
+ id: typing.Optional[builtins.str] = None,
4488
4497
  label: typing.Optional[builtins.str] = None,
4489
4498
  period: typing.Optional[_Duration_4839e8c3] = None,
4490
4499
  region: typing.Optional[builtins.str] = None,
@@ -4492,12 +4501,14 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4492
4501
  stack_region: typing.Optional[builtins.str] = None,
4493
4502
  statistic: typing.Optional[builtins.str] = None,
4494
4503
  unit: typing.Optional[_Unit_61bc6f70] = None,
4504
+ visible: typing.Optional[builtins.bool] = None,
4495
4505
  ) -> _Metric_e396a4dc:
4496
4506
  '''(deprecated) Metric for the cluster blocking index writes.
4497
4507
 
4498
4508
  :param account: Account which this metric comes from. Default: - Deployment account.
4499
4509
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
4500
4510
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
4511
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
4501
4512
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
4502
4513
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4503
4514
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -4505,6 +4516,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4505
4516
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4506
4517
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
4507
4518
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
4519
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
4508
4520
 
4509
4521
  :default: maximum over 1 minute
4510
4522
 
@@ -4521,6 +4533,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4521
4533
  account: typing.Optional[builtins.str] = None,
4522
4534
  color: typing.Optional[builtins.str] = None,
4523
4535
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
4536
+ id: typing.Optional[builtins.str] = None,
4524
4537
  label: typing.Optional[builtins.str] = None,
4525
4538
  period: typing.Optional[_Duration_4839e8c3] = None,
4526
4539
  region: typing.Optional[builtins.str] = None,
@@ -4528,12 +4541,14 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4528
4541
  stack_region: typing.Optional[builtins.str] = None,
4529
4542
  statistic: typing.Optional[builtins.str] = None,
4530
4543
  unit: typing.Optional[_Unit_61bc6f70] = None,
4544
+ visible: typing.Optional[builtins.bool] = None,
4531
4545
  ) -> _Metric_e396a4dc:
4532
4546
  '''(deprecated) Metric for the time the cluster status is red.
4533
4547
 
4534
4548
  :param account: Account which this metric comes from. Default: - Deployment account.
4535
4549
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
4536
4550
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
4551
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
4537
4552
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
4538
4553
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4539
4554
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -4541,6 +4556,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4541
4556
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4542
4557
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
4543
4558
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
4559
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
4544
4560
 
4545
4561
  :default: maximum over 5 minutes
4546
4562
 
@@ -4557,6 +4573,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4557
4573
  account: typing.Optional[builtins.str] = None,
4558
4574
  color: typing.Optional[builtins.str] = None,
4559
4575
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
4576
+ id: typing.Optional[builtins.str] = None,
4560
4577
  label: typing.Optional[builtins.str] = None,
4561
4578
  period: typing.Optional[_Duration_4839e8c3] = None,
4562
4579
  region: typing.Optional[builtins.str] = None,
@@ -4564,12 +4581,14 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4564
4581
  stack_region: typing.Optional[builtins.str] = None,
4565
4582
  statistic: typing.Optional[builtins.str] = None,
4566
4583
  unit: typing.Optional[_Unit_61bc6f70] = None,
4584
+ visible: typing.Optional[builtins.bool] = None,
4567
4585
  ) -> _Metric_e396a4dc:
4568
4586
  '''(deprecated) Metric for the time the cluster status is yellow.
4569
4587
 
4570
4588
  :param account: Account which this metric comes from. Default: - Deployment account.
4571
4589
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
4572
4590
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
4591
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
4573
4592
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
4574
4593
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4575
4594
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -4577,6 +4596,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4577
4596
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4578
4597
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
4579
4598
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
4599
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
4580
4600
 
4581
4601
  :default: maximum over 5 minutes
4582
4602
 
@@ -4593,6 +4613,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4593
4613
  account: typing.Optional[builtins.str] = None,
4594
4614
  color: typing.Optional[builtins.str] = None,
4595
4615
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
4616
+ id: typing.Optional[builtins.str] = None,
4596
4617
  label: typing.Optional[builtins.str] = None,
4597
4618
  period: typing.Optional[_Duration_4839e8c3] = None,
4598
4619
  region: typing.Optional[builtins.str] = None,
@@ -4600,12 +4621,14 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4600
4621
  stack_region: typing.Optional[builtins.str] = None,
4601
4622
  statistic: typing.Optional[builtins.str] = None,
4602
4623
  unit: typing.Optional[_Unit_61bc6f70] = None,
4624
+ visible: typing.Optional[builtins.bool] = None,
4603
4625
  ) -> _Metric_e396a4dc:
4604
4626
  '''(deprecated) Metric for CPU utilization.
4605
4627
 
4606
4628
  :param account: Account which this metric comes from. Default: - Deployment account.
4607
4629
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
4608
4630
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
4631
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
4609
4632
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
4610
4633
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4611
4634
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -4613,6 +4636,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4613
4636
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4614
4637
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
4615
4638
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
4639
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
4616
4640
 
4617
4641
  :default: maximum over 5 minutes
4618
4642
 
@@ -4629,6 +4653,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4629
4653
  account: typing.Optional[builtins.str] = None,
4630
4654
  color: typing.Optional[builtins.str] = None,
4631
4655
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
4656
+ id: typing.Optional[builtins.str] = None,
4632
4657
  label: typing.Optional[builtins.str] = None,
4633
4658
  period: typing.Optional[_Duration_4839e8c3] = None,
4634
4659
  region: typing.Optional[builtins.str] = None,
@@ -4636,12 +4661,14 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4636
4661
  stack_region: typing.Optional[builtins.str] = None,
4637
4662
  statistic: typing.Optional[builtins.str] = None,
4638
4663
  unit: typing.Optional[_Unit_61bc6f70] = None,
4664
+ visible: typing.Optional[builtins.bool] = None,
4639
4665
  ) -> _Metric_e396a4dc:
4640
4666
  '''(deprecated) Metric for the storage space of nodes in the cluster.
4641
4667
 
4642
4668
  :param account: Account which this metric comes from. Default: - Deployment account.
4643
4669
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
4644
4670
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
4671
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
4645
4672
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
4646
4673
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4647
4674
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -4649,6 +4676,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4649
4676
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4650
4677
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
4651
4678
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
4679
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
4652
4680
 
4653
4681
  :default: minimum over 5 minutes
4654
4682
 
@@ -4665,6 +4693,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4665
4693
  account: typing.Optional[builtins.str] = None,
4666
4694
  color: typing.Optional[builtins.str] = None,
4667
4695
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
4696
+ id: typing.Optional[builtins.str] = None,
4668
4697
  label: typing.Optional[builtins.str] = None,
4669
4698
  period: typing.Optional[_Duration_4839e8c3] = None,
4670
4699
  region: typing.Optional[builtins.str] = None,
@@ -4672,12 +4701,14 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4672
4701
  stack_region: typing.Optional[builtins.str] = None,
4673
4702
  statistic: typing.Optional[builtins.str] = None,
4674
4703
  unit: typing.Optional[_Unit_61bc6f70] = None,
4704
+ visible: typing.Optional[builtins.bool] = None,
4675
4705
  ) -> _Metric_e396a4dc:
4676
4706
  '''(deprecated) Metric for indexing latency.
4677
4707
 
4678
4708
  :param account: Account which this metric comes from. Default: - Deployment account.
4679
4709
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
4680
4710
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
4711
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
4681
4712
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
4682
4713
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4683
4714
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -4685,6 +4716,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4685
4716
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4686
4717
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
4687
4718
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
4719
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
4688
4720
 
4689
4721
  :default: p99 over 5 minutes
4690
4722
 
@@ -4701,6 +4733,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4701
4733
  account: typing.Optional[builtins.str] = None,
4702
4734
  color: typing.Optional[builtins.str] = None,
4703
4735
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
4736
+ id: typing.Optional[builtins.str] = None,
4704
4737
  label: typing.Optional[builtins.str] = None,
4705
4738
  period: typing.Optional[_Duration_4839e8c3] = None,
4706
4739
  region: typing.Optional[builtins.str] = None,
@@ -4708,12 +4741,14 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4708
4741
  stack_region: typing.Optional[builtins.str] = None,
4709
4742
  statistic: typing.Optional[builtins.str] = None,
4710
4743
  unit: typing.Optional[_Unit_61bc6f70] = None,
4744
+ visible: typing.Optional[builtins.bool] = None,
4711
4745
  ) -> _Metric_e396a4dc:
4712
4746
  '''(deprecated) Metric for JVM memory pressure.
4713
4747
 
4714
4748
  :param account: Account which this metric comes from. Default: - Deployment account.
4715
4749
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
4716
4750
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
4751
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
4717
4752
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
4718
4753
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4719
4754
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -4721,6 +4756,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4721
4756
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4722
4757
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
4723
4758
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
4759
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
4724
4760
 
4725
4761
  :default: maximum over 5 minutes
4726
4762
 
@@ -4737,6 +4773,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4737
4773
  account: typing.Optional[builtins.str] = None,
4738
4774
  color: typing.Optional[builtins.str] = None,
4739
4775
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
4776
+ id: typing.Optional[builtins.str] = None,
4740
4777
  label: typing.Optional[builtins.str] = None,
4741
4778
  period: typing.Optional[_Duration_4839e8c3] = None,
4742
4779
  region: typing.Optional[builtins.str] = None,
@@ -4744,12 +4781,14 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4744
4781
  stack_region: typing.Optional[builtins.str] = None,
4745
4782
  statistic: typing.Optional[builtins.str] = None,
4746
4783
  unit: typing.Optional[_Unit_61bc6f70] = None,
4784
+ visible: typing.Optional[builtins.bool] = None,
4747
4785
  ) -> _Metric_e396a4dc:
4748
4786
  '''(deprecated) Metric for KMS key errors.
4749
4787
 
4750
4788
  :param account: Account which this metric comes from. Default: - Deployment account.
4751
4789
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
4752
4790
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
4791
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
4753
4792
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
4754
4793
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4755
4794
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -4757,6 +4796,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4757
4796
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4758
4797
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
4759
4798
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
4799
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
4760
4800
 
4761
4801
  :default: maximum over 5 minutes
4762
4802
 
@@ -4773,6 +4813,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4773
4813
  account: typing.Optional[builtins.str] = None,
4774
4814
  color: typing.Optional[builtins.str] = None,
4775
4815
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
4816
+ id: typing.Optional[builtins.str] = None,
4776
4817
  label: typing.Optional[builtins.str] = None,
4777
4818
  period: typing.Optional[_Duration_4839e8c3] = None,
4778
4819
  region: typing.Optional[builtins.str] = None,
@@ -4780,12 +4821,14 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4780
4821
  stack_region: typing.Optional[builtins.str] = None,
4781
4822
  statistic: typing.Optional[builtins.str] = None,
4782
4823
  unit: typing.Optional[_Unit_61bc6f70] = None,
4824
+ visible: typing.Optional[builtins.bool] = None,
4783
4825
  ) -> _Metric_e396a4dc:
4784
4826
  '''(deprecated) Metric for KMS key being inaccessible.
4785
4827
 
4786
4828
  :param account: Account which this metric comes from. Default: - Deployment account.
4787
4829
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
4788
4830
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
4831
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
4789
4832
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
4790
4833
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4791
4834
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -4793,6 +4836,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4793
4836
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4794
4837
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
4795
4838
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
4839
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
4796
4840
 
4797
4841
  :default: maximum over 5 minutes
4798
4842
 
@@ -4809,6 +4853,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4809
4853
  account: typing.Optional[builtins.str] = None,
4810
4854
  color: typing.Optional[builtins.str] = None,
4811
4855
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
4856
+ id: typing.Optional[builtins.str] = None,
4812
4857
  label: typing.Optional[builtins.str] = None,
4813
4858
  period: typing.Optional[_Duration_4839e8c3] = None,
4814
4859
  region: typing.Optional[builtins.str] = None,
@@ -4816,12 +4861,14 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4816
4861
  stack_region: typing.Optional[builtins.str] = None,
4817
4862
  statistic: typing.Optional[builtins.str] = None,
4818
4863
  unit: typing.Optional[_Unit_61bc6f70] = None,
4864
+ visible: typing.Optional[builtins.bool] = None,
4819
4865
  ) -> _Metric_e396a4dc:
4820
4866
  '''(deprecated) Metric for master CPU utilization.
4821
4867
 
4822
4868
  :param account: Account which this metric comes from. Default: - Deployment account.
4823
4869
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
4824
4870
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
4871
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
4825
4872
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
4826
4873
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4827
4874
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -4829,6 +4876,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4829
4876
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4830
4877
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
4831
4878
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
4879
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
4832
4880
 
4833
4881
  :default: maximum over 5 minutes
4834
4882
 
@@ -4845,6 +4893,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4845
4893
  account: typing.Optional[builtins.str] = None,
4846
4894
  color: typing.Optional[builtins.str] = None,
4847
4895
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
4896
+ id: typing.Optional[builtins.str] = None,
4848
4897
  label: typing.Optional[builtins.str] = None,
4849
4898
  period: typing.Optional[_Duration_4839e8c3] = None,
4850
4899
  region: typing.Optional[builtins.str] = None,
@@ -4852,12 +4901,14 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4852
4901
  stack_region: typing.Optional[builtins.str] = None,
4853
4902
  statistic: typing.Optional[builtins.str] = None,
4854
4903
  unit: typing.Optional[_Unit_61bc6f70] = None,
4904
+ visible: typing.Optional[builtins.bool] = None,
4855
4905
  ) -> _Metric_e396a4dc:
4856
4906
  '''(deprecated) Metric for master JVM memory pressure.
4857
4907
 
4858
4908
  :param account: Account which this metric comes from. Default: - Deployment account.
4859
4909
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
4860
4910
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
4911
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
4861
4912
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
4862
4913
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4863
4914
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -4865,6 +4916,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4865
4916
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4866
4917
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
4867
4918
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
4919
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
4868
4920
 
4869
4921
  :default: maximum over 5 minutes
4870
4922
 
@@ -4881,6 +4933,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4881
4933
  account: typing.Optional[builtins.str] = None,
4882
4934
  color: typing.Optional[builtins.str] = None,
4883
4935
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
4936
+ id: typing.Optional[builtins.str] = None,
4884
4937
  label: typing.Optional[builtins.str] = None,
4885
4938
  period: typing.Optional[_Duration_4839e8c3] = None,
4886
4939
  region: typing.Optional[builtins.str] = None,
@@ -4888,12 +4941,14 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4888
4941
  stack_region: typing.Optional[builtins.str] = None,
4889
4942
  statistic: typing.Optional[builtins.str] = None,
4890
4943
  unit: typing.Optional[_Unit_61bc6f70] = None,
4944
+ visible: typing.Optional[builtins.bool] = None,
4891
4945
  ) -> _Metric_e396a4dc:
4892
4946
  '''(deprecated) Metric for the number of nodes.
4893
4947
 
4894
4948
  :param account: Account which this metric comes from. Default: - Deployment account.
4895
4949
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
4896
4950
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
4951
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
4897
4952
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
4898
4953
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4899
4954
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -4901,6 +4956,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4901
4956
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4902
4957
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
4903
4958
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
4959
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
4904
4960
 
4905
4961
  :default: minimum over 1 hour
4906
4962
 
@@ -4917,6 +4973,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4917
4973
  account: typing.Optional[builtins.str] = None,
4918
4974
  color: typing.Optional[builtins.str] = None,
4919
4975
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
4976
+ id: typing.Optional[builtins.str] = None,
4920
4977
  label: typing.Optional[builtins.str] = None,
4921
4978
  period: typing.Optional[_Duration_4839e8c3] = None,
4922
4979
  region: typing.Optional[builtins.str] = None,
@@ -4924,12 +4981,14 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4924
4981
  stack_region: typing.Optional[builtins.str] = None,
4925
4982
  statistic: typing.Optional[builtins.str] = None,
4926
4983
  unit: typing.Optional[_Unit_61bc6f70] = None,
4984
+ visible: typing.Optional[builtins.bool] = None,
4927
4985
  ) -> _Metric_e396a4dc:
4928
4986
  '''(deprecated) Metric for number of searchable documents.
4929
4987
 
4930
4988
  :param account: Account which this metric comes from. Default: - Deployment account.
4931
4989
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
4932
4990
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
4991
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
4933
4992
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
4934
4993
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4935
4994
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -4937,6 +4996,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4937
4996
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4938
4997
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
4939
4998
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
4999
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
4940
5000
 
4941
5001
  :default: maximum over 5 minutes
4942
5002
 
@@ -4953,6 +5013,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4953
5013
  account: typing.Optional[builtins.str] = None,
4954
5014
  color: typing.Optional[builtins.str] = None,
4955
5015
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
5016
+ id: typing.Optional[builtins.str] = None,
4956
5017
  label: typing.Optional[builtins.str] = None,
4957
5018
  period: typing.Optional[_Duration_4839e8c3] = None,
4958
5019
  region: typing.Optional[builtins.str] = None,
@@ -4960,12 +5021,14 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4960
5021
  stack_region: typing.Optional[builtins.str] = None,
4961
5022
  statistic: typing.Optional[builtins.str] = None,
4962
5023
  unit: typing.Optional[_Unit_61bc6f70] = None,
5024
+ visible: typing.Optional[builtins.bool] = None,
4963
5025
  ) -> _Metric_e396a4dc:
4964
5026
  '''(deprecated) Metric for search latency.
4965
5027
 
4966
5028
  :param account: Account which this metric comes from. Default: - Deployment account.
4967
5029
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
4968
5030
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
5031
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
4969
5032
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
4970
5033
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4971
5034
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -4973,6 +5036,7 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4973
5036
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4974
5037
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
4975
5038
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
5039
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
4976
5040
 
4977
5041
  :default: p99 over 5 minutes
4978
5042
 
@@ -5210,6 +5274,7 @@ class _IDomainProxy(
5210
5274
  account: typing.Optional[builtins.str] = None,
5211
5275
  color: typing.Optional[builtins.str] = None,
5212
5276
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
5277
+ id: typing.Optional[builtins.str] = None,
5213
5278
  label: typing.Optional[builtins.str] = None,
5214
5279
  period: typing.Optional[_Duration_4839e8c3] = None,
5215
5280
  region: typing.Optional[builtins.str] = None,
@@ -5217,6 +5282,7 @@ class _IDomainProxy(
5217
5282
  stack_region: typing.Optional[builtins.str] = None,
5218
5283
  statistic: typing.Optional[builtins.str] = None,
5219
5284
  unit: typing.Optional[_Unit_61bc6f70] = None,
5285
+ visible: typing.Optional[builtins.bool] = None,
5220
5286
  ) -> _Metric_e396a4dc:
5221
5287
  '''(deprecated) Return the given named metric for this Domain.
5222
5288
 
@@ -5224,6 +5290,7 @@ class _IDomainProxy(
5224
5290
  :param account: Account which this metric comes from. Default: - Deployment account.
5225
5291
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
5226
5292
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
5293
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
5227
5294
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
5228
5295
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
5229
5296
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -5231,6 +5298,7 @@ class _IDomainProxy(
5231
5298
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
5232
5299
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
5233
5300
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
5301
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
5234
5302
 
5235
5303
  :deprecated: use opensearchservice module instead
5236
5304
 
@@ -5243,6 +5311,7 @@ class _IDomainProxy(
5243
5311
  account=account,
5244
5312
  color=color,
5245
5313
  dimensions_map=dimensions_map,
5314
+ id=id,
5246
5315
  label=label,
5247
5316
  period=period,
5248
5317
  region=region,
@@ -5250,6 +5319,7 @@ class _IDomainProxy(
5250
5319
  stack_region=stack_region,
5251
5320
  statistic=statistic,
5252
5321
  unit=unit,
5322
+ visible=visible,
5253
5323
  )
5254
5324
 
5255
5325
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metric", [metric_name, props]))
@@ -5261,6 +5331,7 @@ class _IDomainProxy(
5261
5331
  account: typing.Optional[builtins.str] = None,
5262
5332
  color: typing.Optional[builtins.str] = None,
5263
5333
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
5334
+ id: typing.Optional[builtins.str] = None,
5264
5335
  label: typing.Optional[builtins.str] = None,
5265
5336
  period: typing.Optional[_Duration_4839e8c3] = None,
5266
5337
  region: typing.Optional[builtins.str] = None,
@@ -5268,12 +5339,14 @@ class _IDomainProxy(
5268
5339
  stack_region: typing.Optional[builtins.str] = None,
5269
5340
  statistic: typing.Optional[builtins.str] = None,
5270
5341
  unit: typing.Optional[_Unit_61bc6f70] = None,
5342
+ visible: typing.Optional[builtins.bool] = None,
5271
5343
  ) -> _Metric_e396a4dc:
5272
5344
  '''(deprecated) Metric for automated snapshot failures.
5273
5345
 
5274
5346
  :param account: Account which this metric comes from. Default: - Deployment account.
5275
5347
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
5276
5348
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
5349
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
5277
5350
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
5278
5351
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
5279
5352
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -5281,6 +5354,7 @@ class _IDomainProxy(
5281
5354
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
5282
5355
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
5283
5356
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
5357
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
5284
5358
 
5285
5359
  :default: maximum over 5 minutes
5286
5360
 
@@ -5292,6 +5366,7 @@ class _IDomainProxy(
5292
5366
  account=account,
5293
5367
  color=color,
5294
5368
  dimensions_map=dimensions_map,
5369
+ id=id,
5295
5370
  label=label,
5296
5371
  period=period,
5297
5372
  region=region,
@@ -5299,6 +5374,7 @@ class _IDomainProxy(
5299
5374
  stack_region=stack_region,
5300
5375
  statistic=statistic,
5301
5376
  unit=unit,
5377
+ visible=visible,
5302
5378
  )
5303
5379
 
5304
5380
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricAutomatedSnapshotFailure", [props]))
@@ -5310,6 +5386,7 @@ class _IDomainProxy(
5310
5386
  account: typing.Optional[builtins.str] = None,
5311
5387
  color: typing.Optional[builtins.str] = None,
5312
5388
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
5389
+ id: typing.Optional[builtins.str] = None,
5313
5390
  label: typing.Optional[builtins.str] = None,
5314
5391
  period: typing.Optional[_Duration_4839e8c3] = None,
5315
5392
  region: typing.Optional[builtins.str] = None,
@@ -5317,12 +5394,14 @@ class _IDomainProxy(
5317
5394
  stack_region: typing.Optional[builtins.str] = None,
5318
5395
  statistic: typing.Optional[builtins.str] = None,
5319
5396
  unit: typing.Optional[_Unit_61bc6f70] = None,
5397
+ visible: typing.Optional[builtins.bool] = None,
5320
5398
  ) -> _Metric_e396a4dc:
5321
5399
  '''(deprecated) Metric for the cluster blocking index writes.
5322
5400
 
5323
5401
  :param account: Account which this metric comes from. Default: - Deployment account.
5324
5402
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
5325
5403
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
5404
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
5326
5405
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
5327
5406
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
5328
5407
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -5330,6 +5409,7 @@ class _IDomainProxy(
5330
5409
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
5331
5410
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
5332
5411
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
5412
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
5333
5413
 
5334
5414
  :default: maximum over 1 minute
5335
5415
 
@@ -5341,6 +5421,7 @@ class _IDomainProxy(
5341
5421
  account=account,
5342
5422
  color=color,
5343
5423
  dimensions_map=dimensions_map,
5424
+ id=id,
5344
5425
  label=label,
5345
5426
  period=period,
5346
5427
  region=region,
@@ -5348,6 +5429,7 @@ class _IDomainProxy(
5348
5429
  stack_region=stack_region,
5349
5430
  statistic=statistic,
5350
5431
  unit=unit,
5432
+ visible=visible,
5351
5433
  )
5352
5434
 
5353
5435
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricClusterIndexWritesBlocked", [props]))
@@ -5359,6 +5441,7 @@ class _IDomainProxy(
5359
5441
  account: typing.Optional[builtins.str] = None,
5360
5442
  color: typing.Optional[builtins.str] = None,
5361
5443
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
5444
+ id: typing.Optional[builtins.str] = None,
5362
5445
  label: typing.Optional[builtins.str] = None,
5363
5446
  period: typing.Optional[_Duration_4839e8c3] = None,
5364
5447
  region: typing.Optional[builtins.str] = None,
@@ -5366,12 +5449,14 @@ class _IDomainProxy(
5366
5449
  stack_region: typing.Optional[builtins.str] = None,
5367
5450
  statistic: typing.Optional[builtins.str] = None,
5368
5451
  unit: typing.Optional[_Unit_61bc6f70] = None,
5452
+ visible: typing.Optional[builtins.bool] = None,
5369
5453
  ) -> _Metric_e396a4dc:
5370
5454
  '''(deprecated) Metric for the time the cluster status is red.
5371
5455
 
5372
5456
  :param account: Account which this metric comes from. Default: - Deployment account.
5373
5457
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
5374
5458
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
5459
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
5375
5460
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
5376
5461
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
5377
5462
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -5379,6 +5464,7 @@ class _IDomainProxy(
5379
5464
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
5380
5465
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
5381
5466
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
5467
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
5382
5468
 
5383
5469
  :default: maximum over 5 minutes
5384
5470
 
@@ -5390,6 +5476,7 @@ class _IDomainProxy(
5390
5476
  account=account,
5391
5477
  color=color,
5392
5478
  dimensions_map=dimensions_map,
5479
+ id=id,
5393
5480
  label=label,
5394
5481
  period=period,
5395
5482
  region=region,
@@ -5397,6 +5484,7 @@ class _IDomainProxy(
5397
5484
  stack_region=stack_region,
5398
5485
  statistic=statistic,
5399
5486
  unit=unit,
5487
+ visible=visible,
5400
5488
  )
5401
5489
 
5402
5490
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricClusterStatusRed", [props]))
@@ -5408,6 +5496,7 @@ class _IDomainProxy(
5408
5496
  account: typing.Optional[builtins.str] = None,
5409
5497
  color: typing.Optional[builtins.str] = None,
5410
5498
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
5499
+ id: typing.Optional[builtins.str] = None,
5411
5500
  label: typing.Optional[builtins.str] = None,
5412
5501
  period: typing.Optional[_Duration_4839e8c3] = None,
5413
5502
  region: typing.Optional[builtins.str] = None,
@@ -5415,12 +5504,14 @@ class _IDomainProxy(
5415
5504
  stack_region: typing.Optional[builtins.str] = None,
5416
5505
  statistic: typing.Optional[builtins.str] = None,
5417
5506
  unit: typing.Optional[_Unit_61bc6f70] = None,
5507
+ visible: typing.Optional[builtins.bool] = None,
5418
5508
  ) -> _Metric_e396a4dc:
5419
5509
  '''(deprecated) Metric for the time the cluster status is yellow.
5420
5510
 
5421
5511
  :param account: Account which this metric comes from. Default: - Deployment account.
5422
5512
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
5423
5513
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
5514
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
5424
5515
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
5425
5516
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
5426
5517
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -5428,6 +5519,7 @@ class _IDomainProxy(
5428
5519
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
5429
5520
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
5430
5521
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
5522
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
5431
5523
 
5432
5524
  :default: maximum over 5 minutes
5433
5525
 
@@ -5439,6 +5531,7 @@ class _IDomainProxy(
5439
5531
  account=account,
5440
5532
  color=color,
5441
5533
  dimensions_map=dimensions_map,
5534
+ id=id,
5442
5535
  label=label,
5443
5536
  period=period,
5444
5537
  region=region,
@@ -5446,6 +5539,7 @@ class _IDomainProxy(
5446
5539
  stack_region=stack_region,
5447
5540
  statistic=statistic,
5448
5541
  unit=unit,
5542
+ visible=visible,
5449
5543
  )
5450
5544
 
5451
5545
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricClusterStatusYellow", [props]))
@@ -5457,6 +5551,7 @@ class _IDomainProxy(
5457
5551
  account: typing.Optional[builtins.str] = None,
5458
5552
  color: typing.Optional[builtins.str] = None,
5459
5553
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
5554
+ id: typing.Optional[builtins.str] = None,
5460
5555
  label: typing.Optional[builtins.str] = None,
5461
5556
  period: typing.Optional[_Duration_4839e8c3] = None,
5462
5557
  region: typing.Optional[builtins.str] = None,
@@ -5464,12 +5559,14 @@ class _IDomainProxy(
5464
5559
  stack_region: typing.Optional[builtins.str] = None,
5465
5560
  statistic: typing.Optional[builtins.str] = None,
5466
5561
  unit: typing.Optional[_Unit_61bc6f70] = None,
5562
+ visible: typing.Optional[builtins.bool] = None,
5467
5563
  ) -> _Metric_e396a4dc:
5468
5564
  '''(deprecated) Metric for CPU utilization.
5469
5565
 
5470
5566
  :param account: Account which this metric comes from. Default: - Deployment account.
5471
5567
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
5472
5568
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
5569
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
5473
5570
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
5474
5571
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
5475
5572
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -5477,6 +5574,7 @@ class _IDomainProxy(
5477
5574
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
5478
5575
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
5479
5576
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
5577
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
5480
5578
 
5481
5579
  :default: maximum over 5 minutes
5482
5580
 
@@ -5488,6 +5586,7 @@ class _IDomainProxy(
5488
5586
  account=account,
5489
5587
  color=color,
5490
5588
  dimensions_map=dimensions_map,
5589
+ id=id,
5491
5590
  label=label,
5492
5591
  period=period,
5493
5592
  region=region,
@@ -5495,6 +5594,7 @@ class _IDomainProxy(
5495
5594
  stack_region=stack_region,
5496
5595
  statistic=statistic,
5497
5596
  unit=unit,
5597
+ visible=visible,
5498
5598
  )
5499
5599
 
5500
5600
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricCPUUtilization", [props]))
@@ -5506,6 +5606,7 @@ class _IDomainProxy(
5506
5606
  account: typing.Optional[builtins.str] = None,
5507
5607
  color: typing.Optional[builtins.str] = None,
5508
5608
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
5609
+ id: typing.Optional[builtins.str] = None,
5509
5610
  label: typing.Optional[builtins.str] = None,
5510
5611
  period: typing.Optional[_Duration_4839e8c3] = None,
5511
5612
  region: typing.Optional[builtins.str] = None,
@@ -5513,12 +5614,14 @@ class _IDomainProxy(
5513
5614
  stack_region: typing.Optional[builtins.str] = None,
5514
5615
  statistic: typing.Optional[builtins.str] = None,
5515
5616
  unit: typing.Optional[_Unit_61bc6f70] = None,
5617
+ visible: typing.Optional[builtins.bool] = None,
5516
5618
  ) -> _Metric_e396a4dc:
5517
5619
  '''(deprecated) Metric for the storage space of nodes in the cluster.
5518
5620
 
5519
5621
  :param account: Account which this metric comes from. Default: - Deployment account.
5520
5622
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
5521
5623
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
5624
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
5522
5625
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
5523
5626
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
5524
5627
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -5526,6 +5629,7 @@ class _IDomainProxy(
5526
5629
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
5527
5630
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
5528
5631
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
5632
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
5529
5633
 
5530
5634
  :default: minimum over 5 minutes
5531
5635
 
@@ -5537,6 +5641,7 @@ class _IDomainProxy(
5537
5641
  account=account,
5538
5642
  color=color,
5539
5643
  dimensions_map=dimensions_map,
5644
+ id=id,
5540
5645
  label=label,
5541
5646
  period=period,
5542
5647
  region=region,
@@ -5544,6 +5649,7 @@ class _IDomainProxy(
5544
5649
  stack_region=stack_region,
5545
5650
  statistic=statistic,
5546
5651
  unit=unit,
5652
+ visible=visible,
5547
5653
  )
5548
5654
 
5549
5655
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricFreeStorageSpace", [props]))
@@ -5555,6 +5661,7 @@ class _IDomainProxy(
5555
5661
  account: typing.Optional[builtins.str] = None,
5556
5662
  color: typing.Optional[builtins.str] = None,
5557
5663
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
5664
+ id: typing.Optional[builtins.str] = None,
5558
5665
  label: typing.Optional[builtins.str] = None,
5559
5666
  period: typing.Optional[_Duration_4839e8c3] = None,
5560
5667
  region: typing.Optional[builtins.str] = None,
@@ -5562,12 +5669,14 @@ class _IDomainProxy(
5562
5669
  stack_region: typing.Optional[builtins.str] = None,
5563
5670
  statistic: typing.Optional[builtins.str] = None,
5564
5671
  unit: typing.Optional[_Unit_61bc6f70] = None,
5672
+ visible: typing.Optional[builtins.bool] = None,
5565
5673
  ) -> _Metric_e396a4dc:
5566
5674
  '''(deprecated) Metric for indexing latency.
5567
5675
 
5568
5676
  :param account: Account which this metric comes from. Default: - Deployment account.
5569
5677
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
5570
5678
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
5679
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
5571
5680
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
5572
5681
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
5573
5682
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -5575,6 +5684,7 @@ class _IDomainProxy(
5575
5684
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
5576
5685
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
5577
5686
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
5687
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
5578
5688
 
5579
5689
  :default: p99 over 5 minutes
5580
5690
 
@@ -5586,6 +5696,7 @@ class _IDomainProxy(
5586
5696
  account=account,
5587
5697
  color=color,
5588
5698
  dimensions_map=dimensions_map,
5699
+ id=id,
5589
5700
  label=label,
5590
5701
  period=period,
5591
5702
  region=region,
@@ -5593,6 +5704,7 @@ class _IDomainProxy(
5593
5704
  stack_region=stack_region,
5594
5705
  statistic=statistic,
5595
5706
  unit=unit,
5707
+ visible=visible,
5596
5708
  )
5597
5709
 
5598
5710
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricIndexingLatency", [props]))
@@ -5604,6 +5716,7 @@ class _IDomainProxy(
5604
5716
  account: typing.Optional[builtins.str] = None,
5605
5717
  color: typing.Optional[builtins.str] = None,
5606
5718
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
5719
+ id: typing.Optional[builtins.str] = None,
5607
5720
  label: typing.Optional[builtins.str] = None,
5608
5721
  period: typing.Optional[_Duration_4839e8c3] = None,
5609
5722
  region: typing.Optional[builtins.str] = None,
@@ -5611,12 +5724,14 @@ class _IDomainProxy(
5611
5724
  stack_region: typing.Optional[builtins.str] = None,
5612
5725
  statistic: typing.Optional[builtins.str] = None,
5613
5726
  unit: typing.Optional[_Unit_61bc6f70] = None,
5727
+ visible: typing.Optional[builtins.bool] = None,
5614
5728
  ) -> _Metric_e396a4dc:
5615
5729
  '''(deprecated) Metric for JVM memory pressure.
5616
5730
 
5617
5731
  :param account: Account which this metric comes from. Default: - Deployment account.
5618
5732
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
5619
5733
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
5734
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
5620
5735
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
5621
5736
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
5622
5737
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -5624,6 +5739,7 @@ class _IDomainProxy(
5624
5739
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
5625
5740
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
5626
5741
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
5742
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
5627
5743
 
5628
5744
  :default: maximum over 5 minutes
5629
5745
 
@@ -5635,6 +5751,7 @@ class _IDomainProxy(
5635
5751
  account=account,
5636
5752
  color=color,
5637
5753
  dimensions_map=dimensions_map,
5754
+ id=id,
5638
5755
  label=label,
5639
5756
  period=period,
5640
5757
  region=region,
@@ -5642,6 +5759,7 @@ class _IDomainProxy(
5642
5759
  stack_region=stack_region,
5643
5760
  statistic=statistic,
5644
5761
  unit=unit,
5762
+ visible=visible,
5645
5763
  )
5646
5764
 
5647
5765
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricJVMMemoryPressure", [props]))
@@ -5653,6 +5771,7 @@ class _IDomainProxy(
5653
5771
  account: typing.Optional[builtins.str] = None,
5654
5772
  color: typing.Optional[builtins.str] = None,
5655
5773
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
5774
+ id: typing.Optional[builtins.str] = None,
5656
5775
  label: typing.Optional[builtins.str] = None,
5657
5776
  period: typing.Optional[_Duration_4839e8c3] = None,
5658
5777
  region: typing.Optional[builtins.str] = None,
@@ -5660,12 +5779,14 @@ class _IDomainProxy(
5660
5779
  stack_region: typing.Optional[builtins.str] = None,
5661
5780
  statistic: typing.Optional[builtins.str] = None,
5662
5781
  unit: typing.Optional[_Unit_61bc6f70] = None,
5782
+ visible: typing.Optional[builtins.bool] = None,
5663
5783
  ) -> _Metric_e396a4dc:
5664
5784
  '''(deprecated) Metric for KMS key errors.
5665
5785
 
5666
5786
  :param account: Account which this metric comes from. Default: - Deployment account.
5667
5787
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
5668
5788
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
5789
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
5669
5790
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
5670
5791
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
5671
5792
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -5673,6 +5794,7 @@ class _IDomainProxy(
5673
5794
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
5674
5795
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
5675
5796
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
5797
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
5676
5798
 
5677
5799
  :default: maximum over 5 minutes
5678
5800
 
@@ -5684,6 +5806,7 @@ class _IDomainProxy(
5684
5806
  account=account,
5685
5807
  color=color,
5686
5808
  dimensions_map=dimensions_map,
5809
+ id=id,
5687
5810
  label=label,
5688
5811
  period=period,
5689
5812
  region=region,
@@ -5691,6 +5814,7 @@ class _IDomainProxy(
5691
5814
  stack_region=stack_region,
5692
5815
  statistic=statistic,
5693
5816
  unit=unit,
5817
+ visible=visible,
5694
5818
  )
5695
5819
 
5696
5820
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricKMSKeyError", [props]))
@@ -5702,6 +5826,7 @@ class _IDomainProxy(
5702
5826
  account: typing.Optional[builtins.str] = None,
5703
5827
  color: typing.Optional[builtins.str] = None,
5704
5828
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
5829
+ id: typing.Optional[builtins.str] = None,
5705
5830
  label: typing.Optional[builtins.str] = None,
5706
5831
  period: typing.Optional[_Duration_4839e8c3] = None,
5707
5832
  region: typing.Optional[builtins.str] = None,
@@ -5709,12 +5834,14 @@ class _IDomainProxy(
5709
5834
  stack_region: typing.Optional[builtins.str] = None,
5710
5835
  statistic: typing.Optional[builtins.str] = None,
5711
5836
  unit: typing.Optional[_Unit_61bc6f70] = None,
5837
+ visible: typing.Optional[builtins.bool] = None,
5712
5838
  ) -> _Metric_e396a4dc:
5713
5839
  '''(deprecated) Metric for KMS key being inaccessible.
5714
5840
 
5715
5841
  :param account: Account which this metric comes from. Default: - Deployment account.
5716
5842
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
5717
5843
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
5844
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
5718
5845
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
5719
5846
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
5720
5847
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -5722,6 +5849,7 @@ class _IDomainProxy(
5722
5849
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
5723
5850
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
5724
5851
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
5852
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
5725
5853
 
5726
5854
  :default: maximum over 5 minutes
5727
5855
 
@@ -5733,6 +5861,7 @@ class _IDomainProxy(
5733
5861
  account=account,
5734
5862
  color=color,
5735
5863
  dimensions_map=dimensions_map,
5864
+ id=id,
5736
5865
  label=label,
5737
5866
  period=period,
5738
5867
  region=region,
@@ -5740,6 +5869,7 @@ class _IDomainProxy(
5740
5869
  stack_region=stack_region,
5741
5870
  statistic=statistic,
5742
5871
  unit=unit,
5872
+ visible=visible,
5743
5873
  )
5744
5874
 
5745
5875
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricKMSKeyInaccessible", [props]))
@@ -5751,6 +5881,7 @@ class _IDomainProxy(
5751
5881
  account: typing.Optional[builtins.str] = None,
5752
5882
  color: typing.Optional[builtins.str] = None,
5753
5883
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
5884
+ id: typing.Optional[builtins.str] = None,
5754
5885
  label: typing.Optional[builtins.str] = None,
5755
5886
  period: typing.Optional[_Duration_4839e8c3] = None,
5756
5887
  region: typing.Optional[builtins.str] = None,
@@ -5758,12 +5889,14 @@ class _IDomainProxy(
5758
5889
  stack_region: typing.Optional[builtins.str] = None,
5759
5890
  statistic: typing.Optional[builtins.str] = None,
5760
5891
  unit: typing.Optional[_Unit_61bc6f70] = None,
5892
+ visible: typing.Optional[builtins.bool] = None,
5761
5893
  ) -> _Metric_e396a4dc:
5762
5894
  '''(deprecated) Metric for master CPU utilization.
5763
5895
 
5764
5896
  :param account: Account which this metric comes from. Default: - Deployment account.
5765
5897
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
5766
5898
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
5899
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
5767
5900
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
5768
5901
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
5769
5902
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -5771,6 +5904,7 @@ class _IDomainProxy(
5771
5904
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
5772
5905
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
5773
5906
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
5907
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
5774
5908
 
5775
5909
  :default: maximum over 5 minutes
5776
5910
 
@@ -5782,6 +5916,7 @@ class _IDomainProxy(
5782
5916
  account=account,
5783
5917
  color=color,
5784
5918
  dimensions_map=dimensions_map,
5919
+ id=id,
5785
5920
  label=label,
5786
5921
  period=period,
5787
5922
  region=region,
@@ -5789,6 +5924,7 @@ class _IDomainProxy(
5789
5924
  stack_region=stack_region,
5790
5925
  statistic=statistic,
5791
5926
  unit=unit,
5927
+ visible=visible,
5792
5928
  )
5793
5929
 
5794
5930
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricMasterCPUUtilization", [props]))
@@ -5800,6 +5936,7 @@ class _IDomainProxy(
5800
5936
  account: typing.Optional[builtins.str] = None,
5801
5937
  color: typing.Optional[builtins.str] = None,
5802
5938
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
5939
+ id: typing.Optional[builtins.str] = None,
5803
5940
  label: typing.Optional[builtins.str] = None,
5804
5941
  period: typing.Optional[_Duration_4839e8c3] = None,
5805
5942
  region: typing.Optional[builtins.str] = None,
@@ -5807,12 +5944,14 @@ class _IDomainProxy(
5807
5944
  stack_region: typing.Optional[builtins.str] = None,
5808
5945
  statistic: typing.Optional[builtins.str] = None,
5809
5946
  unit: typing.Optional[_Unit_61bc6f70] = None,
5947
+ visible: typing.Optional[builtins.bool] = None,
5810
5948
  ) -> _Metric_e396a4dc:
5811
5949
  '''(deprecated) Metric for master JVM memory pressure.
5812
5950
 
5813
5951
  :param account: Account which this metric comes from. Default: - Deployment account.
5814
5952
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
5815
5953
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
5954
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
5816
5955
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
5817
5956
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
5818
5957
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -5820,6 +5959,7 @@ class _IDomainProxy(
5820
5959
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
5821
5960
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
5822
5961
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
5962
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
5823
5963
 
5824
5964
  :default: maximum over 5 minutes
5825
5965
 
@@ -5831,6 +5971,7 @@ class _IDomainProxy(
5831
5971
  account=account,
5832
5972
  color=color,
5833
5973
  dimensions_map=dimensions_map,
5974
+ id=id,
5834
5975
  label=label,
5835
5976
  period=period,
5836
5977
  region=region,
@@ -5838,6 +5979,7 @@ class _IDomainProxy(
5838
5979
  stack_region=stack_region,
5839
5980
  statistic=statistic,
5840
5981
  unit=unit,
5982
+ visible=visible,
5841
5983
  )
5842
5984
 
5843
5985
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricMasterJVMMemoryPressure", [props]))
@@ -5849,6 +5991,7 @@ class _IDomainProxy(
5849
5991
  account: typing.Optional[builtins.str] = None,
5850
5992
  color: typing.Optional[builtins.str] = None,
5851
5993
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
5994
+ id: typing.Optional[builtins.str] = None,
5852
5995
  label: typing.Optional[builtins.str] = None,
5853
5996
  period: typing.Optional[_Duration_4839e8c3] = None,
5854
5997
  region: typing.Optional[builtins.str] = None,
@@ -5856,12 +5999,14 @@ class _IDomainProxy(
5856
5999
  stack_region: typing.Optional[builtins.str] = None,
5857
6000
  statistic: typing.Optional[builtins.str] = None,
5858
6001
  unit: typing.Optional[_Unit_61bc6f70] = None,
6002
+ visible: typing.Optional[builtins.bool] = None,
5859
6003
  ) -> _Metric_e396a4dc:
5860
6004
  '''(deprecated) Metric for the number of nodes.
5861
6005
 
5862
6006
  :param account: Account which this metric comes from. Default: - Deployment account.
5863
6007
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
5864
6008
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
6009
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
5865
6010
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
5866
6011
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
5867
6012
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -5869,6 +6014,7 @@ class _IDomainProxy(
5869
6014
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
5870
6015
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
5871
6016
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
6017
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
5872
6018
 
5873
6019
  :default: minimum over 1 hour
5874
6020
 
@@ -5880,6 +6026,7 @@ class _IDomainProxy(
5880
6026
  account=account,
5881
6027
  color=color,
5882
6028
  dimensions_map=dimensions_map,
6029
+ id=id,
5883
6030
  label=label,
5884
6031
  period=period,
5885
6032
  region=region,
@@ -5887,6 +6034,7 @@ class _IDomainProxy(
5887
6034
  stack_region=stack_region,
5888
6035
  statistic=statistic,
5889
6036
  unit=unit,
6037
+ visible=visible,
5890
6038
  )
5891
6039
 
5892
6040
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricNodes", [props]))
@@ -5898,6 +6046,7 @@ class _IDomainProxy(
5898
6046
  account: typing.Optional[builtins.str] = None,
5899
6047
  color: typing.Optional[builtins.str] = None,
5900
6048
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
6049
+ id: typing.Optional[builtins.str] = None,
5901
6050
  label: typing.Optional[builtins.str] = None,
5902
6051
  period: typing.Optional[_Duration_4839e8c3] = None,
5903
6052
  region: typing.Optional[builtins.str] = None,
@@ -5905,12 +6054,14 @@ class _IDomainProxy(
5905
6054
  stack_region: typing.Optional[builtins.str] = None,
5906
6055
  statistic: typing.Optional[builtins.str] = None,
5907
6056
  unit: typing.Optional[_Unit_61bc6f70] = None,
6057
+ visible: typing.Optional[builtins.bool] = None,
5908
6058
  ) -> _Metric_e396a4dc:
5909
6059
  '''(deprecated) Metric for number of searchable documents.
5910
6060
 
5911
6061
  :param account: Account which this metric comes from. Default: - Deployment account.
5912
6062
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
5913
6063
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
6064
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
5914
6065
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
5915
6066
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
5916
6067
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -5918,6 +6069,7 @@ class _IDomainProxy(
5918
6069
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
5919
6070
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
5920
6071
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
6072
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
5921
6073
 
5922
6074
  :default: maximum over 5 minutes
5923
6075
 
@@ -5929,6 +6081,7 @@ class _IDomainProxy(
5929
6081
  account=account,
5930
6082
  color=color,
5931
6083
  dimensions_map=dimensions_map,
6084
+ id=id,
5932
6085
  label=label,
5933
6086
  period=period,
5934
6087
  region=region,
@@ -5936,6 +6089,7 @@ class _IDomainProxy(
5936
6089
  stack_region=stack_region,
5937
6090
  statistic=statistic,
5938
6091
  unit=unit,
6092
+ visible=visible,
5939
6093
  )
5940
6094
 
5941
6095
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricSearchableDocuments", [props]))
@@ -5947,6 +6101,7 @@ class _IDomainProxy(
5947
6101
  account: typing.Optional[builtins.str] = None,
5948
6102
  color: typing.Optional[builtins.str] = None,
5949
6103
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
6104
+ id: typing.Optional[builtins.str] = None,
5950
6105
  label: typing.Optional[builtins.str] = None,
5951
6106
  period: typing.Optional[_Duration_4839e8c3] = None,
5952
6107
  region: typing.Optional[builtins.str] = None,
@@ -5954,12 +6109,14 @@ class _IDomainProxy(
5954
6109
  stack_region: typing.Optional[builtins.str] = None,
5955
6110
  statistic: typing.Optional[builtins.str] = None,
5956
6111
  unit: typing.Optional[_Unit_61bc6f70] = None,
6112
+ visible: typing.Optional[builtins.bool] = None,
5957
6113
  ) -> _Metric_e396a4dc:
5958
6114
  '''(deprecated) Metric for search latency.
5959
6115
 
5960
6116
  :param account: Account which this metric comes from. Default: - Deployment account.
5961
6117
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
5962
6118
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
6119
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
5963
6120
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
5964
6121
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
5965
6122
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -5967,6 +6124,7 @@ class _IDomainProxy(
5967
6124
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
5968
6125
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
5969
6126
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
6127
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
5970
6128
 
5971
6129
  :default: p99 over 5 minutes
5972
6130
 
@@ -5978,6 +6136,7 @@ class _IDomainProxy(
5978
6136
  account=account,
5979
6137
  color=color,
5980
6138
  dimensions_map=dimensions_map,
6139
+ id=id,
5981
6140
  label=label,
5982
6141
  period=period,
5983
6142
  region=region,
@@ -5985,6 +6144,7 @@ class _IDomainProxy(
5985
6144
  stack_region=stack_region,
5986
6145
  statistic=statistic,
5987
6146
  unit=unit,
6147
+ visible=visible,
5988
6148
  )
5989
6149
 
5990
6150
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricSearchLatency", [props]))
@@ -6703,6 +6863,7 @@ class Domain(
6703
6863
  account: typing.Optional[builtins.str] = None,
6704
6864
  color: typing.Optional[builtins.str] = None,
6705
6865
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
6866
+ id: typing.Optional[builtins.str] = None,
6706
6867
  label: typing.Optional[builtins.str] = None,
6707
6868
  period: typing.Optional[_Duration_4839e8c3] = None,
6708
6869
  region: typing.Optional[builtins.str] = None,
@@ -6710,6 +6871,7 @@ class Domain(
6710
6871
  stack_region: typing.Optional[builtins.str] = None,
6711
6872
  statistic: typing.Optional[builtins.str] = None,
6712
6873
  unit: typing.Optional[_Unit_61bc6f70] = None,
6874
+ visible: typing.Optional[builtins.bool] = None,
6713
6875
  ) -> _Metric_e396a4dc:
6714
6876
  '''(deprecated) Return the given named metric for this Domain.
6715
6877
 
@@ -6717,6 +6879,7 @@ class Domain(
6717
6879
  :param account: Account which this metric comes from. Default: - Deployment account.
6718
6880
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
6719
6881
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
6882
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
6720
6883
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
6721
6884
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
6722
6885
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -6724,6 +6887,7 @@ class Domain(
6724
6887
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
6725
6888
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
6726
6889
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
6890
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
6727
6891
 
6728
6892
  :deprecated: use opensearchservice module instead
6729
6893
 
@@ -6736,6 +6900,7 @@ class Domain(
6736
6900
  account=account,
6737
6901
  color=color,
6738
6902
  dimensions_map=dimensions_map,
6903
+ id=id,
6739
6904
  label=label,
6740
6905
  period=period,
6741
6906
  region=region,
@@ -6743,6 +6908,7 @@ class Domain(
6743
6908
  stack_region=stack_region,
6744
6909
  statistic=statistic,
6745
6910
  unit=unit,
6911
+ visible=visible,
6746
6912
  )
6747
6913
 
6748
6914
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metric", [metric_name, props]))
@@ -6754,6 +6920,7 @@ class Domain(
6754
6920
  account: typing.Optional[builtins.str] = None,
6755
6921
  color: typing.Optional[builtins.str] = None,
6756
6922
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
6923
+ id: typing.Optional[builtins.str] = None,
6757
6924
  label: typing.Optional[builtins.str] = None,
6758
6925
  period: typing.Optional[_Duration_4839e8c3] = None,
6759
6926
  region: typing.Optional[builtins.str] = None,
@@ -6761,12 +6928,14 @@ class Domain(
6761
6928
  stack_region: typing.Optional[builtins.str] = None,
6762
6929
  statistic: typing.Optional[builtins.str] = None,
6763
6930
  unit: typing.Optional[_Unit_61bc6f70] = None,
6931
+ visible: typing.Optional[builtins.bool] = None,
6764
6932
  ) -> _Metric_e396a4dc:
6765
6933
  '''(deprecated) Metric for automated snapshot failures.
6766
6934
 
6767
6935
  :param account: Account which this metric comes from. Default: - Deployment account.
6768
6936
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
6769
6937
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
6938
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
6770
6939
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
6771
6940
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
6772
6941
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -6774,6 +6943,7 @@ class Domain(
6774
6943
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
6775
6944
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
6776
6945
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
6946
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
6777
6947
 
6778
6948
  :default: maximum over 5 minutes
6779
6949
 
@@ -6785,6 +6955,7 @@ class Domain(
6785
6955
  account=account,
6786
6956
  color=color,
6787
6957
  dimensions_map=dimensions_map,
6958
+ id=id,
6788
6959
  label=label,
6789
6960
  period=period,
6790
6961
  region=region,
@@ -6792,6 +6963,7 @@ class Domain(
6792
6963
  stack_region=stack_region,
6793
6964
  statistic=statistic,
6794
6965
  unit=unit,
6966
+ visible=visible,
6795
6967
  )
6796
6968
 
6797
6969
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricAutomatedSnapshotFailure", [props]))
@@ -6803,6 +6975,7 @@ class Domain(
6803
6975
  account: typing.Optional[builtins.str] = None,
6804
6976
  color: typing.Optional[builtins.str] = None,
6805
6977
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
6978
+ id: typing.Optional[builtins.str] = None,
6806
6979
  label: typing.Optional[builtins.str] = None,
6807
6980
  period: typing.Optional[_Duration_4839e8c3] = None,
6808
6981
  region: typing.Optional[builtins.str] = None,
@@ -6810,12 +6983,14 @@ class Domain(
6810
6983
  stack_region: typing.Optional[builtins.str] = None,
6811
6984
  statistic: typing.Optional[builtins.str] = None,
6812
6985
  unit: typing.Optional[_Unit_61bc6f70] = None,
6986
+ visible: typing.Optional[builtins.bool] = None,
6813
6987
  ) -> _Metric_e396a4dc:
6814
6988
  '''(deprecated) Metric for the cluster blocking index writes.
6815
6989
 
6816
6990
  :param account: Account which this metric comes from. Default: - Deployment account.
6817
6991
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
6818
6992
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
6993
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
6819
6994
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
6820
6995
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
6821
6996
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -6823,6 +6998,7 @@ class Domain(
6823
6998
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
6824
6999
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
6825
7000
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
7001
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
6826
7002
 
6827
7003
  :default: maximum over 1 minute
6828
7004
 
@@ -6834,6 +7010,7 @@ class Domain(
6834
7010
  account=account,
6835
7011
  color=color,
6836
7012
  dimensions_map=dimensions_map,
7013
+ id=id,
6837
7014
  label=label,
6838
7015
  period=period,
6839
7016
  region=region,
@@ -6841,6 +7018,7 @@ class Domain(
6841
7018
  stack_region=stack_region,
6842
7019
  statistic=statistic,
6843
7020
  unit=unit,
7021
+ visible=visible,
6844
7022
  )
6845
7023
 
6846
7024
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricClusterIndexWritesBlocked", [props]))
@@ -6852,6 +7030,7 @@ class Domain(
6852
7030
  account: typing.Optional[builtins.str] = None,
6853
7031
  color: typing.Optional[builtins.str] = None,
6854
7032
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
7033
+ id: typing.Optional[builtins.str] = None,
6855
7034
  label: typing.Optional[builtins.str] = None,
6856
7035
  period: typing.Optional[_Duration_4839e8c3] = None,
6857
7036
  region: typing.Optional[builtins.str] = None,
@@ -6859,12 +7038,14 @@ class Domain(
6859
7038
  stack_region: typing.Optional[builtins.str] = None,
6860
7039
  statistic: typing.Optional[builtins.str] = None,
6861
7040
  unit: typing.Optional[_Unit_61bc6f70] = None,
7041
+ visible: typing.Optional[builtins.bool] = None,
6862
7042
  ) -> _Metric_e396a4dc:
6863
7043
  '''(deprecated) Metric for the time the cluster status is red.
6864
7044
 
6865
7045
  :param account: Account which this metric comes from. Default: - Deployment account.
6866
7046
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
6867
7047
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
7048
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
6868
7049
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
6869
7050
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
6870
7051
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -6872,6 +7053,7 @@ class Domain(
6872
7053
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
6873
7054
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
6874
7055
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
7056
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
6875
7057
 
6876
7058
  :default: maximum over 5 minutes
6877
7059
 
@@ -6883,6 +7065,7 @@ class Domain(
6883
7065
  account=account,
6884
7066
  color=color,
6885
7067
  dimensions_map=dimensions_map,
7068
+ id=id,
6886
7069
  label=label,
6887
7070
  period=period,
6888
7071
  region=region,
@@ -6890,6 +7073,7 @@ class Domain(
6890
7073
  stack_region=stack_region,
6891
7074
  statistic=statistic,
6892
7075
  unit=unit,
7076
+ visible=visible,
6893
7077
  )
6894
7078
 
6895
7079
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricClusterStatusRed", [props]))
@@ -6901,6 +7085,7 @@ class Domain(
6901
7085
  account: typing.Optional[builtins.str] = None,
6902
7086
  color: typing.Optional[builtins.str] = None,
6903
7087
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
7088
+ id: typing.Optional[builtins.str] = None,
6904
7089
  label: typing.Optional[builtins.str] = None,
6905
7090
  period: typing.Optional[_Duration_4839e8c3] = None,
6906
7091
  region: typing.Optional[builtins.str] = None,
@@ -6908,12 +7093,14 @@ class Domain(
6908
7093
  stack_region: typing.Optional[builtins.str] = None,
6909
7094
  statistic: typing.Optional[builtins.str] = None,
6910
7095
  unit: typing.Optional[_Unit_61bc6f70] = None,
7096
+ visible: typing.Optional[builtins.bool] = None,
6911
7097
  ) -> _Metric_e396a4dc:
6912
7098
  '''(deprecated) Metric for the time the cluster status is yellow.
6913
7099
 
6914
7100
  :param account: Account which this metric comes from. Default: - Deployment account.
6915
7101
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
6916
7102
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
7103
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
6917
7104
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
6918
7105
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
6919
7106
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -6921,6 +7108,7 @@ class Domain(
6921
7108
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
6922
7109
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
6923
7110
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
7111
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
6924
7112
 
6925
7113
  :default: maximum over 5 minutes
6926
7114
 
@@ -6932,6 +7120,7 @@ class Domain(
6932
7120
  account=account,
6933
7121
  color=color,
6934
7122
  dimensions_map=dimensions_map,
7123
+ id=id,
6935
7124
  label=label,
6936
7125
  period=period,
6937
7126
  region=region,
@@ -6939,6 +7128,7 @@ class Domain(
6939
7128
  stack_region=stack_region,
6940
7129
  statistic=statistic,
6941
7130
  unit=unit,
7131
+ visible=visible,
6942
7132
  )
6943
7133
 
6944
7134
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricClusterStatusYellow", [props]))
@@ -6950,6 +7140,7 @@ class Domain(
6950
7140
  account: typing.Optional[builtins.str] = None,
6951
7141
  color: typing.Optional[builtins.str] = None,
6952
7142
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
7143
+ id: typing.Optional[builtins.str] = None,
6953
7144
  label: typing.Optional[builtins.str] = None,
6954
7145
  period: typing.Optional[_Duration_4839e8c3] = None,
6955
7146
  region: typing.Optional[builtins.str] = None,
@@ -6957,12 +7148,14 @@ class Domain(
6957
7148
  stack_region: typing.Optional[builtins.str] = None,
6958
7149
  statistic: typing.Optional[builtins.str] = None,
6959
7150
  unit: typing.Optional[_Unit_61bc6f70] = None,
7151
+ visible: typing.Optional[builtins.bool] = None,
6960
7152
  ) -> _Metric_e396a4dc:
6961
7153
  '''(deprecated) Metric for CPU utilization.
6962
7154
 
6963
7155
  :param account: Account which this metric comes from. Default: - Deployment account.
6964
7156
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
6965
7157
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
7158
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
6966
7159
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
6967
7160
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
6968
7161
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -6970,6 +7163,7 @@ class Domain(
6970
7163
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
6971
7164
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
6972
7165
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
7166
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
6973
7167
 
6974
7168
  :default: maximum over 5 minutes
6975
7169
 
@@ -6981,6 +7175,7 @@ class Domain(
6981
7175
  account=account,
6982
7176
  color=color,
6983
7177
  dimensions_map=dimensions_map,
7178
+ id=id,
6984
7179
  label=label,
6985
7180
  period=period,
6986
7181
  region=region,
@@ -6988,6 +7183,7 @@ class Domain(
6988
7183
  stack_region=stack_region,
6989
7184
  statistic=statistic,
6990
7185
  unit=unit,
7186
+ visible=visible,
6991
7187
  )
6992
7188
 
6993
7189
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricCPUUtilization", [props]))
@@ -6999,6 +7195,7 @@ class Domain(
6999
7195
  account: typing.Optional[builtins.str] = None,
7000
7196
  color: typing.Optional[builtins.str] = None,
7001
7197
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
7198
+ id: typing.Optional[builtins.str] = None,
7002
7199
  label: typing.Optional[builtins.str] = None,
7003
7200
  period: typing.Optional[_Duration_4839e8c3] = None,
7004
7201
  region: typing.Optional[builtins.str] = None,
@@ -7006,12 +7203,14 @@ class Domain(
7006
7203
  stack_region: typing.Optional[builtins.str] = None,
7007
7204
  statistic: typing.Optional[builtins.str] = None,
7008
7205
  unit: typing.Optional[_Unit_61bc6f70] = None,
7206
+ visible: typing.Optional[builtins.bool] = None,
7009
7207
  ) -> _Metric_e396a4dc:
7010
7208
  '''(deprecated) Metric for the storage space of nodes in the cluster.
7011
7209
 
7012
7210
  :param account: Account which this metric comes from. Default: - Deployment account.
7013
7211
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
7014
7212
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
7213
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
7015
7214
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
7016
7215
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
7017
7216
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -7019,6 +7218,7 @@ class Domain(
7019
7218
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
7020
7219
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
7021
7220
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
7221
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
7022
7222
 
7023
7223
  :default: minimum over 5 minutes
7024
7224
 
@@ -7030,6 +7230,7 @@ class Domain(
7030
7230
  account=account,
7031
7231
  color=color,
7032
7232
  dimensions_map=dimensions_map,
7233
+ id=id,
7033
7234
  label=label,
7034
7235
  period=period,
7035
7236
  region=region,
@@ -7037,6 +7238,7 @@ class Domain(
7037
7238
  stack_region=stack_region,
7038
7239
  statistic=statistic,
7039
7240
  unit=unit,
7241
+ visible=visible,
7040
7242
  )
7041
7243
 
7042
7244
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricFreeStorageSpace", [props]))
@@ -7048,6 +7250,7 @@ class Domain(
7048
7250
  account: typing.Optional[builtins.str] = None,
7049
7251
  color: typing.Optional[builtins.str] = None,
7050
7252
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
7253
+ id: typing.Optional[builtins.str] = None,
7051
7254
  label: typing.Optional[builtins.str] = None,
7052
7255
  period: typing.Optional[_Duration_4839e8c3] = None,
7053
7256
  region: typing.Optional[builtins.str] = None,
@@ -7055,12 +7258,14 @@ class Domain(
7055
7258
  stack_region: typing.Optional[builtins.str] = None,
7056
7259
  statistic: typing.Optional[builtins.str] = None,
7057
7260
  unit: typing.Optional[_Unit_61bc6f70] = None,
7261
+ visible: typing.Optional[builtins.bool] = None,
7058
7262
  ) -> _Metric_e396a4dc:
7059
7263
  '''(deprecated) Metric for indexing latency.
7060
7264
 
7061
7265
  :param account: Account which this metric comes from. Default: - Deployment account.
7062
7266
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
7063
7267
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
7268
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
7064
7269
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
7065
7270
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
7066
7271
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -7068,6 +7273,7 @@ class Domain(
7068
7273
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
7069
7274
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
7070
7275
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
7276
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
7071
7277
 
7072
7278
  :default: p99 over 5 minutes
7073
7279
 
@@ -7079,6 +7285,7 @@ class Domain(
7079
7285
  account=account,
7080
7286
  color=color,
7081
7287
  dimensions_map=dimensions_map,
7288
+ id=id,
7082
7289
  label=label,
7083
7290
  period=period,
7084
7291
  region=region,
@@ -7086,6 +7293,7 @@ class Domain(
7086
7293
  stack_region=stack_region,
7087
7294
  statistic=statistic,
7088
7295
  unit=unit,
7296
+ visible=visible,
7089
7297
  )
7090
7298
 
7091
7299
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricIndexingLatency", [props]))
@@ -7097,6 +7305,7 @@ class Domain(
7097
7305
  account: typing.Optional[builtins.str] = None,
7098
7306
  color: typing.Optional[builtins.str] = None,
7099
7307
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
7308
+ id: typing.Optional[builtins.str] = None,
7100
7309
  label: typing.Optional[builtins.str] = None,
7101
7310
  period: typing.Optional[_Duration_4839e8c3] = None,
7102
7311
  region: typing.Optional[builtins.str] = None,
@@ -7104,12 +7313,14 @@ class Domain(
7104
7313
  stack_region: typing.Optional[builtins.str] = None,
7105
7314
  statistic: typing.Optional[builtins.str] = None,
7106
7315
  unit: typing.Optional[_Unit_61bc6f70] = None,
7316
+ visible: typing.Optional[builtins.bool] = None,
7107
7317
  ) -> _Metric_e396a4dc:
7108
7318
  '''(deprecated) Metric for JVM memory pressure.
7109
7319
 
7110
7320
  :param account: Account which this metric comes from. Default: - Deployment account.
7111
7321
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
7112
7322
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
7323
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
7113
7324
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
7114
7325
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
7115
7326
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -7117,6 +7328,7 @@ class Domain(
7117
7328
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
7118
7329
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
7119
7330
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
7331
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
7120
7332
 
7121
7333
  :default: maximum over 5 minutes
7122
7334
 
@@ -7128,6 +7340,7 @@ class Domain(
7128
7340
  account=account,
7129
7341
  color=color,
7130
7342
  dimensions_map=dimensions_map,
7343
+ id=id,
7131
7344
  label=label,
7132
7345
  period=period,
7133
7346
  region=region,
@@ -7135,6 +7348,7 @@ class Domain(
7135
7348
  stack_region=stack_region,
7136
7349
  statistic=statistic,
7137
7350
  unit=unit,
7351
+ visible=visible,
7138
7352
  )
7139
7353
 
7140
7354
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricJVMMemoryPressure", [props]))
@@ -7146,6 +7360,7 @@ class Domain(
7146
7360
  account: typing.Optional[builtins.str] = None,
7147
7361
  color: typing.Optional[builtins.str] = None,
7148
7362
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
7363
+ id: typing.Optional[builtins.str] = None,
7149
7364
  label: typing.Optional[builtins.str] = None,
7150
7365
  period: typing.Optional[_Duration_4839e8c3] = None,
7151
7366
  region: typing.Optional[builtins.str] = None,
@@ -7153,12 +7368,14 @@ class Domain(
7153
7368
  stack_region: typing.Optional[builtins.str] = None,
7154
7369
  statistic: typing.Optional[builtins.str] = None,
7155
7370
  unit: typing.Optional[_Unit_61bc6f70] = None,
7371
+ visible: typing.Optional[builtins.bool] = None,
7156
7372
  ) -> _Metric_e396a4dc:
7157
7373
  '''(deprecated) Metric for KMS key errors.
7158
7374
 
7159
7375
  :param account: Account which this metric comes from. Default: - Deployment account.
7160
7376
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
7161
7377
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
7378
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
7162
7379
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
7163
7380
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
7164
7381
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -7166,6 +7383,7 @@ class Domain(
7166
7383
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
7167
7384
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
7168
7385
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
7386
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
7169
7387
 
7170
7388
  :default: maximum over 5 minutes
7171
7389
 
@@ -7177,6 +7395,7 @@ class Domain(
7177
7395
  account=account,
7178
7396
  color=color,
7179
7397
  dimensions_map=dimensions_map,
7398
+ id=id,
7180
7399
  label=label,
7181
7400
  period=period,
7182
7401
  region=region,
@@ -7184,6 +7403,7 @@ class Domain(
7184
7403
  stack_region=stack_region,
7185
7404
  statistic=statistic,
7186
7405
  unit=unit,
7406
+ visible=visible,
7187
7407
  )
7188
7408
 
7189
7409
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricKMSKeyError", [props]))
@@ -7195,6 +7415,7 @@ class Domain(
7195
7415
  account: typing.Optional[builtins.str] = None,
7196
7416
  color: typing.Optional[builtins.str] = None,
7197
7417
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
7418
+ id: typing.Optional[builtins.str] = None,
7198
7419
  label: typing.Optional[builtins.str] = None,
7199
7420
  period: typing.Optional[_Duration_4839e8c3] = None,
7200
7421
  region: typing.Optional[builtins.str] = None,
@@ -7202,12 +7423,14 @@ class Domain(
7202
7423
  stack_region: typing.Optional[builtins.str] = None,
7203
7424
  statistic: typing.Optional[builtins.str] = None,
7204
7425
  unit: typing.Optional[_Unit_61bc6f70] = None,
7426
+ visible: typing.Optional[builtins.bool] = None,
7205
7427
  ) -> _Metric_e396a4dc:
7206
7428
  '''(deprecated) Metric for KMS key being inaccessible.
7207
7429
 
7208
7430
  :param account: Account which this metric comes from. Default: - Deployment account.
7209
7431
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
7210
7432
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
7433
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
7211
7434
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
7212
7435
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
7213
7436
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -7215,6 +7438,7 @@ class Domain(
7215
7438
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
7216
7439
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
7217
7440
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
7441
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
7218
7442
 
7219
7443
  :default: maximum over 5 minutes
7220
7444
 
@@ -7226,6 +7450,7 @@ class Domain(
7226
7450
  account=account,
7227
7451
  color=color,
7228
7452
  dimensions_map=dimensions_map,
7453
+ id=id,
7229
7454
  label=label,
7230
7455
  period=period,
7231
7456
  region=region,
@@ -7233,6 +7458,7 @@ class Domain(
7233
7458
  stack_region=stack_region,
7234
7459
  statistic=statistic,
7235
7460
  unit=unit,
7461
+ visible=visible,
7236
7462
  )
7237
7463
 
7238
7464
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricKMSKeyInaccessible", [props]))
@@ -7244,6 +7470,7 @@ class Domain(
7244
7470
  account: typing.Optional[builtins.str] = None,
7245
7471
  color: typing.Optional[builtins.str] = None,
7246
7472
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
7473
+ id: typing.Optional[builtins.str] = None,
7247
7474
  label: typing.Optional[builtins.str] = None,
7248
7475
  period: typing.Optional[_Duration_4839e8c3] = None,
7249
7476
  region: typing.Optional[builtins.str] = None,
@@ -7251,12 +7478,14 @@ class Domain(
7251
7478
  stack_region: typing.Optional[builtins.str] = None,
7252
7479
  statistic: typing.Optional[builtins.str] = None,
7253
7480
  unit: typing.Optional[_Unit_61bc6f70] = None,
7481
+ visible: typing.Optional[builtins.bool] = None,
7254
7482
  ) -> _Metric_e396a4dc:
7255
7483
  '''(deprecated) Metric for master CPU utilization.
7256
7484
 
7257
7485
  :param account: Account which this metric comes from. Default: - Deployment account.
7258
7486
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
7259
7487
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
7488
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
7260
7489
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
7261
7490
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
7262
7491
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -7264,6 +7493,7 @@ class Domain(
7264
7493
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
7265
7494
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
7266
7495
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
7496
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
7267
7497
 
7268
7498
  :default: maximum over 5 minutes
7269
7499
 
@@ -7275,6 +7505,7 @@ class Domain(
7275
7505
  account=account,
7276
7506
  color=color,
7277
7507
  dimensions_map=dimensions_map,
7508
+ id=id,
7278
7509
  label=label,
7279
7510
  period=period,
7280
7511
  region=region,
@@ -7282,6 +7513,7 @@ class Domain(
7282
7513
  stack_region=stack_region,
7283
7514
  statistic=statistic,
7284
7515
  unit=unit,
7516
+ visible=visible,
7285
7517
  )
7286
7518
 
7287
7519
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricMasterCPUUtilization", [props]))
@@ -7293,6 +7525,7 @@ class Domain(
7293
7525
  account: typing.Optional[builtins.str] = None,
7294
7526
  color: typing.Optional[builtins.str] = None,
7295
7527
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
7528
+ id: typing.Optional[builtins.str] = None,
7296
7529
  label: typing.Optional[builtins.str] = None,
7297
7530
  period: typing.Optional[_Duration_4839e8c3] = None,
7298
7531
  region: typing.Optional[builtins.str] = None,
@@ -7300,12 +7533,14 @@ class Domain(
7300
7533
  stack_region: typing.Optional[builtins.str] = None,
7301
7534
  statistic: typing.Optional[builtins.str] = None,
7302
7535
  unit: typing.Optional[_Unit_61bc6f70] = None,
7536
+ visible: typing.Optional[builtins.bool] = None,
7303
7537
  ) -> _Metric_e396a4dc:
7304
7538
  '''(deprecated) Metric for master JVM memory pressure.
7305
7539
 
7306
7540
  :param account: Account which this metric comes from. Default: - Deployment account.
7307
7541
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
7308
7542
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
7543
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
7309
7544
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
7310
7545
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
7311
7546
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -7313,6 +7548,7 @@ class Domain(
7313
7548
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
7314
7549
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
7315
7550
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
7551
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
7316
7552
 
7317
7553
  :default: maximum over 5 minutes
7318
7554
 
@@ -7324,6 +7560,7 @@ class Domain(
7324
7560
  account=account,
7325
7561
  color=color,
7326
7562
  dimensions_map=dimensions_map,
7563
+ id=id,
7327
7564
  label=label,
7328
7565
  period=period,
7329
7566
  region=region,
@@ -7331,6 +7568,7 @@ class Domain(
7331
7568
  stack_region=stack_region,
7332
7569
  statistic=statistic,
7333
7570
  unit=unit,
7571
+ visible=visible,
7334
7572
  )
7335
7573
 
7336
7574
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricMasterJVMMemoryPressure", [props]))
@@ -7342,6 +7580,7 @@ class Domain(
7342
7580
  account: typing.Optional[builtins.str] = None,
7343
7581
  color: typing.Optional[builtins.str] = None,
7344
7582
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
7583
+ id: typing.Optional[builtins.str] = None,
7345
7584
  label: typing.Optional[builtins.str] = None,
7346
7585
  period: typing.Optional[_Duration_4839e8c3] = None,
7347
7586
  region: typing.Optional[builtins.str] = None,
@@ -7349,12 +7588,14 @@ class Domain(
7349
7588
  stack_region: typing.Optional[builtins.str] = None,
7350
7589
  statistic: typing.Optional[builtins.str] = None,
7351
7590
  unit: typing.Optional[_Unit_61bc6f70] = None,
7591
+ visible: typing.Optional[builtins.bool] = None,
7352
7592
  ) -> _Metric_e396a4dc:
7353
7593
  '''(deprecated) Metric for the number of nodes.
7354
7594
 
7355
7595
  :param account: Account which this metric comes from. Default: - Deployment account.
7356
7596
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
7357
7597
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
7598
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
7358
7599
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
7359
7600
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
7360
7601
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -7362,6 +7603,7 @@ class Domain(
7362
7603
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
7363
7604
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
7364
7605
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
7606
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
7365
7607
 
7366
7608
  :default: minimum over 1 hour
7367
7609
 
@@ -7373,6 +7615,7 @@ class Domain(
7373
7615
  account=account,
7374
7616
  color=color,
7375
7617
  dimensions_map=dimensions_map,
7618
+ id=id,
7376
7619
  label=label,
7377
7620
  period=period,
7378
7621
  region=region,
@@ -7380,6 +7623,7 @@ class Domain(
7380
7623
  stack_region=stack_region,
7381
7624
  statistic=statistic,
7382
7625
  unit=unit,
7626
+ visible=visible,
7383
7627
  )
7384
7628
 
7385
7629
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricNodes", [props]))
@@ -7391,6 +7635,7 @@ class Domain(
7391
7635
  account: typing.Optional[builtins.str] = None,
7392
7636
  color: typing.Optional[builtins.str] = None,
7393
7637
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
7638
+ id: typing.Optional[builtins.str] = None,
7394
7639
  label: typing.Optional[builtins.str] = None,
7395
7640
  period: typing.Optional[_Duration_4839e8c3] = None,
7396
7641
  region: typing.Optional[builtins.str] = None,
@@ -7398,12 +7643,14 @@ class Domain(
7398
7643
  stack_region: typing.Optional[builtins.str] = None,
7399
7644
  statistic: typing.Optional[builtins.str] = None,
7400
7645
  unit: typing.Optional[_Unit_61bc6f70] = None,
7646
+ visible: typing.Optional[builtins.bool] = None,
7401
7647
  ) -> _Metric_e396a4dc:
7402
7648
  '''(deprecated) Metric for number of searchable documents.
7403
7649
 
7404
7650
  :param account: Account which this metric comes from. Default: - Deployment account.
7405
7651
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
7406
7652
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
7653
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
7407
7654
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
7408
7655
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
7409
7656
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -7411,6 +7658,7 @@ class Domain(
7411
7658
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
7412
7659
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
7413
7660
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
7661
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
7414
7662
 
7415
7663
  :default: maximum over 5 minutes
7416
7664
 
@@ -7422,6 +7670,7 @@ class Domain(
7422
7670
  account=account,
7423
7671
  color=color,
7424
7672
  dimensions_map=dimensions_map,
7673
+ id=id,
7425
7674
  label=label,
7426
7675
  period=period,
7427
7676
  region=region,
@@ -7429,6 +7678,7 @@ class Domain(
7429
7678
  stack_region=stack_region,
7430
7679
  statistic=statistic,
7431
7680
  unit=unit,
7681
+ visible=visible,
7432
7682
  )
7433
7683
 
7434
7684
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricSearchableDocuments", [props]))
@@ -7440,6 +7690,7 @@ class Domain(
7440
7690
  account: typing.Optional[builtins.str] = None,
7441
7691
  color: typing.Optional[builtins.str] = None,
7442
7692
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
7693
+ id: typing.Optional[builtins.str] = None,
7443
7694
  label: typing.Optional[builtins.str] = None,
7444
7695
  period: typing.Optional[_Duration_4839e8c3] = None,
7445
7696
  region: typing.Optional[builtins.str] = None,
@@ -7447,12 +7698,14 @@ class Domain(
7447
7698
  stack_region: typing.Optional[builtins.str] = None,
7448
7699
  statistic: typing.Optional[builtins.str] = None,
7449
7700
  unit: typing.Optional[_Unit_61bc6f70] = None,
7701
+ visible: typing.Optional[builtins.bool] = None,
7450
7702
  ) -> _Metric_e396a4dc:
7451
7703
  '''(deprecated) Metric for search latency.
7452
7704
 
7453
7705
  :param account: Account which this metric comes from. Default: - Deployment account.
7454
7706
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
7455
7707
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
7708
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
7456
7709
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
7457
7710
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
7458
7711
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -7460,6 +7713,7 @@ class Domain(
7460
7713
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
7461
7714
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
7462
7715
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
7716
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
7463
7717
 
7464
7718
  :default: p99 over 5 minutes
7465
7719
 
@@ -7471,6 +7725,7 @@ class Domain(
7471
7725
  account=account,
7472
7726
  color=color,
7473
7727
  dimensions_map=dimensions_map,
7728
+ id=id,
7474
7729
  label=label,
7475
7730
  period=period,
7476
7731
  region=region,
@@ -7478,6 +7733,7 @@ class Domain(
7478
7733
  stack_region=stack_region,
7479
7734
  statistic=statistic,
7480
7735
  unit=unit,
7736
+ visible=visible,
7481
7737
  )
7482
7738
 
7483
7739
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricSearchLatency", [props]))
@@ -8057,6 +8313,7 @@ def _typecheckingstub__d57eb3601bc759c24057dad569672fc2cb9079f04ceb6aebc5be032bb
8057
8313
  account: typing.Optional[builtins.str] = None,
8058
8314
  color: typing.Optional[builtins.str] = None,
8059
8315
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
8316
+ id: typing.Optional[builtins.str] = None,
8060
8317
  label: typing.Optional[builtins.str] = None,
8061
8318
  period: typing.Optional[_Duration_4839e8c3] = None,
8062
8319
  region: typing.Optional[builtins.str] = None,
@@ -8064,6 +8321,7 @@ def _typecheckingstub__d57eb3601bc759c24057dad569672fc2cb9079f04ceb6aebc5be032bb
8064
8321
  stack_region: typing.Optional[builtins.str] = None,
8065
8322
  statistic: typing.Optional[builtins.str] = None,
8066
8323
  unit: typing.Optional[_Unit_61bc6f70] = None,
8324
+ visible: typing.Optional[builtins.bool] = None,
8067
8325
  ) -> None:
8068
8326
  """Type checking stubs"""
8069
8327
  pass
@@ -8210,6 +8468,7 @@ def _typecheckingstub__a5543e4b1f496b09cc4a434231d283ad21ff49080e145c70f79d585e6
8210
8468
  account: typing.Optional[builtins.str] = None,
8211
8469
  color: typing.Optional[builtins.str] = None,
8212
8470
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
8471
+ id: typing.Optional[builtins.str] = None,
8213
8472
  label: typing.Optional[builtins.str] = None,
8214
8473
  period: typing.Optional[_Duration_4839e8c3] = None,
8215
8474
  region: typing.Optional[builtins.str] = None,
@@ -8217,6 +8476,7 @@ def _typecheckingstub__a5543e4b1f496b09cc4a434231d283ad21ff49080e145c70f79d585e6
8217
8476
  stack_region: typing.Optional[builtins.str] = None,
8218
8477
  statistic: typing.Optional[builtins.str] = None,
8219
8478
  unit: typing.Optional[_Unit_61bc6f70] = None,
8479
+ visible: typing.Optional[builtins.bool] = None,
8220
8480
  ) -> None:
8221
8481
  """Type checking stubs"""
8222
8482
  pass