aws-cdk-lib 2.174.1__py3-none-any.whl → 2.175.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


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

Files changed (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.0.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.0.dist-info}/METADATA +1 -1
  32. {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.0.dist-info}/RECORD +36 -36
  33. {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.0.dist-info}/LICENSE +0 -0
  34. {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.0.dist-info}/NOTICE +0 -0
  35. {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.0.dist-info}/WHEEL +0 -0
  36. {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.0.dist-info}/top_level.txt +0 -0
@@ -1583,6 +1583,8 @@ class IQueue(_IResource_c80c4260, typing_extensions.Protocol):
1583
1583
  label: typing.Optional[builtins.str] = None,
1584
1584
  period: typing.Optional[_Duration_4839e8c3] = None,
1585
1585
  region: typing.Optional[builtins.str] = None,
1586
+ stack_account: typing.Optional[builtins.str] = None,
1587
+ stack_region: typing.Optional[builtins.str] = None,
1586
1588
  statistic: typing.Optional[builtins.str] = None,
1587
1589
  unit: typing.Optional[_Unit_61bc6f70] = None,
1588
1590
  ) -> _Metric_e396a4dc:
@@ -1595,6 +1597,8 @@ class IQueue(_IResource_c80c4260, typing_extensions.Protocol):
1595
1597
  :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
1596
1598
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1597
1599
  :param region: Region which this metric comes from. Default: - Deployment region.
1600
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1601
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1598
1602
  :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
1599
1603
  :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
1600
1604
  '''
@@ -1610,6 +1614,8 @@ class IQueue(_IResource_c80c4260, typing_extensions.Protocol):
1610
1614
  label: typing.Optional[builtins.str] = None,
1611
1615
  period: typing.Optional[_Duration_4839e8c3] = None,
1612
1616
  region: typing.Optional[builtins.str] = None,
1617
+ stack_account: typing.Optional[builtins.str] = None,
1618
+ stack_region: typing.Optional[builtins.str] = None,
1613
1619
  statistic: typing.Optional[builtins.str] = None,
1614
1620
  unit: typing.Optional[_Unit_61bc6f70] = None,
1615
1621
  ) -> _Metric_e396a4dc:
@@ -1623,6 +1629,8 @@ class IQueue(_IResource_c80c4260, typing_extensions.Protocol):
1623
1629
  :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
1624
1630
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1625
1631
  :param region: Region which this metric comes from. Default: - Deployment region.
1632
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1633
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1626
1634
  :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
1627
1635
  :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
1628
1636
  '''
@@ -1638,6 +1646,8 @@ class IQueue(_IResource_c80c4260, typing_extensions.Protocol):
1638
1646
  label: typing.Optional[builtins.str] = None,
1639
1647
  period: typing.Optional[_Duration_4839e8c3] = None,
1640
1648
  region: typing.Optional[builtins.str] = None,
1649
+ stack_account: typing.Optional[builtins.str] = None,
1650
+ stack_region: typing.Optional[builtins.str] = None,
1641
1651
  statistic: typing.Optional[builtins.str] = None,
1642
1652
  unit: typing.Optional[_Unit_61bc6f70] = None,
1643
1653
  ) -> _Metric_e396a4dc:
@@ -1651,6 +1661,8 @@ class IQueue(_IResource_c80c4260, typing_extensions.Protocol):
1651
1661
  :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
1652
1662
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1653
1663
  :param region: Region which this metric comes from. Default: - Deployment region.
1664
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1665
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1654
1666
  :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
1655
1667
  :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
1656
1668
  '''
@@ -1666,6 +1678,8 @@ class IQueue(_IResource_c80c4260, typing_extensions.Protocol):
1666
1678
  label: typing.Optional[builtins.str] = None,
1667
1679
  period: typing.Optional[_Duration_4839e8c3] = None,
1668
1680
  region: typing.Optional[builtins.str] = None,
1681
+ stack_account: typing.Optional[builtins.str] = None,
1682
+ stack_region: typing.Optional[builtins.str] = None,
1669
1683
  statistic: typing.Optional[builtins.str] = None,
1670
1684
  unit: typing.Optional[_Unit_61bc6f70] = None,
1671
1685
  ) -> _Metric_e396a4dc:
@@ -1679,6 +1693,8 @@ class IQueue(_IResource_c80c4260, typing_extensions.Protocol):
1679
1693
  :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
1680
1694
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1681
1695
  :param region: Region which this metric comes from. Default: - Deployment region.
1696
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1697
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1682
1698
  :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
1683
1699
  :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
1684
1700
  '''
@@ -1694,6 +1710,8 @@ class IQueue(_IResource_c80c4260, typing_extensions.Protocol):
1694
1710
  label: typing.Optional[builtins.str] = None,
1695
1711
  period: typing.Optional[_Duration_4839e8c3] = None,
1696
1712
  region: typing.Optional[builtins.str] = None,
1713
+ stack_account: typing.Optional[builtins.str] = None,
1714
+ stack_region: typing.Optional[builtins.str] = None,
1697
1715
  statistic: typing.Optional[builtins.str] = None,
1698
1716
  unit: typing.Optional[_Unit_61bc6f70] = None,
1699
1717
  ) -> _Metric_e396a4dc:
@@ -1707,6 +1725,8 @@ class IQueue(_IResource_c80c4260, typing_extensions.Protocol):
1707
1725
  :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
1708
1726
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1709
1727
  :param region: Region which this metric comes from. Default: - Deployment region.
1728
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1729
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1710
1730
  :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
1711
1731
  :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
1712
1732
  '''
@@ -1722,6 +1742,8 @@ class IQueue(_IResource_c80c4260, typing_extensions.Protocol):
1722
1742
  label: typing.Optional[builtins.str] = None,
1723
1743
  period: typing.Optional[_Duration_4839e8c3] = None,
1724
1744
  region: typing.Optional[builtins.str] = None,
1745
+ stack_account: typing.Optional[builtins.str] = None,
1746
+ stack_region: typing.Optional[builtins.str] = None,
1725
1747
  statistic: typing.Optional[builtins.str] = None,
1726
1748
  unit: typing.Optional[_Unit_61bc6f70] = None,
1727
1749
  ) -> _Metric_e396a4dc:
@@ -1735,6 +1757,8 @@ class IQueue(_IResource_c80c4260, typing_extensions.Protocol):
1735
1757
  :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
1736
1758
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1737
1759
  :param region: Region which this metric comes from. Default: - Deployment region.
1760
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1761
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1738
1762
  :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
1739
1763
  :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
1740
1764
  '''
@@ -1750,6 +1774,8 @@ class IQueue(_IResource_c80c4260, typing_extensions.Protocol):
1750
1774
  label: typing.Optional[builtins.str] = None,
1751
1775
  period: typing.Optional[_Duration_4839e8c3] = None,
1752
1776
  region: typing.Optional[builtins.str] = None,
1777
+ stack_account: typing.Optional[builtins.str] = None,
1778
+ stack_region: typing.Optional[builtins.str] = None,
1753
1779
  statistic: typing.Optional[builtins.str] = None,
1754
1780
  unit: typing.Optional[_Unit_61bc6f70] = None,
1755
1781
  ) -> _Metric_e396a4dc:
@@ -1763,6 +1789,8 @@ class IQueue(_IResource_c80c4260, typing_extensions.Protocol):
1763
1789
  :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
1764
1790
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1765
1791
  :param region: Region which this metric comes from. Default: - Deployment region.
1792
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1793
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1766
1794
  :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
1767
1795
  :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
1768
1796
  '''
@@ -1778,6 +1806,8 @@ class IQueue(_IResource_c80c4260, typing_extensions.Protocol):
1778
1806
  label: typing.Optional[builtins.str] = None,
1779
1807
  period: typing.Optional[_Duration_4839e8c3] = None,
1780
1808
  region: typing.Optional[builtins.str] = None,
1809
+ stack_account: typing.Optional[builtins.str] = None,
1810
+ stack_region: typing.Optional[builtins.str] = None,
1781
1811
  statistic: typing.Optional[builtins.str] = None,
1782
1812
  unit: typing.Optional[_Unit_61bc6f70] = None,
1783
1813
  ) -> _Metric_e396a4dc:
@@ -1791,6 +1821,8 @@ class IQueue(_IResource_c80c4260, typing_extensions.Protocol):
1791
1821
  :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
1792
1822
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1793
1823
  :param region: Region which this metric comes from. Default: - Deployment region.
1824
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1825
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1794
1826
  :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
1795
1827
  :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
1796
1828
  '''
@@ -1806,6 +1838,8 @@ class IQueue(_IResource_c80c4260, typing_extensions.Protocol):
1806
1838
  label: typing.Optional[builtins.str] = None,
1807
1839
  period: typing.Optional[_Duration_4839e8c3] = None,
1808
1840
  region: typing.Optional[builtins.str] = None,
1841
+ stack_account: typing.Optional[builtins.str] = None,
1842
+ stack_region: typing.Optional[builtins.str] = None,
1809
1843
  statistic: typing.Optional[builtins.str] = None,
1810
1844
  unit: typing.Optional[_Unit_61bc6f70] = None,
1811
1845
  ) -> _Metric_e396a4dc:
@@ -1819,6 +1853,8 @@ class IQueue(_IResource_c80c4260, typing_extensions.Protocol):
1819
1853
  :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
1820
1854
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1821
1855
  :param region: Region which this metric comes from. Default: - Deployment region.
1856
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1857
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1822
1858
  :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
1823
1859
  :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
1824
1860
  '''
@@ -1834,6 +1870,8 @@ class IQueue(_IResource_c80c4260, typing_extensions.Protocol):
1834
1870
  label: typing.Optional[builtins.str] = None,
1835
1871
  period: typing.Optional[_Duration_4839e8c3] = None,
1836
1872
  region: typing.Optional[builtins.str] = None,
1873
+ stack_account: typing.Optional[builtins.str] = None,
1874
+ stack_region: typing.Optional[builtins.str] = None,
1837
1875
  statistic: typing.Optional[builtins.str] = None,
1838
1876
  unit: typing.Optional[_Unit_61bc6f70] = None,
1839
1877
  ) -> _Metric_e396a4dc:
@@ -1847,6 +1885,8 @@ class IQueue(_IResource_c80c4260, typing_extensions.Protocol):
1847
1885
  :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
1848
1886
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1849
1887
  :param region: Region which this metric comes from. Default: - Deployment region.
1888
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1889
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1850
1890
  :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
1851
1891
  :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
1852
1892
  '''
@@ -2007,6 +2047,8 @@ class _IQueueProxy(
2007
2047
  label: typing.Optional[builtins.str] = None,
2008
2048
  period: typing.Optional[_Duration_4839e8c3] = None,
2009
2049
  region: typing.Optional[builtins.str] = None,
2050
+ stack_account: typing.Optional[builtins.str] = None,
2051
+ stack_region: typing.Optional[builtins.str] = None,
2010
2052
  statistic: typing.Optional[builtins.str] = None,
2011
2053
  unit: typing.Optional[_Unit_61bc6f70] = None,
2012
2054
  ) -> _Metric_e396a4dc:
@@ -2019,6 +2061,8 @@ class _IQueueProxy(
2019
2061
  :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
2020
2062
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2021
2063
  :param region: Region which this metric comes from. Default: - Deployment region.
2064
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2065
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2022
2066
  :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
2023
2067
  :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
2024
2068
  '''
@@ -2032,6 +2076,8 @@ class _IQueueProxy(
2032
2076
  label=label,
2033
2077
  period=period,
2034
2078
  region=region,
2079
+ stack_account=stack_account,
2080
+ stack_region=stack_region,
2035
2081
  statistic=statistic,
2036
2082
  unit=unit,
2037
2083
  )
@@ -2048,6 +2094,8 @@ class _IQueueProxy(
2048
2094
  label: typing.Optional[builtins.str] = None,
2049
2095
  period: typing.Optional[_Duration_4839e8c3] = None,
2050
2096
  region: typing.Optional[builtins.str] = None,
2097
+ stack_account: typing.Optional[builtins.str] = None,
2098
+ stack_region: typing.Optional[builtins.str] = None,
2051
2099
  statistic: typing.Optional[builtins.str] = None,
2052
2100
  unit: typing.Optional[_Unit_61bc6f70] = None,
2053
2101
  ) -> _Metric_e396a4dc:
@@ -2061,6 +2109,8 @@ class _IQueueProxy(
2061
2109
  :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
2062
2110
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2063
2111
  :param region: Region which this metric comes from. Default: - Deployment region.
2112
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2113
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2064
2114
  :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
2065
2115
  :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
2066
2116
  '''
@@ -2071,6 +2121,8 @@ class _IQueueProxy(
2071
2121
  label=label,
2072
2122
  period=period,
2073
2123
  region=region,
2124
+ stack_account=stack_account,
2125
+ stack_region=stack_region,
2074
2126
  statistic=statistic,
2075
2127
  unit=unit,
2076
2128
  )
@@ -2087,6 +2139,8 @@ class _IQueueProxy(
2087
2139
  label: typing.Optional[builtins.str] = None,
2088
2140
  period: typing.Optional[_Duration_4839e8c3] = None,
2089
2141
  region: typing.Optional[builtins.str] = None,
2142
+ stack_account: typing.Optional[builtins.str] = None,
2143
+ stack_region: typing.Optional[builtins.str] = None,
2090
2144
  statistic: typing.Optional[builtins.str] = None,
2091
2145
  unit: typing.Optional[_Unit_61bc6f70] = None,
2092
2146
  ) -> _Metric_e396a4dc:
@@ -2100,6 +2154,8 @@ class _IQueueProxy(
2100
2154
  :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
2101
2155
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2102
2156
  :param region: Region which this metric comes from. Default: - Deployment region.
2157
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2158
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2103
2159
  :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
2104
2160
  :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
2105
2161
  '''
@@ -2110,6 +2166,8 @@ class _IQueueProxy(
2110
2166
  label=label,
2111
2167
  period=period,
2112
2168
  region=region,
2169
+ stack_account=stack_account,
2170
+ stack_region=stack_region,
2113
2171
  statistic=statistic,
2114
2172
  unit=unit,
2115
2173
  )
@@ -2126,6 +2184,8 @@ class _IQueueProxy(
2126
2184
  label: typing.Optional[builtins.str] = None,
2127
2185
  period: typing.Optional[_Duration_4839e8c3] = None,
2128
2186
  region: typing.Optional[builtins.str] = None,
2187
+ stack_account: typing.Optional[builtins.str] = None,
2188
+ stack_region: typing.Optional[builtins.str] = None,
2129
2189
  statistic: typing.Optional[builtins.str] = None,
2130
2190
  unit: typing.Optional[_Unit_61bc6f70] = None,
2131
2191
  ) -> _Metric_e396a4dc:
@@ -2139,6 +2199,8 @@ class _IQueueProxy(
2139
2199
  :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
2140
2200
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2141
2201
  :param region: Region which this metric comes from. Default: - Deployment region.
2202
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2203
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2142
2204
  :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
2143
2205
  :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
2144
2206
  '''
@@ -2149,6 +2211,8 @@ class _IQueueProxy(
2149
2211
  label=label,
2150
2212
  period=period,
2151
2213
  region=region,
2214
+ stack_account=stack_account,
2215
+ stack_region=stack_region,
2152
2216
  statistic=statistic,
2153
2217
  unit=unit,
2154
2218
  )
@@ -2165,6 +2229,8 @@ class _IQueueProxy(
2165
2229
  label: typing.Optional[builtins.str] = None,
2166
2230
  period: typing.Optional[_Duration_4839e8c3] = None,
2167
2231
  region: typing.Optional[builtins.str] = None,
2232
+ stack_account: typing.Optional[builtins.str] = None,
2233
+ stack_region: typing.Optional[builtins.str] = None,
2168
2234
  statistic: typing.Optional[builtins.str] = None,
2169
2235
  unit: typing.Optional[_Unit_61bc6f70] = None,
2170
2236
  ) -> _Metric_e396a4dc:
@@ -2178,6 +2244,8 @@ class _IQueueProxy(
2178
2244
  :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
2179
2245
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2180
2246
  :param region: Region which this metric comes from. Default: - Deployment region.
2247
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2248
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2181
2249
  :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
2182
2250
  :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
2183
2251
  '''
@@ -2188,6 +2256,8 @@ class _IQueueProxy(
2188
2256
  label=label,
2189
2257
  period=period,
2190
2258
  region=region,
2259
+ stack_account=stack_account,
2260
+ stack_region=stack_region,
2191
2261
  statistic=statistic,
2192
2262
  unit=unit,
2193
2263
  )
@@ -2204,6 +2274,8 @@ class _IQueueProxy(
2204
2274
  label: typing.Optional[builtins.str] = None,
2205
2275
  period: typing.Optional[_Duration_4839e8c3] = None,
2206
2276
  region: typing.Optional[builtins.str] = None,
2277
+ stack_account: typing.Optional[builtins.str] = None,
2278
+ stack_region: typing.Optional[builtins.str] = None,
2207
2279
  statistic: typing.Optional[builtins.str] = None,
2208
2280
  unit: typing.Optional[_Unit_61bc6f70] = None,
2209
2281
  ) -> _Metric_e396a4dc:
@@ -2217,6 +2289,8 @@ class _IQueueProxy(
2217
2289
  :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
2218
2290
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2219
2291
  :param region: Region which this metric comes from. Default: - Deployment region.
2292
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2293
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2220
2294
  :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
2221
2295
  :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
2222
2296
  '''
@@ -2227,6 +2301,8 @@ class _IQueueProxy(
2227
2301
  label=label,
2228
2302
  period=period,
2229
2303
  region=region,
2304
+ stack_account=stack_account,
2305
+ stack_region=stack_region,
2230
2306
  statistic=statistic,
2231
2307
  unit=unit,
2232
2308
  )
@@ -2243,6 +2319,8 @@ class _IQueueProxy(
2243
2319
  label: typing.Optional[builtins.str] = None,
2244
2320
  period: typing.Optional[_Duration_4839e8c3] = None,
2245
2321
  region: typing.Optional[builtins.str] = None,
2322
+ stack_account: typing.Optional[builtins.str] = None,
2323
+ stack_region: typing.Optional[builtins.str] = None,
2246
2324
  statistic: typing.Optional[builtins.str] = None,
2247
2325
  unit: typing.Optional[_Unit_61bc6f70] = None,
2248
2326
  ) -> _Metric_e396a4dc:
@@ -2256,6 +2334,8 @@ class _IQueueProxy(
2256
2334
  :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
2257
2335
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2258
2336
  :param region: Region which this metric comes from. Default: - Deployment region.
2337
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2338
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2259
2339
  :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
2260
2340
  :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
2261
2341
  '''
@@ -2266,6 +2346,8 @@ class _IQueueProxy(
2266
2346
  label=label,
2267
2347
  period=period,
2268
2348
  region=region,
2349
+ stack_account=stack_account,
2350
+ stack_region=stack_region,
2269
2351
  statistic=statistic,
2270
2352
  unit=unit,
2271
2353
  )
@@ -2282,6 +2364,8 @@ class _IQueueProxy(
2282
2364
  label: typing.Optional[builtins.str] = None,
2283
2365
  period: typing.Optional[_Duration_4839e8c3] = None,
2284
2366
  region: typing.Optional[builtins.str] = None,
2367
+ stack_account: typing.Optional[builtins.str] = None,
2368
+ stack_region: typing.Optional[builtins.str] = None,
2285
2369
  statistic: typing.Optional[builtins.str] = None,
2286
2370
  unit: typing.Optional[_Unit_61bc6f70] = None,
2287
2371
  ) -> _Metric_e396a4dc:
@@ -2295,6 +2379,8 @@ class _IQueueProxy(
2295
2379
  :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
2296
2380
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2297
2381
  :param region: Region which this metric comes from. Default: - Deployment region.
2382
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2383
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2298
2384
  :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
2299
2385
  :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
2300
2386
  '''
@@ -2305,6 +2391,8 @@ class _IQueueProxy(
2305
2391
  label=label,
2306
2392
  period=period,
2307
2393
  region=region,
2394
+ stack_account=stack_account,
2395
+ stack_region=stack_region,
2308
2396
  statistic=statistic,
2309
2397
  unit=unit,
2310
2398
  )
@@ -2321,6 +2409,8 @@ class _IQueueProxy(
2321
2409
  label: typing.Optional[builtins.str] = None,
2322
2410
  period: typing.Optional[_Duration_4839e8c3] = None,
2323
2411
  region: typing.Optional[builtins.str] = None,
2412
+ stack_account: typing.Optional[builtins.str] = None,
2413
+ stack_region: typing.Optional[builtins.str] = None,
2324
2414
  statistic: typing.Optional[builtins.str] = None,
2325
2415
  unit: typing.Optional[_Unit_61bc6f70] = None,
2326
2416
  ) -> _Metric_e396a4dc:
@@ -2334,6 +2424,8 @@ class _IQueueProxy(
2334
2424
  :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
2335
2425
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2336
2426
  :param region: Region which this metric comes from. Default: - Deployment region.
2427
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2428
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2337
2429
  :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
2338
2430
  :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
2339
2431
  '''
@@ -2344,6 +2436,8 @@ class _IQueueProxy(
2344
2436
  label=label,
2345
2437
  period=period,
2346
2438
  region=region,
2439
+ stack_account=stack_account,
2440
+ stack_region=stack_region,
2347
2441
  statistic=statistic,
2348
2442
  unit=unit,
2349
2443
  )
@@ -2360,6 +2454,8 @@ class _IQueueProxy(
2360
2454
  label: typing.Optional[builtins.str] = None,
2361
2455
  period: typing.Optional[_Duration_4839e8c3] = None,
2362
2456
  region: typing.Optional[builtins.str] = None,
2457
+ stack_account: typing.Optional[builtins.str] = None,
2458
+ stack_region: typing.Optional[builtins.str] = None,
2363
2459
  statistic: typing.Optional[builtins.str] = None,
2364
2460
  unit: typing.Optional[_Unit_61bc6f70] = None,
2365
2461
  ) -> _Metric_e396a4dc:
@@ -2373,6 +2469,8 @@ class _IQueueProxy(
2373
2469
  :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
2374
2470
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2375
2471
  :param region: Region which this metric comes from. Default: - Deployment region.
2472
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2473
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2376
2474
  :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
2377
2475
  :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
2378
2476
  '''
@@ -2383,6 +2481,8 @@ class _IQueueProxy(
2383
2481
  label=label,
2384
2482
  period=period,
2385
2483
  region=region,
2484
+ stack_account=stack_account,
2485
+ stack_region=stack_region,
2386
2486
  statistic=statistic,
2387
2487
  unit=unit,
2388
2488
  )
@@ -2671,6 +2771,8 @@ class QueueBase(
2671
2771
  label: typing.Optional[builtins.str] = None,
2672
2772
  period: typing.Optional[_Duration_4839e8c3] = None,
2673
2773
  region: typing.Optional[builtins.str] = None,
2774
+ stack_account: typing.Optional[builtins.str] = None,
2775
+ stack_region: typing.Optional[builtins.str] = None,
2674
2776
  statistic: typing.Optional[builtins.str] = None,
2675
2777
  unit: typing.Optional[_Unit_61bc6f70] = None,
2676
2778
  ) -> _Metric_e396a4dc:
@@ -2683,6 +2785,8 @@ class QueueBase(
2683
2785
  :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
2684
2786
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2685
2787
  :param region: Region which this metric comes from. Default: - Deployment region.
2788
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2789
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2686
2790
  :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
2687
2791
  :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
2688
2792
  '''
@@ -2696,6 +2800,8 @@ class QueueBase(
2696
2800
  label=label,
2697
2801
  period=period,
2698
2802
  region=region,
2803
+ stack_account=stack_account,
2804
+ stack_region=stack_region,
2699
2805
  statistic=statistic,
2700
2806
  unit=unit,
2701
2807
  )
@@ -2712,6 +2818,8 @@ class QueueBase(
2712
2818
  label: typing.Optional[builtins.str] = None,
2713
2819
  period: typing.Optional[_Duration_4839e8c3] = None,
2714
2820
  region: typing.Optional[builtins.str] = None,
2821
+ stack_account: typing.Optional[builtins.str] = None,
2822
+ stack_region: typing.Optional[builtins.str] = None,
2715
2823
  statistic: typing.Optional[builtins.str] = None,
2716
2824
  unit: typing.Optional[_Unit_61bc6f70] = None,
2717
2825
  ) -> _Metric_e396a4dc:
@@ -2725,6 +2833,8 @@ class QueueBase(
2725
2833
  :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
2726
2834
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2727
2835
  :param region: Region which this metric comes from. Default: - Deployment region.
2836
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2837
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2728
2838
  :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
2729
2839
  :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
2730
2840
  '''
@@ -2735,6 +2845,8 @@ class QueueBase(
2735
2845
  label=label,
2736
2846
  period=period,
2737
2847
  region=region,
2848
+ stack_account=stack_account,
2849
+ stack_region=stack_region,
2738
2850
  statistic=statistic,
2739
2851
  unit=unit,
2740
2852
  )
@@ -2751,6 +2863,8 @@ class QueueBase(
2751
2863
  label: typing.Optional[builtins.str] = None,
2752
2864
  period: typing.Optional[_Duration_4839e8c3] = None,
2753
2865
  region: typing.Optional[builtins.str] = None,
2866
+ stack_account: typing.Optional[builtins.str] = None,
2867
+ stack_region: typing.Optional[builtins.str] = None,
2754
2868
  statistic: typing.Optional[builtins.str] = None,
2755
2869
  unit: typing.Optional[_Unit_61bc6f70] = None,
2756
2870
  ) -> _Metric_e396a4dc:
@@ -2764,6 +2878,8 @@ class QueueBase(
2764
2878
  :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
2765
2879
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2766
2880
  :param region: Region which this metric comes from. Default: - Deployment region.
2881
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2882
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2767
2883
  :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
2768
2884
  :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
2769
2885
  '''
@@ -2774,6 +2890,8 @@ class QueueBase(
2774
2890
  label=label,
2775
2891
  period=period,
2776
2892
  region=region,
2893
+ stack_account=stack_account,
2894
+ stack_region=stack_region,
2777
2895
  statistic=statistic,
2778
2896
  unit=unit,
2779
2897
  )
@@ -2790,6 +2908,8 @@ class QueueBase(
2790
2908
  label: typing.Optional[builtins.str] = None,
2791
2909
  period: typing.Optional[_Duration_4839e8c3] = None,
2792
2910
  region: typing.Optional[builtins.str] = None,
2911
+ stack_account: typing.Optional[builtins.str] = None,
2912
+ stack_region: typing.Optional[builtins.str] = None,
2793
2913
  statistic: typing.Optional[builtins.str] = None,
2794
2914
  unit: typing.Optional[_Unit_61bc6f70] = None,
2795
2915
  ) -> _Metric_e396a4dc:
@@ -2803,6 +2923,8 @@ class QueueBase(
2803
2923
  :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
2804
2924
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2805
2925
  :param region: Region which this metric comes from. Default: - Deployment region.
2926
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2927
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2806
2928
  :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
2807
2929
  :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
2808
2930
  '''
@@ -2813,6 +2935,8 @@ class QueueBase(
2813
2935
  label=label,
2814
2936
  period=period,
2815
2937
  region=region,
2938
+ stack_account=stack_account,
2939
+ stack_region=stack_region,
2816
2940
  statistic=statistic,
2817
2941
  unit=unit,
2818
2942
  )
@@ -2829,6 +2953,8 @@ class QueueBase(
2829
2953
  label: typing.Optional[builtins.str] = None,
2830
2954
  period: typing.Optional[_Duration_4839e8c3] = None,
2831
2955
  region: typing.Optional[builtins.str] = None,
2956
+ stack_account: typing.Optional[builtins.str] = None,
2957
+ stack_region: typing.Optional[builtins.str] = None,
2832
2958
  statistic: typing.Optional[builtins.str] = None,
2833
2959
  unit: typing.Optional[_Unit_61bc6f70] = None,
2834
2960
  ) -> _Metric_e396a4dc:
@@ -2842,6 +2968,8 @@ class QueueBase(
2842
2968
  :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
2843
2969
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2844
2970
  :param region: Region which this metric comes from. Default: - Deployment region.
2971
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2972
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2845
2973
  :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
2846
2974
  :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
2847
2975
  '''
@@ -2852,6 +2980,8 @@ class QueueBase(
2852
2980
  label=label,
2853
2981
  period=period,
2854
2982
  region=region,
2983
+ stack_account=stack_account,
2984
+ stack_region=stack_region,
2855
2985
  statistic=statistic,
2856
2986
  unit=unit,
2857
2987
  )
@@ -2868,6 +2998,8 @@ class QueueBase(
2868
2998
  label: typing.Optional[builtins.str] = None,
2869
2999
  period: typing.Optional[_Duration_4839e8c3] = None,
2870
3000
  region: typing.Optional[builtins.str] = None,
3001
+ stack_account: typing.Optional[builtins.str] = None,
3002
+ stack_region: typing.Optional[builtins.str] = None,
2871
3003
  statistic: typing.Optional[builtins.str] = None,
2872
3004
  unit: typing.Optional[_Unit_61bc6f70] = None,
2873
3005
  ) -> _Metric_e396a4dc:
@@ -2881,6 +3013,8 @@ class QueueBase(
2881
3013
  :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
2882
3014
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2883
3015
  :param region: Region which this metric comes from. Default: - Deployment region.
3016
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
3017
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2884
3018
  :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
2885
3019
  :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
2886
3020
  '''
@@ -2891,6 +3025,8 @@ class QueueBase(
2891
3025
  label=label,
2892
3026
  period=period,
2893
3027
  region=region,
3028
+ stack_account=stack_account,
3029
+ stack_region=stack_region,
2894
3030
  statistic=statistic,
2895
3031
  unit=unit,
2896
3032
  )
@@ -2907,6 +3043,8 @@ class QueueBase(
2907
3043
  label: typing.Optional[builtins.str] = None,
2908
3044
  period: typing.Optional[_Duration_4839e8c3] = None,
2909
3045
  region: typing.Optional[builtins.str] = None,
3046
+ stack_account: typing.Optional[builtins.str] = None,
3047
+ stack_region: typing.Optional[builtins.str] = None,
2910
3048
  statistic: typing.Optional[builtins.str] = None,
2911
3049
  unit: typing.Optional[_Unit_61bc6f70] = None,
2912
3050
  ) -> _Metric_e396a4dc:
@@ -2920,6 +3058,8 @@ class QueueBase(
2920
3058
  :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
2921
3059
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2922
3060
  :param region: Region which this metric comes from. Default: - Deployment region.
3061
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
3062
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2923
3063
  :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
2924
3064
  :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
2925
3065
  '''
@@ -2930,6 +3070,8 @@ class QueueBase(
2930
3070
  label=label,
2931
3071
  period=period,
2932
3072
  region=region,
3073
+ stack_account=stack_account,
3074
+ stack_region=stack_region,
2933
3075
  statistic=statistic,
2934
3076
  unit=unit,
2935
3077
  )
@@ -2946,6 +3088,8 @@ class QueueBase(
2946
3088
  label: typing.Optional[builtins.str] = None,
2947
3089
  period: typing.Optional[_Duration_4839e8c3] = None,
2948
3090
  region: typing.Optional[builtins.str] = None,
3091
+ stack_account: typing.Optional[builtins.str] = None,
3092
+ stack_region: typing.Optional[builtins.str] = None,
2949
3093
  statistic: typing.Optional[builtins.str] = None,
2950
3094
  unit: typing.Optional[_Unit_61bc6f70] = None,
2951
3095
  ) -> _Metric_e396a4dc:
@@ -2959,6 +3103,8 @@ class QueueBase(
2959
3103
  :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
2960
3104
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2961
3105
  :param region: Region which this metric comes from. Default: - Deployment region.
3106
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
3107
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2962
3108
  :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
2963
3109
  :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
2964
3110
  '''
@@ -2969,6 +3115,8 @@ class QueueBase(
2969
3115
  label=label,
2970
3116
  period=period,
2971
3117
  region=region,
3118
+ stack_account=stack_account,
3119
+ stack_region=stack_region,
2972
3120
  statistic=statistic,
2973
3121
  unit=unit,
2974
3122
  )
@@ -2985,6 +3133,8 @@ class QueueBase(
2985
3133
  label: typing.Optional[builtins.str] = None,
2986
3134
  period: typing.Optional[_Duration_4839e8c3] = None,
2987
3135
  region: typing.Optional[builtins.str] = None,
3136
+ stack_account: typing.Optional[builtins.str] = None,
3137
+ stack_region: typing.Optional[builtins.str] = None,
2988
3138
  statistic: typing.Optional[builtins.str] = None,
2989
3139
  unit: typing.Optional[_Unit_61bc6f70] = None,
2990
3140
  ) -> _Metric_e396a4dc:
@@ -2998,6 +3148,8 @@ class QueueBase(
2998
3148
  :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
2999
3149
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
3000
3150
  :param region: Region which this metric comes from. Default: - Deployment region.
3151
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
3152
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
3001
3153
  :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
3002
3154
  :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
3003
3155
  '''
@@ -3008,6 +3160,8 @@ class QueueBase(
3008
3160
  label=label,
3009
3161
  period=period,
3010
3162
  region=region,
3163
+ stack_account=stack_account,
3164
+ stack_region=stack_region,
3011
3165
  statistic=statistic,
3012
3166
  unit=unit,
3013
3167
  )
@@ -3024,6 +3178,8 @@ class QueueBase(
3024
3178
  label: typing.Optional[builtins.str] = None,
3025
3179
  period: typing.Optional[_Duration_4839e8c3] = None,
3026
3180
  region: typing.Optional[builtins.str] = None,
3181
+ stack_account: typing.Optional[builtins.str] = None,
3182
+ stack_region: typing.Optional[builtins.str] = None,
3027
3183
  statistic: typing.Optional[builtins.str] = None,
3028
3184
  unit: typing.Optional[_Unit_61bc6f70] = None,
3029
3185
  ) -> _Metric_e396a4dc:
@@ -3037,6 +3193,8 @@ class QueueBase(
3037
3193
  :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
3038
3194
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
3039
3195
  :param region: Region which this metric comes from. Default: - Deployment region.
3196
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
3197
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
3040
3198
  :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
3041
3199
  :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
3042
3200
  '''
@@ -3047,6 +3205,8 @@ class QueueBase(
3047
3205
  label=label,
3048
3206
  period=period,
3049
3207
  region=region,
3208
+ stack_account=stack_account,
3209
+ stack_region=stack_region,
3050
3210
  statistic=statistic,
3051
3211
  unit=unit,
3052
3212
  )
@@ -4340,6 +4500,8 @@ def _typecheckingstub__0dc9d740764123624195584bb5156ec848518db29961d3251cb049c75
4340
4500
  label: typing.Optional[builtins.str] = None,
4341
4501
  period: typing.Optional[_Duration_4839e8c3] = None,
4342
4502
  region: typing.Optional[builtins.str] = None,
4503
+ stack_account: typing.Optional[builtins.str] = None,
4504
+ stack_region: typing.Optional[builtins.str] = None,
4343
4505
  statistic: typing.Optional[builtins.str] = None,
4344
4506
  unit: typing.Optional[_Unit_61bc6f70] = None,
4345
4507
  ) -> None:
@@ -4409,6 +4571,8 @@ def _typecheckingstub__9ffb259ebfbf10975a9ae041468c8a95370628f64ddfb35eda3c5a406
4409
4571
  label: typing.Optional[builtins.str] = None,
4410
4572
  period: typing.Optional[_Duration_4839e8c3] = None,
4411
4573
  region: typing.Optional[builtins.str] = None,
4574
+ stack_account: typing.Optional[builtins.str] = None,
4575
+ stack_region: typing.Optional[builtins.str] = None,
4412
4576
  statistic: typing.Optional[builtins.str] = None,
4413
4577
  unit: typing.Optional[_Unit_61bc6f70] = None,
4414
4578
  ) -> None: