aws-cdk-lib 2.174.1__py3-none-any.whl → 2.175.1__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 (36) hide show
  1. aws_cdk/_jsii/__init__.py +1 -1
  2. aws_cdk/_jsii/{aws-cdk-lib@2.174.1.jsii.tgz → aws-cdk-lib@2.175.1.jsii.tgz} +0 -0
  3. aws_cdk/aws_apigateway/__init__.py +164 -0
  4. aws_cdk/aws_apigatewayv2/__init__.py +248 -0
  5. aws_cdk/aws_applicationautoscaling/__init__.py +6 -3
  6. aws_cdk/aws_autoscaling/__init__.py +8 -8
  7. aws_cdk/aws_certificatemanager/__init__.py +28 -0
  8. aws_cdk/aws_chatbot/__init__.py +28 -0
  9. aws_cdk/aws_cloudfront/__init__.py +92 -0
  10. aws_cdk/aws_cloudfront/experimental/__init__.py +32 -0
  11. aws_cdk/aws_cloudwatch/__init__.py +146 -0
  12. aws_cdk/aws_codebuild/__init__.py +84 -0
  13. aws_cdk/aws_dynamodb/__init__.py +300 -0
  14. aws_cdk/aws_ec2/__init__.py +97 -0
  15. aws_cdk/aws_ecs/__init__.py +351 -110
  16. aws_cdk/aws_ecs_patterns/__init__.py +77 -42
  17. aws_cdk/aws_elasticloadbalancing/__init__.py +3 -6
  18. aws_cdk/aws_elasticloadbalancingv2/__init__.py +732 -7
  19. aws_cdk/aws_elasticsearch/__init__.py +260 -0
  20. aws_cdk/aws_kinesis/__init__.py +324 -0
  21. aws_cdk/aws_kms/__init__.py +197 -0
  22. aws_cdk/aws_lambda/__init__.py +144 -0
  23. aws_cdk/aws_logs/__init__.py +58 -0
  24. aws_cdk/aws_opensearchservice/__init__.py +260 -0
  25. aws_cdk/aws_rds/__init__.py +384 -0
  26. aws_cdk/aws_sns/__init__.py +164 -0
  27. aws_cdk/aws_sqs/__init__.py +164 -0
  28. aws_cdk/aws_stepfunctions/__init__.py +288 -0
  29. aws_cdk/aws_synthetics/__init__.py +18 -0
  30. aws_cdk/cx_api/__init__.py +42 -0
  31. {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.1.dist-info}/METADATA +1 -1
  32. {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.1.dist-info}/RECORD +36 -36
  33. {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.1.dist-info}/LICENSE +0 -0
  34. {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.1.dist-info}/NOTICE +0 -0
  35. {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.1.dist-info}/WHEEL +0 -0
  36. {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.1.dist-info}/top_level.txt +0 -0
@@ -4417,6 +4417,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4417
4417
  label: typing.Optional[builtins.str] = None,
4418
4418
  period: typing.Optional[_Duration_4839e8c3] = None,
4419
4419
  region: typing.Optional[builtins.str] = None,
4420
+ stack_account: typing.Optional[builtins.str] = None,
4421
+ stack_region: typing.Optional[builtins.str] = None,
4420
4422
  statistic: typing.Optional[builtins.str] = None,
4421
4423
  unit: typing.Optional[_Unit_61bc6f70] = None,
4422
4424
  ) -> _Metric_e396a4dc:
@@ -4429,6 +4431,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4429
4431
  :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
4430
4432
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4431
4433
  :param region: Region which this metric comes from. Default: - Deployment region.
4434
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
4435
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4432
4436
  :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
4433
4437
  :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
4434
4438
 
@@ -4448,6 +4452,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4448
4452
  label: typing.Optional[builtins.str] = None,
4449
4453
  period: typing.Optional[_Duration_4839e8c3] = None,
4450
4454
  region: typing.Optional[builtins.str] = None,
4455
+ stack_account: typing.Optional[builtins.str] = None,
4456
+ stack_region: typing.Optional[builtins.str] = None,
4451
4457
  statistic: typing.Optional[builtins.str] = None,
4452
4458
  unit: typing.Optional[_Unit_61bc6f70] = None,
4453
4459
  ) -> _Metric_e396a4dc:
@@ -4459,6 +4465,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4459
4465
  :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
4460
4466
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4461
4467
  :param region: Region which this metric comes from. Default: - Deployment region.
4468
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
4469
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4462
4470
  :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
4463
4471
  :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
4464
4472
 
@@ -4480,6 +4488,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4480
4488
  label: typing.Optional[builtins.str] = None,
4481
4489
  period: typing.Optional[_Duration_4839e8c3] = None,
4482
4490
  region: typing.Optional[builtins.str] = None,
4491
+ stack_account: typing.Optional[builtins.str] = None,
4492
+ stack_region: typing.Optional[builtins.str] = None,
4483
4493
  statistic: typing.Optional[builtins.str] = None,
4484
4494
  unit: typing.Optional[_Unit_61bc6f70] = None,
4485
4495
  ) -> _Metric_e396a4dc:
@@ -4491,6 +4501,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4491
4501
  :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
4492
4502
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4493
4503
  :param region: Region which this metric comes from. Default: - Deployment region.
4504
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
4505
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4494
4506
  :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
4495
4507
  :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
4496
4508
 
@@ -4512,6 +4524,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4512
4524
  label: typing.Optional[builtins.str] = None,
4513
4525
  period: typing.Optional[_Duration_4839e8c3] = None,
4514
4526
  region: typing.Optional[builtins.str] = None,
4527
+ stack_account: typing.Optional[builtins.str] = None,
4528
+ stack_region: typing.Optional[builtins.str] = None,
4515
4529
  statistic: typing.Optional[builtins.str] = None,
4516
4530
  unit: typing.Optional[_Unit_61bc6f70] = None,
4517
4531
  ) -> _Metric_e396a4dc:
@@ -4523,6 +4537,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4523
4537
  :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
4524
4538
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4525
4539
  :param region: Region which this metric comes from. Default: - Deployment region.
4540
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
4541
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4526
4542
  :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
4527
4543
  :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
4528
4544
 
@@ -4544,6 +4560,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4544
4560
  label: typing.Optional[builtins.str] = None,
4545
4561
  period: typing.Optional[_Duration_4839e8c3] = None,
4546
4562
  region: typing.Optional[builtins.str] = None,
4563
+ stack_account: typing.Optional[builtins.str] = None,
4564
+ stack_region: typing.Optional[builtins.str] = None,
4547
4565
  statistic: typing.Optional[builtins.str] = None,
4548
4566
  unit: typing.Optional[_Unit_61bc6f70] = None,
4549
4567
  ) -> _Metric_e396a4dc:
@@ -4555,6 +4573,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4555
4573
  :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
4556
4574
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4557
4575
  :param region: Region which this metric comes from. Default: - Deployment region.
4576
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
4577
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4558
4578
  :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
4559
4579
  :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
4560
4580
 
@@ -4576,6 +4596,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4576
4596
  label: typing.Optional[builtins.str] = None,
4577
4597
  period: typing.Optional[_Duration_4839e8c3] = None,
4578
4598
  region: typing.Optional[builtins.str] = None,
4599
+ stack_account: typing.Optional[builtins.str] = None,
4600
+ stack_region: typing.Optional[builtins.str] = None,
4579
4601
  statistic: typing.Optional[builtins.str] = None,
4580
4602
  unit: typing.Optional[_Unit_61bc6f70] = None,
4581
4603
  ) -> _Metric_e396a4dc:
@@ -4587,6 +4609,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4587
4609
  :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
4588
4610
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4589
4611
  :param region: Region which this metric comes from. Default: - Deployment region.
4612
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
4613
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4590
4614
  :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
4591
4615
  :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
4592
4616
 
@@ -4608,6 +4632,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4608
4632
  label: typing.Optional[builtins.str] = None,
4609
4633
  period: typing.Optional[_Duration_4839e8c3] = None,
4610
4634
  region: typing.Optional[builtins.str] = None,
4635
+ stack_account: typing.Optional[builtins.str] = None,
4636
+ stack_region: typing.Optional[builtins.str] = None,
4611
4637
  statistic: typing.Optional[builtins.str] = None,
4612
4638
  unit: typing.Optional[_Unit_61bc6f70] = None,
4613
4639
  ) -> _Metric_e396a4dc:
@@ -4619,6 +4645,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4619
4645
  :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
4620
4646
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4621
4647
  :param region: Region which this metric comes from. Default: - Deployment region.
4648
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
4649
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4622
4650
  :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
4623
4651
  :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
4624
4652
 
@@ -4640,6 +4668,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4640
4668
  label: typing.Optional[builtins.str] = None,
4641
4669
  period: typing.Optional[_Duration_4839e8c3] = None,
4642
4670
  region: typing.Optional[builtins.str] = None,
4671
+ stack_account: typing.Optional[builtins.str] = None,
4672
+ stack_region: typing.Optional[builtins.str] = None,
4643
4673
  statistic: typing.Optional[builtins.str] = None,
4644
4674
  unit: typing.Optional[_Unit_61bc6f70] = None,
4645
4675
  ) -> _Metric_e396a4dc:
@@ -4651,6 +4681,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4651
4681
  :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
4652
4682
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4653
4683
  :param region: Region which this metric comes from. Default: - Deployment region.
4684
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
4685
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4654
4686
  :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
4655
4687
  :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
4656
4688
 
@@ -4672,6 +4704,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4672
4704
  label: typing.Optional[builtins.str] = None,
4673
4705
  period: typing.Optional[_Duration_4839e8c3] = None,
4674
4706
  region: typing.Optional[builtins.str] = None,
4707
+ stack_account: typing.Optional[builtins.str] = None,
4708
+ stack_region: typing.Optional[builtins.str] = None,
4675
4709
  statistic: typing.Optional[builtins.str] = None,
4676
4710
  unit: typing.Optional[_Unit_61bc6f70] = None,
4677
4711
  ) -> _Metric_e396a4dc:
@@ -4683,6 +4717,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4683
4717
  :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
4684
4718
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4685
4719
  :param region: Region which this metric comes from. Default: - Deployment region.
4720
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
4721
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4686
4722
  :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
4723
  :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
4688
4724
 
@@ -4704,6 +4740,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4704
4740
  label: typing.Optional[builtins.str] = None,
4705
4741
  period: typing.Optional[_Duration_4839e8c3] = None,
4706
4742
  region: typing.Optional[builtins.str] = None,
4743
+ stack_account: typing.Optional[builtins.str] = None,
4744
+ stack_region: typing.Optional[builtins.str] = None,
4707
4745
  statistic: typing.Optional[builtins.str] = None,
4708
4746
  unit: typing.Optional[_Unit_61bc6f70] = None,
4709
4747
  ) -> _Metric_e396a4dc:
@@ -4715,6 +4753,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4715
4753
  :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
4716
4754
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4717
4755
  :param region: Region which this metric comes from. Default: - Deployment region.
4756
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
4757
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4718
4758
  :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
4719
4759
  :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
4720
4760
 
@@ -4736,6 +4776,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4736
4776
  label: typing.Optional[builtins.str] = None,
4737
4777
  period: typing.Optional[_Duration_4839e8c3] = None,
4738
4778
  region: typing.Optional[builtins.str] = None,
4779
+ stack_account: typing.Optional[builtins.str] = None,
4780
+ stack_region: typing.Optional[builtins.str] = None,
4739
4781
  statistic: typing.Optional[builtins.str] = None,
4740
4782
  unit: typing.Optional[_Unit_61bc6f70] = None,
4741
4783
  ) -> _Metric_e396a4dc:
@@ -4747,6 +4789,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4747
4789
  :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
4748
4790
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4749
4791
  :param region: Region which this metric comes from. Default: - Deployment region.
4792
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
4793
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4750
4794
  :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
4751
4795
  :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
4752
4796
 
@@ -4768,6 +4812,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4768
4812
  label: typing.Optional[builtins.str] = None,
4769
4813
  period: typing.Optional[_Duration_4839e8c3] = None,
4770
4814
  region: typing.Optional[builtins.str] = None,
4815
+ stack_account: typing.Optional[builtins.str] = None,
4816
+ stack_region: typing.Optional[builtins.str] = None,
4771
4817
  statistic: typing.Optional[builtins.str] = None,
4772
4818
  unit: typing.Optional[_Unit_61bc6f70] = None,
4773
4819
  ) -> _Metric_e396a4dc:
@@ -4779,6 +4825,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4779
4825
  :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
4780
4826
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4781
4827
  :param region: Region which this metric comes from. Default: - Deployment region.
4828
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
4829
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4782
4830
  :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
4783
4831
  :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
4784
4832
 
@@ -4800,6 +4848,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4800
4848
  label: typing.Optional[builtins.str] = None,
4801
4849
  period: typing.Optional[_Duration_4839e8c3] = None,
4802
4850
  region: typing.Optional[builtins.str] = None,
4851
+ stack_account: typing.Optional[builtins.str] = None,
4852
+ stack_region: typing.Optional[builtins.str] = None,
4803
4853
  statistic: typing.Optional[builtins.str] = None,
4804
4854
  unit: typing.Optional[_Unit_61bc6f70] = None,
4805
4855
  ) -> _Metric_e396a4dc:
@@ -4811,6 +4861,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4811
4861
  :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
4812
4862
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4813
4863
  :param region: Region which this metric comes from. Default: - Deployment region.
4864
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
4865
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4814
4866
  :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
4815
4867
  :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
4816
4868
 
@@ -4832,6 +4884,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4832
4884
  label: typing.Optional[builtins.str] = None,
4833
4885
  period: typing.Optional[_Duration_4839e8c3] = None,
4834
4886
  region: typing.Optional[builtins.str] = None,
4887
+ stack_account: typing.Optional[builtins.str] = None,
4888
+ stack_region: typing.Optional[builtins.str] = None,
4835
4889
  statistic: typing.Optional[builtins.str] = None,
4836
4890
  unit: typing.Optional[_Unit_61bc6f70] = None,
4837
4891
  ) -> _Metric_e396a4dc:
@@ -4843,6 +4897,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4843
4897
  :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
4844
4898
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4845
4899
  :param region: Region which this metric comes from. Default: - Deployment region.
4900
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
4901
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4846
4902
  :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
4847
4903
  :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
4848
4904
 
@@ -4864,6 +4920,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4864
4920
  label: typing.Optional[builtins.str] = None,
4865
4921
  period: typing.Optional[_Duration_4839e8c3] = None,
4866
4922
  region: typing.Optional[builtins.str] = None,
4923
+ stack_account: typing.Optional[builtins.str] = None,
4924
+ stack_region: typing.Optional[builtins.str] = None,
4867
4925
  statistic: typing.Optional[builtins.str] = None,
4868
4926
  unit: typing.Optional[_Unit_61bc6f70] = None,
4869
4927
  ) -> _Metric_e396a4dc:
@@ -4875,6 +4933,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4875
4933
  :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
4876
4934
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4877
4935
  :param region: Region which this metric comes from. Default: - Deployment region.
4936
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
4937
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4878
4938
  :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
4879
4939
  :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
4880
4940
 
@@ -4896,6 +4956,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4896
4956
  label: typing.Optional[builtins.str] = None,
4897
4957
  period: typing.Optional[_Duration_4839e8c3] = None,
4898
4958
  region: typing.Optional[builtins.str] = None,
4959
+ stack_account: typing.Optional[builtins.str] = None,
4960
+ stack_region: typing.Optional[builtins.str] = None,
4899
4961
  statistic: typing.Optional[builtins.str] = None,
4900
4962
  unit: typing.Optional[_Unit_61bc6f70] = None,
4901
4963
  ) -> _Metric_e396a4dc:
@@ -4907,6 +4969,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
4907
4969
  :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
4908
4970
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4909
4971
  :param region: Region which this metric comes from. Default: - Deployment region.
4972
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
4973
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4910
4974
  :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
4911
4975
  :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
4912
4976
 
@@ -5149,6 +5213,8 @@ class _IDomainProxy(
5149
5213
  label: typing.Optional[builtins.str] = None,
5150
5214
  period: typing.Optional[_Duration_4839e8c3] = None,
5151
5215
  region: typing.Optional[builtins.str] = None,
5216
+ stack_account: typing.Optional[builtins.str] = None,
5217
+ stack_region: typing.Optional[builtins.str] = None,
5152
5218
  statistic: typing.Optional[builtins.str] = None,
5153
5219
  unit: typing.Optional[_Unit_61bc6f70] = None,
5154
5220
  ) -> _Metric_e396a4dc:
@@ -5161,6 +5227,8 @@ class _IDomainProxy(
5161
5227
  :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
5162
5228
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
5163
5229
  :param region: Region which this metric comes from. Default: - Deployment region.
5230
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
5231
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
5164
5232
  :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
5165
5233
  :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
5166
5234
 
@@ -5178,6 +5246,8 @@ class _IDomainProxy(
5178
5246
  label=label,
5179
5247
  period=period,
5180
5248
  region=region,
5249
+ stack_account=stack_account,
5250
+ stack_region=stack_region,
5181
5251
  statistic=statistic,
5182
5252
  unit=unit,
5183
5253
  )
@@ -5194,6 +5264,8 @@ class _IDomainProxy(
5194
5264
  label: typing.Optional[builtins.str] = None,
5195
5265
  period: typing.Optional[_Duration_4839e8c3] = None,
5196
5266
  region: typing.Optional[builtins.str] = None,
5267
+ stack_account: typing.Optional[builtins.str] = None,
5268
+ stack_region: typing.Optional[builtins.str] = None,
5197
5269
  statistic: typing.Optional[builtins.str] = None,
5198
5270
  unit: typing.Optional[_Unit_61bc6f70] = None,
5199
5271
  ) -> _Metric_e396a4dc:
@@ -5205,6 +5277,8 @@ class _IDomainProxy(
5205
5277
  :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
5206
5278
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
5207
5279
  :param region: Region which this metric comes from. Default: - Deployment region.
5280
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
5281
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
5208
5282
  :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
5209
5283
  :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
5210
5284
 
@@ -5221,6 +5295,8 @@ class _IDomainProxy(
5221
5295
  label=label,
5222
5296
  period=period,
5223
5297
  region=region,
5298
+ stack_account=stack_account,
5299
+ stack_region=stack_region,
5224
5300
  statistic=statistic,
5225
5301
  unit=unit,
5226
5302
  )
@@ -5237,6 +5313,8 @@ class _IDomainProxy(
5237
5313
  label: typing.Optional[builtins.str] = None,
5238
5314
  period: typing.Optional[_Duration_4839e8c3] = None,
5239
5315
  region: typing.Optional[builtins.str] = None,
5316
+ stack_account: typing.Optional[builtins.str] = None,
5317
+ stack_region: typing.Optional[builtins.str] = None,
5240
5318
  statistic: typing.Optional[builtins.str] = None,
5241
5319
  unit: typing.Optional[_Unit_61bc6f70] = None,
5242
5320
  ) -> _Metric_e396a4dc:
@@ -5248,6 +5326,8 @@ class _IDomainProxy(
5248
5326
  :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
5249
5327
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
5250
5328
  :param region: Region which this metric comes from. Default: - Deployment region.
5329
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
5330
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
5251
5331
  :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
5252
5332
  :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
5253
5333
 
@@ -5264,6 +5344,8 @@ class _IDomainProxy(
5264
5344
  label=label,
5265
5345
  period=period,
5266
5346
  region=region,
5347
+ stack_account=stack_account,
5348
+ stack_region=stack_region,
5267
5349
  statistic=statistic,
5268
5350
  unit=unit,
5269
5351
  )
@@ -5280,6 +5362,8 @@ class _IDomainProxy(
5280
5362
  label: typing.Optional[builtins.str] = None,
5281
5363
  period: typing.Optional[_Duration_4839e8c3] = None,
5282
5364
  region: typing.Optional[builtins.str] = None,
5365
+ stack_account: typing.Optional[builtins.str] = None,
5366
+ stack_region: typing.Optional[builtins.str] = None,
5283
5367
  statistic: typing.Optional[builtins.str] = None,
5284
5368
  unit: typing.Optional[_Unit_61bc6f70] = None,
5285
5369
  ) -> _Metric_e396a4dc:
@@ -5291,6 +5375,8 @@ class _IDomainProxy(
5291
5375
  :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
5292
5376
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
5293
5377
  :param region: Region which this metric comes from. Default: - Deployment region.
5378
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
5379
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
5294
5380
  :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
5295
5381
  :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
5296
5382
 
@@ -5307,6 +5393,8 @@ class _IDomainProxy(
5307
5393
  label=label,
5308
5394
  period=period,
5309
5395
  region=region,
5396
+ stack_account=stack_account,
5397
+ stack_region=stack_region,
5310
5398
  statistic=statistic,
5311
5399
  unit=unit,
5312
5400
  )
@@ -5323,6 +5411,8 @@ class _IDomainProxy(
5323
5411
  label: typing.Optional[builtins.str] = None,
5324
5412
  period: typing.Optional[_Duration_4839e8c3] = None,
5325
5413
  region: typing.Optional[builtins.str] = None,
5414
+ stack_account: typing.Optional[builtins.str] = None,
5415
+ stack_region: typing.Optional[builtins.str] = None,
5326
5416
  statistic: typing.Optional[builtins.str] = None,
5327
5417
  unit: typing.Optional[_Unit_61bc6f70] = None,
5328
5418
  ) -> _Metric_e396a4dc:
@@ -5334,6 +5424,8 @@ class _IDomainProxy(
5334
5424
  :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
5335
5425
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
5336
5426
  :param region: Region which this metric comes from. Default: - Deployment region.
5427
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
5428
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
5337
5429
  :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
5338
5430
  :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
5339
5431
 
@@ -5350,6 +5442,8 @@ class _IDomainProxy(
5350
5442
  label=label,
5351
5443
  period=period,
5352
5444
  region=region,
5445
+ stack_account=stack_account,
5446
+ stack_region=stack_region,
5353
5447
  statistic=statistic,
5354
5448
  unit=unit,
5355
5449
  )
@@ -5366,6 +5460,8 @@ class _IDomainProxy(
5366
5460
  label: typing.Optional[builtins.str] = None,
5367
5461
  period: typing.Optional[_Duration_4839e8c3] = None,
5368
5462
  region: typing.Optional[builtins.str] = None,
5463
+ stack_account: typing.Optional[builtins.str] = None,
5464
+ stack_region: typing.Optional[builtins.str] = None,
5369
5465
  statistic: typing.Optional[builtins.str] = None,
5370
5466
  unit: typing.Optional[_Unit_61bc6f70] = None,
5371
5467
  ) -> _Metric_e396a4dc:
@@ -5377,6 +5473,8 @@ class _IDomainProxy(
5377
5473
  :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
5378
5474
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
5379
5475
  :param region: Region which this metric comes from. Default: - Deployment region.
5476
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
5477
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
5380
5478
  :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
5479
  :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
5382
5480
 
@@ -5393,6 +5491,8 @@ class _IDomainProxy(
5393
5491
  label=label,
5394
5492
  period=period,
5395
5493
  region=region,
5494
+ stack_account=stack_account,
5495
+ stack_region=stack_region,
5396
5496
  statistic=statistic,
5397
5497
  unit=unit,
5398
5498
  )
@@ -5409,6 +5509,8 @@ class _IDomainProxy(
5409
5509
  label: typing.Optional[builtins.str] = None,
5410
5510
  period: typing.Optional[_Duration_4839e8c3] = None,
5411
5511
  region: typing.Optional[builtins.str] = None,
5512
+ stack_account: typing.Optional[builtins.str] = None,
5513
+ stack_region: typing.Optional[builtins.str] = None,
5412
5514
  statistic: typing.Optional[builtins.str] = None,
5413
5515
  unit: typing.Optional[_Unit_61bc6f70] = None,
5414
5516
  ) -> _Metric_e396a4dc:
@@ -5420,6 +5522,8 @@ class _IDomainProxy(
5420
5522
  :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
5421
5523
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
5422
5524
  :param region: Region which this metric comes from. Default: - Deployment region.
5525
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
5526
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
5423
5527
  :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
5424
5528
  :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
5425
5529
 
@@ -5436,6 +5540,8 @@ class _IDomainProxy(
5436
5540
  label=label,
5437
5541
  period=period,
5438
5542
  region=region,
5543
+ stack_account=stack_account,
5544
+ stack_region=stack_region,
5439
5545
  statistic=statistic,
5440
5546
  unit=unit,
5441
5547
  )
@@ -5452,6 +5558,8 @@ class _IDomainProxy(
5452
5558
  label: typing.Optional[builtins.str] = None,
5453
5559
  period: typing.Optional[_Duration_4839e8c3] = None,
5454
5560
  region: typing.Optional[builtins.str] = None,
5561
+ stack_account: typing.Optional[builtins.str] = None,
5562
+ stack_region: typing.Optional[builtins.str] = None,
5455
5563
  statistic: typing.Optional[builtins.str] = None,
5456
5564
  unit: typing.Optional[_Unit_61bc6f70] = None,
5457
5565
  ) -> _Metric_e396a4dc:
@@ -5463,6 +5571,8 @@ class _IDomainProxy(
5463
5571
  :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
5464
5572
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
5465
5573
  :param region: Region which this metric comes from. Default: - Deployment region.
5574
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
5575
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
5466
5576
  :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
5467
5577
  :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
5468
5578
 
@@ -5479,6 +5589,8 @@ class _IDomainProxy(
5479
5589
  label=label,
5480
5590
  period=period,
5481
5591
  region=region,
5592
+ stack_account=stack_account,
5593
+ stack_region=stack_region,
5482
5594
  statistic=statistic,
5483
5595
  unit=unit,
5484
5596
  )
@@ -5495,6 +5607,8 @@ class _IDomainProxy(
5495
5607
  label: typing.Optional[builtins.str] = None,
5496
5608
  period: typing.Optional[_Duration_4839e8c3] = None,
5497
5609
  region: typing.Optional[builtins.str] = None,
5610
+ stack_account: typing.Optional[builtins.str] = None,
5611
+ stack_region: typing.Optional[builtins.str] = None,
5498
5612
  statistic: typing.Optional[builtins.str] = None,
5499
5613
  unit: typing.Optional[_Unit_61bc6f70] = None,
5500
5614
  ) -> _Metric_e396a4dc:
@@ -5506,6 +5620,8 @@ class _IDomainProxy(
5506
5620
  :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
5507
5621
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
5508
5622
  :param region: Region which this metric comes from. Default: - Deployment region.
5623
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
5624
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
5509
5625
  :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
5510
5626
  :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
5511
5627
 
@@ -5522,6 +5638,8 @@ class _IDomainProxy(
5522
5638
  label=label,
5523
5639
  period=period,
5524
5640
  region=region,
5641
+ stack_account=stack_account,
5642
+ stack_region=stack_region,
5525
5643
  statistic=statistic,
5526
5644
  unit=unit,
5527
5645
  )
@@ -5538,6 +5656,8 @@ class _IDomainProxy(
5538
5656
  label: typing.Optional[builtins.str] = None,
5539
5657
  period: typing.Optional[_Duration_4839e8c3] = None,
5540
5658
  region: typing.Optional[builtins.str] = None,
5659
+ stack_account: typing.Optional[builtins.str] = None,
5660
+ stack_region: typing.Optional[builtins.str] = None,
5541
5661
  statistic: typing.Optional[builtins.str] = None,
5542
5662
  unit: typing.Optional[_Unit_61bc6f70] = None,
5543
5663
  ) -> _Metric_e396a4dc:
@@ -5549,6 +5669,8 @@ class _IDomainProxy(
5549
5669
  :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
5550
5670
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
5551
5671
  :param region: Region which this metric comes from. Default: - Deployment region.
5672
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
5673
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
5552
5674
  :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
5553
5675
  :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
5554
5676
 
@@ -5565,6 +5687,8 @@ class _IDomainProxy(
5565
5687
  label=label,
5566
5688
  period=period,
5567
5689
  region=region,
5690
+ stack_account=stack_account,
5691
+ stack_region=stack_region,
5568
5692
  statistic=statistic,
5569
5693
  unit=unit,
5570
5694
  )
@@ -5581,6 +5705,8 @@ class _IDomainProxy(
5581
5705
  label: typing.Optional[builtins.str] = None,
5582
5706
  period: typing.Optional[_Duration_4839e8c3] = None,
5583
5707
  region: typing.Optional[builtins.str] = None,
5708
+ stack_account: typing.Optional[builtins.str] = None,
5709
+ stack_region: typing.Optional[builtins.str] = None,
5584
5710
  statistic: typing.Optional[builtins.str] = None,
5585
5711
  unit: typing.Optional[_Unit_61bc6f70] = None,
5586
5712
  ) -> _Metric_e396a4dc:
@@ -5592,6 +5718,8 @@ class _IDomainProxy(
5592
5718
  :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
5593
5719
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
5594
5720
  :param region: Region which this metric comes from. Default: - Deployment region.
5721
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
5722
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
5595
5723
  :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
5596
5724
  :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
5597
5725
 
@@ -5608,6 +5736,8 @@ class _IDomainProxy(
5608
5736
  label=label,
5609
5737
  period=period,
5610
5738
  region=region,
5739
+ stack_account=stack_account,
5740
+ stack_region=stack_region,
5611
5741
  statistic=statistic,
5612
5742
  unit=unit,
5613
5743
  )
@@ -5624,6 +5754,8 @@ class _IDomainProxy(
5624
5754
  label: typing.Optional[builtins.str] = None,
5625
5755
  period: typing.Optional[_Duration_4839e8c3] = None,
5626
5756
  region: typing.Optional[builtins.str] = None,
5757
+ stack_account: typing.Optional[builtins.str] = None,
5758
+ stack_region: typing.Optional[builtins.str] = None,
5627
5759
  statistic: typing.Optional[builtins.str] = None,
5628
5760
  unit: typing.Optional[_Unit_61bc6f70] = None,
5629
5761
  ) -> _Metric_e396a4dc:
@@ -5635,6 +5767,8 @@ class _IDomainProxy(
5635
5767
  :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
5636
5768
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
5637
5769
  :param region: Region which this metric comes from. Default: - Deployment region.
5770
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
5771
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
5638
5772
  :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
5639
5773
  :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
5640
5774
 
@@ -5651,6 +5785,8 @@ class _IDomainProxy(
5651
5785
  label=label,
5652
5786
  period=period,
5653
5787
  region=region,
5788
+ stack_account=stack_account,
5789
+ stack_region=stack_region,
5654
5790
  statistic=statistic,
5655
5791
  unit=unit,
5656
5792
  )
@@ -5667,6 +5803,8 @@ class _IDomainProxy(
5667
5803
  label: typing.Optional[builtins.str] = None,
5668
5804
  period: typing.Optional[_Duration_4839e8c3] = None,
5669
5805
  region: typing.Optional[builtins.str] = None,
5806
+ stack_account: typing.Optional[builtins.str] = None,
5807
+ stack_region: typing.Optional[builtins.str] = None,
5670
5808
  statistic: typing.Optional[builtins.str] = None,
5671
5809
  unit: typing.Optional[_Unit_61bc6f70] = None,
5672
5810
  ) -> _Metric_e396a4dc:
@@ -5678,6 +5816,8 @@ class _IDomainProxy(
5678
5816
  :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
5679
5817
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
5680
5818
  :param region: Region which this metric comes from. Default: - Deployment region.
5819
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
5820
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
5681
5821
  :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
5682
5822
  :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
5683
5823
 
@@ -5694,6 +5834,8 @@ class _IDomainProxy(
5694
5834
  label=label,
5695
5835
  period=period,
5696
5836
  region=region,
5837
+ stack_account=stack_account,
5838
+ stack_region=stack_region,
5697
5839
  statistic=statistic,
5698
5840
  unit=unit,
5699
5841
  )
@@ -5710,6 +5852,8 @@ class _IDomainProxy(
5710
5852
  label: typing.Optional[builtins.str] = None,
5711
5853
  period: typing.Optional[_Duration_4839e8c3] = None,
5712
5854
  region: typing.Optional[builtins.str] = None,
5855
+ stack_account: typing.Optional[builtins.str] = None,
5856
+ stack_region: typing.Optional[builtins.str] = None,
5713
5857
  statistic: typing.Optional[builtins.str] = None,
5714
5858
  unit: typing.Optional[_Unit_61bc6f70] = None,
5715
5859
  ) -> _Metric_e396a4dc:
@@ -5721,6 +5865,8 @@ class _IDomainProxy(
5721
5865
  :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
5722
5866
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
5723
5867
  :param region: Region which this metric comes from. Default: - Deployment region.
5868
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
5869
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
5724
5870
  :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
5725
5871
  :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
5726
5872
 
@@ -5737,6 +5883,8 @@ class _IDomainProxy(
5737
5883
  label=label,
5738
5884
  period=period,
5739
5885
  region=region,
5886
+ stack_account=stack_account,
5887
+ stack_region=stack_region,
5740
5888
  statistic=statistic,
5741
5889
  unit=unit,
5742
5890
  )
@@ -5753,6 +5901,8 @@ class _IDomainProxy(
5753
5901
  label: typing.Optional[builtins.str] = None,
5754
5902
  period: typing.Optional[_Duration_4839e8c3] = None,
5755
5903
  region: typing.Optional[builtins.str] = None,
5904
+ stack_account: typing.Optional[builtins.str] = None,
5905
+ stack_region: typing.Optional[builtins.str] = None,
5756
5906
  statistic: typing.Optional[builtins.str] = None,
5757
5907
  unit: typing.Optional[_Unit_61bc6f70] = None,
5758
5908
  ) -> _Metric_e396a4dc:
@@ -5764,6 +5914,8 @@ class _IDomainProxy(
5764
5914
  :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
5765
5915
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
5766
5916
  :param region: Region which this metric comes from. Default: - Deployment region.
5917
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
5918
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
5767
5919
  :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
5768
5920
  :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
5769
5921
 
@@ -5780,6 +5932,8 @@ class _IDomainProxy(
5780
5932
  label=label,
5781
5933
  period=period,
5782
5934
  region=region,
5935
+ stack_account=stack_account,
5936
+ stack_region=stack_region,
5783
5937
  statistic=statistic,
5784
5938
  unit=unit,
5785
5939
  )
@@ -5796,6 +5950,8 @@ class _IDomainProxy(
5796
5950
  label: typing.Optional[builtins.str] = None,
5797
5951
  period: typing.Optional[_Duration_4839e8c3] = None,
5798
5952
  region: typing.Optional[builtins.str] = None,
5953
+ stack_account: typing.Optional[builtins.str] = None,
5954
+ stack_region: typing.Optional[builtins.str] = None,
5799
5955
  statistic: typing.Optional[builtins.str] = None,
5800
5956
  unit: typing.Optional[_Unit_61bc6f70] = None,
5801
5957
  ) -> _Metric_e396a4dc:
@@ -5807,6 +5963,8 @@ class _IDomainProxy(
5807
5963
  :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
5808
5964
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
5809
5965
  :param region: Region which this metric comes from. Default: - Deployment region.
5966
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
5967
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
5810
5968
  :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
5811
5969
  :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
5812
5970
 
@@ -5823,6 +5981,8 @@ class _IDomainProxy(
5823
5981
  label=label,
5824
5982
  period=period,
5825
5983
  region=region,
5984
+ stack_account=stack_account,
5985
+ stack_region=stack_region,
5826
5986
  statistic=statistic,
5827
5987
  unit=unit,
5828
5988
  )
@@ -6546,6 +6706,8 @@ class Domain(
6546
6706
  label: typing.Optional[builtins.str] = None,
6547
6707
  period: typing.Optional[_Duration_4839e8c3] = None,
6548
6708
  region: typing.Optional[builtins.str] = None,
6709
+ stack_account: typing.Optional[builtins.str] = None,
6710
+ stack_region: typing.Optional[builtins.str] = None,
6549
6711
  statistic: typing.Optional[builtins.str] = None,
6550
6712
  unit: typing.Optional[_Unit_61bc6f70] = None,
6551
6713
  ) -> _Metric_e396a4dc:
@@ -6558,6 +6720,8 @@ class Domain(
6558
6720
  :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
6559
6721
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
6560
6722
  :param region: Region which this metric comes from. Default: - Deployment region.
6723
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
6724
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
6561
6725
  :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
6562
6726
  :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
6563
6727
 
@@ -6575,6 +6739,8 @@ class Domain(
6575
6739
  label=label,
6576
6740
  period=period,
6577
6741
  region=region,
6742
+ stack_account=stack_account,
6743
+ stack_region=stack_region,
6578
6744
  statistic=statistic,
6579
6745
  unit=unit,
6580
6746
  )
@@ -6591,6 +6757,8 @@ class Domain(
6591
6757
  label: typing.Optional[builtins.str] = None,
6592
6758
  period: typing.Optional[_Duration_4839e8c3] = None,
6593
6759
  region: typing.Optional[builtins.str] = None,
6760
+ stack_account: typing.Optional[builtins.str] = None,
6761
+ stack_region: typing.Optional[builtins.str] = None,
6594
6762
  statistic: typing.Optional[builtins.str] = None,
6595
6763
  unit: typing.Optional[_Unit_61bc6f70] = None,
6596
6764
  ) -> _Metric_e396a4dc:
@@ -6602,6 +6770,8 @@ class Domain(
6602
6770
  :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
6603
6771
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
6604
6772
  :param region: Region which this metric comes from. Default: - Deployment region.
6773
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
6774
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
6605
6775
  :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
6606
6776
  :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
6607
6777
 
@@ -6618,6 +6788,8 @@ class Domain(
6618
6788
  label=label,
6619
6789
  period=period,
6620
6790
  region=region,
6791
+ stack_account=stack_account,
6792
+ stack_region=stack_region,
6621
6793
  statistic=statistic,
6622
6794
  unit=unit,
6623
6795
  )
@@ -6634,6 +6806,8 @@ class Domain(
6634
6806
  label: typing.Optional[builtins.str] = None,
6635
6807
  period: typing.Optional[_Duration_4839e8c3] = None,
6636
6808
  region: typing.Optional[builtins.str] = None,
6809
+ stack_account: typing.Optional[builtins.str] = None,
6810
+ stack_region: typing.Optional[builtins.str] = None,
6637
6811
  statistic: typing.Optional[builtins.str] = None,
6638
6812
  unit: typing.Optional[_Unit_61bc6f70] = None,
6639
6813
  ) -> _Metric_e396a4dc:
@@ -6645,6 +6819,8 @@ class Domain(
6645
6819
  :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
6646
6820
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
6647
6821
  :param region: Region which this metric comes from. Default: - Deployment region.
6822
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
6823
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
6648
6824
  :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
6649
6825
  :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
6650
6826
 
@@ -6661,6 +6837,8 @@ class Domain(
6661
6837
  label=label,
6662
6838
  period=period,
6663
6839
  region=region,
6840
+ stack_account=stack_account,
6841
+ stack_region=stack_region,
6664
6842
  statistic=statistic,
6665
6843
  unit=unit,
6666
6844
  )
@@ -6677,6 +6855,8 @@ class Domain(
6677
6855
  label: typing.Optional[builtins.str] = None,
6678
6856
  period: typing.Optional[_Duration_4839e8c3] = None,
6679
6857
  region: typing.Optional[builtins.str] = None,
6858
+ stack_account: typing.Optional[builtins.str] = None,
6859
+ stack_region: typing.Optional[builtins.str] = None,
6680
6860
  statistic: typing.Optional[builtins.str] = None,
6681
6861
  unit: typing.Optional[_Unit_61bc6f70] = None,
6682
6862
  ) -> _Metric_e396a4dc:
@@ -6688,6 +6868,8 @@ class Domain(
6688
6868
  :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
6689
6869
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
6690
6870
  :param region: Region which this metric comes from. Default: - Deployment region.
6871
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
6872
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
6691
6873
  :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
6692
6874
  :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
6693
6875
 
@@ -6704,6 +6886,8 @@ class Domain(
6704
6886
  label=label,
6705
6887
  period=period,
6706
6888
  region=region,
6889
+ stack_account=stack_account,
6890
+ stack_region=stack_region,
6707
6891
  statistic=statistic,
6708
6892
  unit=unit,
6709
6893
  )
@@ -6720,6 +6904,8 @@ class Domain(
6720
6904
  label: typing.Optional[builtins.str] = None,
6721
6905
  period: typing.Optional[_Duration_4839e8c3] = None,
6722
6906
  region: typing.Optional[builtins.str] = None,
6907
+ stack_account: typing.Optional[builtins.str] = None,
6908
+ stack_region: typing.Optional[builtins.str] = None,
6723
6909
  statistic: typing.Optional[builtins.str] = None,
6724
6910
  unit: typing.Optional[_Unit_61bc6f70] = None,
6725
6911
  ) -> _Metric_e396a4dc:
@@ -6731,6 +6917,8 @@ class Domain(
6731
6917
  :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
6732
6918
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
6733
6919
  :param region: Region which this metric comes from. Default: - Deployment region.
6920
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
6921
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
6734
6922
  :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
6735
6923
  :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
6736
6924
 
@@ -6747,6 +6935,8 @@ class Domain(
6747
6935
  label=label,
6748
6936
  period=period,
6749
6937
  region=region,
6938
+ stack_account=stack_account,
6939
+ stack_region=stack_region,
6750
6940
  statistic=statistic,
6751
6941
  unit=unit,
6752
6942
  )
@@ -6763,6 +6953,8 @@ class Domain(
6763
6953
  label: typing.Optional[builtins.str] = None,
6764
6954
  period: typing.Optional[_Duration_4839e8c3] = None,
6765
6955
  region: typing.Optional[builtins.str] = None,
6956
+ stack_account: typing.Optional[builtins.str] = None,
6957
+ stack_region: typing.Optional[builtins.str] = None,
6766
6958
  statistic: typing.Optional[builtins.str] = None,
6767
6959
  unit: typing.Optional[_Unit_61bc6f70] = None,
6768
6960
  ) -> _Metric_e396a4dc:
@@ -6774,6 +6966,8 @@ class Domain(
6774
6966
  :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
6775
6967
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
6776
6968
  :param region: Region which this metric comes from. Default: - Deployment region.
6969
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
6970
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
6777
6971
  :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
6778
6972
  :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
6779
6973
 
@@ -6790,6 +6984,8 @@ class Domain(
6790
6984
  label=label,
6791
6985
  period=period,
6792
6986
  region=region,
6987
+ stack_account=stack_account,
6988
+ stack_region=stack_region,
6793
6989
  statistic=statistic,
6794
6990
  unit=unit,
6795
6991
  )
@@ -6806,6 +7002,8 @@ class Domain(
6806
7002
  label: typing.Optional[builtins.str] = None,
6807
7003
  period: typing.Optional[_Duration_4839e8c3] = None,
6808
7004
  region: typing.Optional[builtins.str] = None,
7005
+ stack_account: typing.Optional[builtins.str] = None,
7006
+ stack_region: typing.Optional[builtins.str] = None,
6809
7007
  statistic: typing.Optional[builtins.str] = None,
6810
7008
  unit: typing.Optional[_Unit_61bc6f70] = None,
6811
7009
  ) -> _Metric_e396a4dc:
@@ -6817,6 +7015,8 @@ class Domain(
6817
7015
  :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
6818
7016
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
6819
7017
  :param region: Region which this metric comes from. Default: - Deployment region.
7018
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
7019
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
6820
7020
  :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
6821
7021
  :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
6822
7022
 
@@ -6833,6 +7033,8 @@ class Domain(
6833
7033
  label=label,
6834
7034
  period=period,
6835
7035
  region=region,
7036
+ stack_account=stack_account,
7037
+ stack_region=stack_region,
6836
7038
  statistic=statistic,
6837
7039
  unit=unit,
6838
7040
  )
@@ -6849,6 +7051,8 @@ class Domain(
6849
7051
  label: typing.Optional[builtins.str] = None,
6850
7052
  period: typing.Optional[_Duration_4839e8c3] = None,
6851
7053
  region: typing.Optional[builtins.str] = None,
7054
+ stack_account: typing.Optional[builtins.str] = None,
7055
+ stack_region: typing.Optional[builtins.str] = None,
6852
7056
  statistic: typing.Optional[builtins.str] = None,
6853
7057
  unit: typing.Optional[_Unit_61bc6f70] = None,
6854
7058
  ) -> _Metric_e396a4dc:
@@ -6860,6 +7064,8 @@ class Domain(
6860
7064
  :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
6861
7065
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
6862
7066
  :param region: Region which this metric comes from. Default: - Deployment region.
7067
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
7068
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
6863
7069
  :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
6864
7070
  :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
6865
7071
 
@@ -6876,6 +7082,8 @@ class Domain(
6876
7082
  label=label,
6877
7083
  period=period,
6878
7084
  region=region,
7085
+ stack_account=stack_account,
7086
+ stack_region=stack_region,
6879
7087
  statistic=statistic,
6880
7088
  unit=unit,
6881
7089
  )
@@ -6892,6 +7100,8 @@ class Domain(
6892
7100
  label: typing.Optional[builtins.str] = None,
6893
7101
  period: typing.Optional[_Duration_4839e8c3] = None,
6894
7102
  region: typing.Optional[builtins.str] = None,
7103
+ stack_account: typing.Optional[builtins.str] = None,
7104
+ stack_region: typing.Optional[builtins.str] = None,
6895
7105
  statistic: typing.Optional[builtins.str] = None,
6896
7106
  unit: typing.Optional[_Unit_61bc6f70] = None,
6897
7107
  ) -> _Metric_e396a4dc:
@@ -6903,6 +7113,8 @@ class Domain(
6903
7113
  :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
6904
7114
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
6905
7115
  :param region: Region which this metric comes from. Default: - Deployment region.
7116
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
7117
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
6906
7118
  :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
6907
7119
  :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
6908
7120
 
@@ -6919,6 +7131,8 @@ class Domain(
6919
7131
  label=label,
6920
7132
  period=period,
6921
7133
  region=region,
7134
+ stack_account=stack_account,
7135
+ stack_region=stack_region,
6922
7136
  statistic=statistic,
6923
7137
  unit=unit,
6924
7138
  )
@@ -6935,6 +7149,8 @@ class Domain(
6935
7149
  label: typing.Optional[builtins.str] = None,
6936
7150
  period: typing.Optional[_Duration_4839e8c3] = None,
6937
7151
  region: typing.Optional[builtins.str] = None,
7152
+ stack_account: typing.Optional[builtins.str] = None,
7153
+ stack_region: typing.Optional[builtins.str] = None,
6938
7154
  statistic: typing.Optional[builtins.str] = None,
6939
7155
  unit: typing.Optional[_Unit_61bc6f70] = None,
6940
7156
  ) -> _Metric_e396a4dc:
@@ -6946,6 +7162,8 @@ class Domain(
6946
7162
  :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
6947
7163
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
6948
7164
  :param region: Region which this metric comes from. Default: - Deployment region.
7165
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
7166
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
6949
7167
  :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
6950
7168
  :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
6951
7169
 
@@ -6962,6 +7180,8 @@ class Domain(
6962
7180
  label=label,
6963
7181
  period=period,
6964
7182
  region=region,
7183
+ stack_account=stack_account,
7184
+ stack_region=stack_region,
6965
7185
  statistic=statistic,
6966
7186
  unit=unit,
6967
7187
  )
@@ -6978,6 +7198,8 @@ class Domain(
6978
7198
  label: typing.Optional[builtins.str] = None,
6979
7199
  period: typing.Optional[_Duration_4839e8c3] = None,
6980
7200
  region: typing.Optional[builtins.str] = None,
7201
+ stack_account: typing.Optional[builtins.str] = None,
7202
+ stack_region: typing.Optional[builtins.str] = None,
6981
7203
  statistic: typing.Optional[builtins.str] = None,
6982
7204
  unit: typing.Optional[_Unit_61bc6f70] = None,
6983
7205
  ) -> _Metric_e396a4dc:
@@ -6989,6 +7211,8 @@ class Domain(
6989
7211
  :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
6990
7212
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
6991
7213
  :param region: Region which this metric comes from. Default: - Deployment region.
7214
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
7215
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
6992
7216
  :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
6993
7217
  :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
6994
7218
 
@@ -7005,6 +7229,8 @@ class Domain(
7005
7229
  label=label,
7006
7230
  period=period,
7007
7231
  region=region,
7232
+ stack_account=stack_account,
7233
+ stack_region=stack_region,
7008
7234
  statistic=statistic,
7009
7235
  unit=unit,
7010
7236
  )
@@ -7021,6 +7247,8 @@ class Domain(
7021
7247
  label: typing.Optional[builtins.str] = None,
7022
7248
  period: typing.Optional[_Duration_4839e8c3] = None,
7023
7249
  region: typing.Optional[builtins.str] = None,
7250
+ stack_account: typing.Optional[builtins.str] = None,
7251
+ stack_region: typing.Optional[builtins.str] = None,
7024
7252
  statistic: typing.Optional[builtins.str] = None,
7025
7253
  unit: typing.Optional[_Unit_61bc6f70] = None,
7026
7254
  ) -> _Metric_e396a4dc:
@@ -7032,6 +7260,8 @@ class Domain(
7032
7260
  :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
7033
7261
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
7034
7262
  :param region: Region which this metric comes from. Default: - Deployment region.
7263
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
7264
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
7035
7265
  :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
7036
7266
  :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
7037
7267
 
@@ -7048,6 +7278,8 @@ class Domain(
7048
7278
  label=label,
7049
7279
  period=period,
7050
7280
  region=region,
7281
+ stack_account=stack_account,
7282
+ stack_region=stack_region,
7051
7283
  statistic=statistic,
7052
7284
  unit=unit,
7053
7285
  )
@@ -7064,6 +7296,8 @@ class Domain(
7064
7296
  label: typing.Optional[builtins.str] = None,
7065
7297
  period: typing.Optional[_Duration_4839e8c3] = None,
7066
7298
  region: typing.Optional[builtins.str] = None,
7299
+ stack_account: typing.Optional[builtins.str] = None,
7300
+ stack_region: typing.Optional[builtins.str] = None,
7067
7301
  statistic: typing.Optional[builtins.str] = None,
7068
7302
  unit: typing.Optional[_Unit_61bc6f70] = None,
7069
7303
  ) -> _Metric_e396a4dc:
@@ -7075,6 +7309,8 @@ class Domain(
7075
7309
  :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
7076
7310
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
7077
7311
  :param region: Region which this metric comes from. Default: - Deployment region.
7312
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
7313
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
7078
7314
  :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
7079
7315
  :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
7080
7316
 
@@ -7091,6 +7327,8 @@ class Domain(
7091
7327
  label=label,
7092
7328
  period=period,
7093
7329
  region=region,
7330
+ stack_account=stack_account,
7331
+ stack_region=stack_region,
7094
7332
  statistic=statistic,
7095
7333
  unit=unit,
7096
7334
  )
@@ -7107,6 +7345,8 @@ class Domain(
7107
7345
  label: typing.Optional[builtins.str] = None,
7108
7346
  period: typing.Optional[_Duration_4839e8c3] = None,
7109
7347
  region: typing.Optional[builtins.str] = None,
7348
+ stack_account: typing.Optional[builtins.str] = None,
7349
+ stack_region: typing.Optional[builtins.str] = None,
7110
7350
  statistic: typing.Optional[builtins.str] = None,
7111
7351
  unit: typing.Optional[_Unit_61bc6f70] = None,
7112
7352
  ) -> _Metric_e396a4dc:
@@ -7118,6 +7358,8 @@ class Domain(
7118
7358
  :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
7119
7359
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
7120
7360
  :param region: Region which this metric comes from. Default: - Deployment region.
7361
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
7362
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
7121
7363
  :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
7122
7364
  :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
7123
7365
 
@@ -7134,6 +7376,8 @@ class Domain(
7134
7376
  label=label,
7135
7377
  period=period,
7136
7378
  region=region,
7379
+ stack_account=stack_account,
7380
+ stack_region=stack_region,
7137
7381
  statistic=statistic,
7138
7382
  unit=unit,
7139
7383
  )
@@ -7150,6 +7394,8 @@ class Domain(
7150
7394
  label: typing.Optional[builtins.str] = None,
7151
7395
  period: typing.Optional[_Duration_4839e8c3] = None,
7152
7396
  region: typing.Optional[builtins.str] = None,
7397
+ stack_account: typing.Optional[builtins.str] = None,
7398
+ stack_region: typing.Optional[builtins.str] = None,
7153
7399
  statistic: typing.Optional[builtins.str] = None,
7154
7400
  unit: typing.Optional[_Unit_61bc6f70] = None,
7155
7401
  ) -> _Metric_e396a4dc:
@@ -7161,6 +7407,8 @@ class Domain(
7161
7407
  :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
7162
7408
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
7163
7409
  :param region: Region which this metric comes from. Default: - Deployment region.
7410
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
7411
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
7164
7412
  :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
7165
7413
  :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
7414
 
@@ -7177,6 +7425,8 @@ class Domain(
7177
7425
  label=label,
7178
7426
  period=period,
7179
7427
  region=region,
7428
+ stack_account=stack_account,
7429
+ stack_region=stack_region,
7180
7430
  statistic=statistic,
7181
7431
  unit=unit,
7182
7432
  )
@@ -7193,6 +7443,8 @@ class Domain(
7193
7443
  label: typing.Optional[builtins.str] = None,
7194
7444
  period: typing.Optional[_Duration_4839e8c3] = None,
7195
7445
  region: typing.Optional[builtins.str] = None,
7446
+ stack_account: typing.Optional[builtins.str] = None,
7447
+ stack_region: typing.Optional[builtins.str] = None,
7196
7448
  statistic: typing.Optional[builtins.str] = None,
7197
7449
  unit: typing.Optional[_Unit_61bc6f70] = None,
7198
7450
  ) -> _Metric_e396a4dc:
@@ -7204,6 +7456,8 @@ class Domain(
7204
7456
  :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
7205
7457
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
7206
7458
  :param region: Region which this metric comes from. Default: - Deployment region.
7459
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
7460
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
7207
7461
  :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
7208
7462
  :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
7209
7463
 
@@ -7220,6 +7474,8 @@ class Domain(
7220
7474
  label=label,
7221
7475
  period=period,
7222
7476
  region=region,
7477
+ stack_account=stack_account,
7478
+ stack_region=stack_region,
7223
7479
  statistic=statistic,
7224
7480
  unit=unit,
7225
7481
  )
@@ -7795,6 +8051,8 @@ def _typecheckingstub__d57eb3601bc759c24057dad569672fc2cb9079f04ceb6aebc5be032bb
7795
8051
  label: typing.Optional[builtins.str] = None,
7796
8052
  period: typing.Optional[_Duration_4839e8c3] = None,
7797
8053
  region: typing.Optional[builtins.str] = None,
8054
+ stack_account: typing.Optional[builtins.str] = None,
8055
+ stack_region: typing.Optional[builtins.str] = None,
7798
8056
  statistic: typing.Optional[builtins.str] = None,
7799
8057
  unit: typing.Optional[_Unit_61bc6f70] = None,
7800
8058
  ) -> None:
@@ -7946,6 +8204,8 @@ def _typecheckingstub__a5543e4b1f496b09cc4a434231d283ad21ff49080e145c70f79d585e6
7946
8204
  label: typing.Optional[builtins.str] = None,
7947
8205
  period: typing.Optional[_Duration_4839e8c3] = None,
7948
8206
  region: typing.Optional[builtins.str] = None,
8207
+ stack_account: typing.Optional[builtins.str] = None,
8208
+ stack_region: typing.Optional[builtins.str] = None,
7949
8209
  statistic: typing.Optional[builtins.str] = None,
7950
8210
  unit: typing.Optional[_Unit_61bc6f70] = None,
7951
8211
  ) -> None: