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
@@ -6809,6 +6809,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
6809
6809
  label: typing.Optional[builtins.str] = None,
6810
6810
  period: typing.Optional[_Duration_4839e8c3] = None,
6811
6811
  region: typing.Optional[builtins.str] = None,
6812
+ stack_account: typing.Optional[builtins.str] = None,
6813
+ stack_region: typing.Optional[builtins.str] = None,
6812
6814
  statistic: typing.Optional[builtins.str] = None,
6813
6815
  unit: typing.Optional[_Unit_61bc6f70] = None,
6814
6816
  ) -> _Metric_e396a4dc:
@@ -6821,6 +6823,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
6821
6823
  :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
6822
6824
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
6823
6825
  :param region: Region which this metric comes from. Default: - Deployment region.
6826
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
6827
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
6824
6828
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
6825
6829
  :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
6826
6830
  '''
@@ -6836,6 +6840,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
6836
6840
  label: typing.Optional[builtins.str] = None,
6837
6841
  period: typing.Optional[_Duration_4839e8c3] = None,
6838
6842
  region: typing.Optional[builtins.str] = None,
6843
+ stack_account: typing.Optional[builtins.str] = None,
6844
+ stack_region: typing.Optional[builtins.str] = None,
6839
6845
  statistic: typing.Optional[builtins.str] = None,
6840
6846
  unit: typing.Optional[_Unit_61bc6f70] = None,
6841
6847
  ) -> _Metric_e396a4dc:
@@ -6847,6 +6853,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
6847
6853
  :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
6848
6854
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
6849
6855
  :param region: Region which this metric comes from. Default: - Deployment region.
6856
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
6857
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
6850
6858
  :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
6851
6859
  :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
6852
6860
 
@@ -6864,6 +6872,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
6864
6872
  label: typing.Optional[builtins.str] = None,
6865
6873
  period: typing.Optional[_Duration_4839e8c3] = None,
6866
6874
  region: typing.Optional[builtins.str] = None,
6875
+ stack_account: typing.Optional[builtins.str] = None,
6876
+ stack_region: typing.Optional[builtins.str] = None,
6867
6877
  statistic: typing.Optional[builtins.str] = None,
6868
6878
  unit: typing.Optional[_Unit_61bc6f70] = None,
6869
6879
  ) -> _Metric_e396a4dc:
@@ -6875,6 +6885,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
6875
6885
  :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
6876
6886
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
6877
6887
  :param region: Region which this metric comes from. Default: - Deployment region.
6888
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
6889
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
6878
6890
  :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
6879
6891
  :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
6880
6892
 
@@ -6892,6 +6904,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
6892
6904
  label: typing.Optional[builtins.str] = None,
6893
6905
  period: typing.Optional[_Duration_4839e8c3] = None,
6894
6906
  region: typing.Optional[builtins.str] = None,
6907
+ stack_account: typing.Optional[builtins.str] = None,
6908
+ stack_region: typing.Optional[builtins.str] = None,
6895
6909
  statistic: typing.Optional[builtins.str] = None,
6896
6910
  unit: typing.Optional[_Unit_61bc6f70] = None,
6897
6911
  ) -> _Metric_e396a4dc:
@@ -6903,6 +6917,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
6903
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
6904
6918
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
6905
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.
6906
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
6907
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
6908
6924
 
@@ -6920,6 +6936,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
6920
6936
  label: typing.Optional[builtins.str] = None,
6921
6937
  period: typing.Optional[_Duration_4839e8c3] = None,
6922
6938
  region: typing.Optional[builtins.str] = None,
6939
+ stack_account: typing.Optional[builtins.str] = None,
6940
+ stack_region: typing.Optional[builtins.str] = None,
6923
6941
  statistic: typing.Optional[builtins.str] = None,
6924
6942
  unit: typing.Optional[_Unit_61bc6f70] = None,
6925
6943
  ) -> _Metric_e396a4dc:
@@ -6931,6 +6949,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
6931
6949
  :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
6932
6950
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
6933
6951
  :param region: Region which this metric comes from. Default: - Deployment region.
6952
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
6953
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
6934
6954
  :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
6935
6955
  :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
6936
6956
 
@@ -6948,6 +6968,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
6948
6968
  label: typing.Optional[builtins.str] = None,
6949
6969
  period: typing.Optional[_Duration_4839e8c3] = None,
6950
6970
  region: typing.Optional[builtins.str] = None,
6971
+ stack_account: typing.Optional[builtins.str] = None,
6972
+ stack_region: typing.Optional[builtins.str] = None,
6951
6973
  statistic: typing.Optional[builtins.str] = None,
6952
6974
  unit: typing.Optional[_Unit_61bc6f70] = None,
6953
6975
  ) -> _Metric_e396a4dc:
@@ -6959,6 +6981,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
6959
6981
  :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
6960
6982
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
6961
6983
  :param region: Region which this metric comes from. Default: - Deployment region.
6984
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
6985
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
6962
6986
  :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
6963
6987
  :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
6964
6988
 
@@ -6976,6 +7000,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
6976
7000
  label: typing.Optional[builtins.str] = None,
6977
7001
  period: typing.Optional[_Duration_4839e8c3] = None,
6978
7002
  region: typing.Optional[builtins.str] = None,
7003
+ stack_account: typing.Optional[builtins.str] = None,
7004
+ stack_region: typing.Optional[builtins.str] = None,
6979
7005
  statistic: typing.Optional[builtins.str] = None,
6980
7006
  unit: typing.Optional[_Unit_61bc6f70] = None,
6981
7007
  ) -> _Metric_e396a4dc:
@@ -6987,6 +7013,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
6987
7013
  :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
6988
7014
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
6989
7015
  :param region: Region which this metric comes from. Default: - Deployment region.
7016
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
7017
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
6990
7018
  :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
6991
7019
  :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
6992
7020
 
@@ -7004,6 +7032,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
7004
7032
  label: typing.Optional[builtins.str] = None,
7005
7033
  period: typing.Optional[_Duration_4839e8c3] = None,
7006
7034
  region: typing.Optional[builtins.str] = None,
7035
+ stack_account: typing.Optional[builtins.str] = None,
7036
+ stack_region: typing.Optional[builtins.str] = None,
7007
7037
  statistic: typing.Optional[builtins.str] = None,
7008
7038
  unit: typing.Optional[_Unit_61bc6f70] = None,
7009
7039
  ) -> _Metric_e396a4dc:
@@ -7015,6 +7045,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
7015
7045
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
7016
7046
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
7017
7047
  :param region: Region which this metric comes from. Default: - Deployment region.
7048
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
7049
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
7018
7050
  :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
7019
7051
  :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
7020
7052
 
@@ -7032,6 +7064,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
7032
7064
  label: typing.Optional[builtins.str] = None,
7033
7065
  period: typing.Optional[_Duration_4839e8c3] = None,
7034
7066
  region: typing.Optional[builtins.str] = None,
7067
+ stack_account: typing.Optional[builtins.str] = None,
7068
+ stack_region: typing.Optional[builtins.str] = None,
7035
7069
  statistic: typing.Optional[builtins.str] = None,
7036
7070
  unit: typing.Optional[_Unit_61bc6f70] = None,
7037
7071
  ) -> _Metric_e396a4dc:
@@ -7043,6 +7077,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
7043
7077
  :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
7044
7078
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
7045
7079
  :param region: Region which this metric comes from. Default: - Deployment region.
7080
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
7081
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
7046
7082
  :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
7047
7083
  :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
7048
7084
 
@@ -7060,6 +7096,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
7060
7096
  label: typing.Optional[builtins.str] = None,
7061
7097
  period: typing.Optional[_Duration_4839e8c3] = None,
7062
7098
  region: typing.Optional[builtins.str] = None,
7099
+ stack_account: typing.Optional[builtins.str] = None,
7100
+ stack_region: typing.Optional[builtins.str] = None,
7063
7101
  statistic: typing.Optional[builtins.str] = None,
7064
7102
  unit: typing.Optional[_Unit_61bc6f70] = None,
7065
7103
  ) -> _Metric_e396a4dc:
@@ -7071,6 +7109,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
7071
7109
  :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
7072
7110
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
7073
7111
  :param region: Region which this metric comes from. Default: - Deployment region.
7112
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
7113
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
7074
7114
  :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
7075
7115
  :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
7076
7116
 
@@ -7088,6 +7128,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
7088
7128
  label: typing.Optional[builtins.str] = None,
7089
7129
  period: typing.Optional[_Duration_4839e8c3] = None,
7090
7130
  region: typing.Optional[builtins.str] = None,
7131
+ stack_account: typing.Optional[builtins.str] = None,
7132
+ stack_region: typing.Optional[builtins.str] = None,
7091
7133
  statistic: typing.Optional[builtins.str] = None,
7092
7134
  unit: typing.Optional[_Unit_61bc6f70] = None,
7093
7135
  ) -> _Metric_e396a4dc:
@@ -7099,6 +7141,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
7099
7141
  :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
7100
7142
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
7101
7143
  :param region: Region which this metric comes from. Default: - Deployment region.
7144
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
7145
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
7102
7146
  :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
7103
7147
  :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
7104
7148
 
@@ -7116,6 +7160,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
7116
7160
  label: typing.Optional[builtins.str] = None,
7117
7161
  period: typing.Optional[_Duration_4839e8c3] = None,
7118
7162
  region: typing.Optional[builtins.str] = None,
7163
+ stack_account: typing.Optional[builtins.str] = None,
7164
+ stack_region: typing.Optional[builtins.str] = None,
7119
7165
  statistic: typing.Optional[builtins.str] = None,
7120
7166
  unit: typing.Optional[_Unit_61bc6f70] = None,
7121
7167
  ) -> _Metric_e396a4dc:
@@ -7127,6 +7173,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
7127
7173
  :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
7128
7174
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
7129
7175
  :param region: Region which this metric comes from. Default: - Deployment region.
7176
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
7177
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
7130
7178
  :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
7131
7179
  :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
7132
7180
 
@@ -7144,6 +7192,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
7144
7192
  label: typing.Optional[builtins.str] = None,
7145
7193
  period: typing.Optional[_Duration_4839e8c3] = None,
7146
7194
  region: typing.Optional[builtins.str] = None,
7195
+ stack_account: typing.Optional[builtins.str] = None,
7196
+ stack_region: typing.Optional[builtins.str] = None,
7147
7197
  statistic: typing.Optional[builtins.str] = None,
7148
7198
  unit: typing.Optional[_Unit_61bc6f70] = None,
7149
7199
  ) -> _Metric_e396a4dc:
@@ -7155,6 +7205,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
7155
7205
  :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
7156
7206
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
7157
7207
  :param region: Region which this metric comes from. Default: - Deployment region.
7208
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
7209
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
7158
7210
  :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
7159
7211
  :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
7160
7212
 
@@ -7172,6 +7224,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
7172
7224
  label: typing.Optional[builtins.str] = None,
7173
7225
  period: typing.Optional[_Duration_4839e8c3] = None,
7174
7226
  region: typing.Optional[builtins.str] = None,
7227
+ stack_account: typing.Optional[builtins.str] = None,
7228
+ stack_region: typing.Optional[builtins.str] = None,
7175
7229
  statistic: typing.Optional[builtins.str] = None,
7176
7230
  unit: typing.Optional[_Unit_61bc6f70] = None,
7177
7231
  ) -> _Metric_e396a4dc:
@@ -7183,6 +7237,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
7183
7237
  :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
7184
7238
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
7185
7239
  :param region: Region which this metric comes from. Default: - Deployment region.
7240
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
7241
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
7186
7242
  :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
7187
7243
  :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
7188
7244
 
@@ -7200,6 +7256,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
7200
7256
  label: typing.Optional[builtins.str] = None,
7201
7257
  period: typing.Optional[_Duration_4839e8c3] = None,
7202
7258
  region: typing.Optional[builtins.str] = None,
7259
+ stack_account: typing.Optional[builtins.str] = None,
7260
+ stack_region: typing.Optional[builtins.str] = None,
7203
7261
  statistic: typing.Optional[builtins.str] = None,
7204
7262
  unit: typing.Optional[_Unit_61bc6f70] = None,
7205
7263
  ) -> _Metric_e396a4dc:
@@ -7211,6 +7269,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
7211
7269
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
7212
7270
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
7213
7271
  :param region: Region which this metric comes from. Default: - Deployment region.
7272
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
7273
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
7214
7274
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
7215
7275
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
7216
7276
 
@@ -7228,6 +7288,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
7228
7288
  label: typing.Optional[builtins.str] = None,
7229
7289
  period: typing.Optional[_Duration_4839e8c3] = None,
7230
7290
  region: typing.Optional[builtins.str] = None,
7291
+ stack_account: typing.Optional[builtins.str] = None,
7292
+ stack_region: typing.Optional[builtins.str] = None,
7231
7293
  statistic: typing.Optional[builtins.str] = None,
7232
7294
  unit: typing.Optional[_Unit_61bc6f70] = None,
7233
7295
  ) -> _Metric_e396a4dc:
@@ -7239,6 +7301,8 @@ class IDomain(_IResource_c80c4260, typing_extensions.Protocol):
7239
7301
  :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
7240
7302
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
7241
7303
  :param region: Region which this metric comes from. Default: - Deployment region.
7304
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
7305
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
7242
7306
  :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
7243
7307
  :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
7244
7308
 
@@ -7436,6 +7500,8 @@ class _IDomainProxy(
7436
7500
  label: typing.Optional[builtins.str] = None,
7437
7501
  period: typing.Optional[_Duration_4839e8c3] = None,
7438
7502
  region: typing.Optional[builtins.str] = None,
7503
+ stack_account: typing.Optional[builtins.str] = None,
7504
+ stack_region: typing.Optional[builtins.str] = None,
7439
7505
  statistic: typing.Optional[builtins.str] = None,
7440
7506
  unit: typing.Optional[_Unit_61bc6f70] = None,
7441
7507
  ) -> _Metric_e396a4dc:
@@ -7448,6 +7514,8 @@ class _IDomainProxy(
7448
7514
  :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
7449
7515
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
7450
7516
  :param region: Region which this metric comes from. Default: - Deployment region.
7517
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
7518
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
7451
7519
  :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
7452
7520
  :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
7453
7521
  '''
@@ -7461,6 +7529,8 @@ class _IDomainProxy(
7461
7529
  label=label,
7462
7530
  period=period,
7463
7531
  region=region,
7532
+ stack_account=stack_account,
7533
+ stack_region=stack_region,
7464
7534
  statistic=statistic,
7465
7535
  unit=unit,
7466
7536
  )
@@ -7477,6 +7547,8 @@ class _IDomainProxy(
7477
7547
  label: typing.Optional[builtins.str] = None,
7478
7548
  period: typing.Optional[_Duration_4839e8c3] = None,
7479
7549
  region: typing.Optional[builtins.str] = None,
7550
+ stack_account: typing.Optional[builtins.str] = None,
7551
+ stack_region: typing.Optional[builtins.str] = None,
7480
7552
  statistic: typing.Optional[builtins.str] = None,
7481
7553
  unit: typing.Optional[_Unit_61bc6f70] = None,
7482
7554
  ) -> _Metric_e396a4dc:
@@ -7488,6 +7560,8 @@ class _IDomainProxy(
7488
7560
  :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
7489
7561
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
7490
7562
  :param region: Region which this metric comes from. Default: - Deployment region.
7563
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
7564
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
7491
7565
  :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
7492
7566
  :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
7493
7567
 
@@ -7500,6 +7574,8 @@ class _IDomainProxy(
7500
7574
  label=label,
7501
7575
  period=period,
7502
7576
  region=region,
7577
+ stack_account=stack_account,
7578
+ stack_region=stack_region,
7503
7579
  statistic=statistic,
7504
7580
  unit=unit,
7505
7581
  )
@@ -7516,6 +7592,8 @@ class _IDomainProxy(
7516
7592
  label: typing.Optional[builtins.str] = None,
7517
7593
  period: typing.Optional[_Duration_4839e8c3] = None,
7518
7594
  region: typing.Optional[builtins.str] = None,
7595
+ stack_account: typing.Optional[builtins.str] = None,
7596
+ stack_region: typing.Optional[builtins.str] = None,
7519
7597
  statistic: typing.Optional[builtins.str] = None,
7520
7598
  unit: typing.Optional[_Unit_61bc6f70] = None,
7521
7599
  ) -> _Metric_e396a4dc:
@@ -7527,6 +7605,8 @@ class _IDomainProxy(
7527
7605
  :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
7528
7606
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
7529
7607
  :param region: Region which this metric comes from. Default: - Deployment region.
7608
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
7609
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
7530
7610
  :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
7531
7611
  :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
7532
7612
 
@@ -7539,6 +7619,8 @@ class _IDomainProxy(
7539
7619
  label=label,
7540
7620
  period=period,
7541
7621
  region=region,
7622
+ stack_account=stack_account,
7623
+ stack_region=stack_region,
7542
7624
  statistic=statistic,
7543
7625
  unit=unit,
7544
7626
  )
@@ -7555,6 +7637,8 @@ class _IDomainProxy(
7555
7637
  label: typing.Optional[builtins.str] = None,
7556
7638
  period: typing.Optional[_Duration_4839e8c3] = None,
7557
7639
  region: typing.Optional[builtins.str] = None,
7640
+ stack_account: typing.Optional[builtins.str] = None,
7641
+ stack_region: typing.Optional[builtins.str] = None,
7558
7642
  statistic: typing.Optional[builtins.str] = None,
7559
7643
  unit: typing.Optional[_Unit_61bc6f70] = None,
7560
7644
  ) -> _Metric_e396a4dc:
@@ -7566,6 +7650,8 @@ class _IDomainProxy(
7566
7650
  :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
7567
7651
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
7568
7652
  :param region: Region which this metric comes from. Default: - Deployment region.
7653
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
7654
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
7569
7655
  :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
7570
7656
  :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
7571
7657
 
@@ -7578,6 +7664,8 @@ class _IDomainProxy(
7578
7664
  label=label,
7579
7665
  period=period,
7580
7666
  region=region,
7667
+ stack_account=stack_account,
7668
+ stack_region=stack_region,
7581
7669
  statistic=statistic,
7582
7670
  unit=unit,
7583
7671
  )
@@ -7594,6 +7682,8 @@ class _IDomainProxy(
7594
7682
  label: typing.Optional[builtins.str] = None,
7595
7683
  period: typing.Optional[_Duration_4839e8c3] = None,
7596
7684
  region: typing.Optional[builtins.str] = None,
7685
+ stack_account: typing.Optional[builtins.str] = None,
7686
+ stack_region: typing.Optional[builtins.str] = None,
7597
7687
  statistic: typing.Optional[builtins.str] = None,
7598
7688
  unit: typing.Optional[_Unit_61bc6f70] = None,
7599
7689
  ) -> _Metric_e396a4dc:
@@ -7605,6 +7695,8 @@ class _IDomainProxy(
7605
7695
  :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
7606
7696
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
7607
7697
  :param region: Region which this metric comes from. Default: - Deployment region.
7698
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
7699
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
7608
7700
  :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
7609
7701
  :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
7610
7702
 
@@ -7617,6 +7709,8 @@ class _IDomainProxy(
7617
7709
  label=label,
7618
7710
  period=period,
7619
7711
  region=region,
7712
+ stack_account=stack_account,
7713
+ stack_region=stack_region,
7620
7714
  statistic=statistic,
7621
7715
  unit=unit,
7622
7716
  )
@@ -7633,6 +7727,8 @@ class _IDomainProxy(
7633
7727
  label: typing.Optional[builtins.str] = None,
7634
7728
  period: typing.Optional[_Duration_4839e8c3] = None,
7635
7729
  region: typing.Optional[builtins.str] = None,
7730
+ stack_account: typing.Optional[builtins.str] = None,
7731
+ stack_region: typing.Optional[builtins.str] = None,
7636
7732
  statistic: typing.Optional[builtins.str] = None,
7637
7733
  unit: typing.Optional[_Unit_61bc6f70] = None,
7638
7734
  ) -> _Metric_e396a4dc:
@@ -7644,6 +7740,8 @@ class _IDomainProxy(
7644
7740
  :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
7645
7741
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
7646
7742
  :param region: Region which this metric comes from. Default: - Deployment region.
7743
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
7744
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
7647
7745
  :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
7648
7746
  :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
7649
7747
 
@@ -7656,6 +7754,8 @@ class _IDomainProxy(
7656
7754
  label=label,
7657
7755
  period=period,
7658
7756
  region=region,
7757
+ stack_account=stack_account,
7758
+ stack_region=stack_region,
7659
7759
  statistic=statistic,
7660
7760
  unit=unit,
7661
7761
  )
@@ -7672,6 +7772,8 @@ class _IDomainProxy(
7672
7772
  label: typing.Optional[builtins.str] = None,
7673
7773
  period: typing.Optional[_Duration_4839e8c3] = None,
7674
7774
  region: typing.Optional[builtins.str] = None,
7775
+ stack_account: typing.Optional[builtins.str] = None,
7776
+ stack_region: typing.Optional[builtins.str] = None,
7675
7777
  statistic: typing.Optional[builtins.str] = None,
7676
7778
  unit: typing.Optional[_Unit_61bc6f70] = None,
7677
7779
  ) -> _Metric_e396a4dc:
@@ -7683,6 +7785,8 @@ class _IDomainProxy(
7683
7785
  :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
7684
7786
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
7685
7787
  :param region: Region which this metric comes from. Default: - Deployment region.
7788
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
7789
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
7686
7790
  :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
7687
7791
  :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
7688
7792
 
@@ -7695,6 +7799,8 @@ class _IDomainProxy(
7695
7799
  label=label,
7696
7800
  period=period,
7697
7801
  region=region,
7802
+ stack_account=stack_account,
7803
+ stack_region=stack_region,
7698
7804
  statistic=statistic,
7699
7805
  unit=unit,
7700
7806
  )
@@ -7711,6 +7817,8 @@ class _IDomainProxy(
7711
7817
  label: typing.Optional[builtins.str] = None,
7712
7818
  period: typing.Optional[_Duration_4839e8c3] = None,
7713
7819
  region: typing.Optional[builtins.str] = None,
7820
+ stack_account: typing.Optional[builtins.str] = None,
7821
+ stack_region: typing.Optional[builtins.str] = None,
7714
7822
  statistic: typing.Optional[builtins.str] = None,
7715
7823
  unit: typing.Optional[_Unit_61bc6f70] = None,
7716
7824
  ) -> _Metric_e396a4dc:
@@ -7722,6 +7830,8 @@ class _IDomainProxy(
7722
7830
  :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
7723
7831
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
7724
7832
  :param region: Region which this metric comes from. Default: - Deployment region.
7833
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
7834
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
7725
7835
  :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
7726
7836
  :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
7727
7837
 
@@ -7734,6 +7844,8 @@ class _IDomainProxy(
7734
7844
  label=label,
7735
7845
  period=period,
7736
7846
  region=region,
7847
+ stack_account=stack_account,
7848
+ stack_region=stack_region,
7737
7849
  statistic=statistic,
7738
7850
  unit=unit,
7739
7851
  )
@@ -7750,6 +7862,8 @@ class _IDomainProxy(
7750
7862
  label: typing.Optional[builtins.str] = None,
7751
7863
  period: typing.Optional[_Duration_4839e8c3] = None,
7752
7864
  region: typing.Optional[builtins.str] = None,
7865
+ stack_account: typing.Optional[builtins.str] = None,
7866
+ stack_region: typing.Optional[builtins.str] = None,
7753
7867
  statistic: typing.Optional[builtins.str] = None,
7754
7868
  unit: typing.Optional[_Unit_61bc6f70] = None,
7755
7869
  ) -> _Metric_e396a4dc:
@@ -7761,6 +7875,8 @@ class _IDomainProxy(
7761
7875
  :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
7762
7876
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
7763
7877
  :param region: Region which this metric comes from. Default: - Deployment region.
7878
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
7879
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
7764
7880
  :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
7765
7881
  :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
7766
7882
 
@@ -7773,6 +7889,8 @@ class _IDomainProxy(
7773
7889
  label=label,
7774
7890
  period=period,
7775
7891
  region=region,
7892
+ stack_account=stack_account,
7893
+ stack_region=stack_region,
7776
7894
  statistic=statistic,
7777
7895
  unit=unit,
7778
7896
  )
@@ -7789,6 +7907,8 @@ class _IDomainProxy(
7789
7907
  label: typing.Optional[builtins.str] = None,
7790
7908
  period: typing.Optional[_Duration_4839e8c3] = None,
7791
7909
  region: typing.Optional[builtins.str] = None,
7910
+ stack_account: typing.Optional[builtins.str] = None,
7911
+ stack_region: typing.Optional[builtins.str] = None,
7792
7912
  statistic: typing.Optional[builtins.str] = None,
7793
7913
  unit: typing.Optional[_Unit_61bc6f70] = None,
7794
7914
  ) -> _Metric_e396a4dc:
@@ -7800,6 +7920,8 @@ class _IDomainProxy(
7800
7920
  :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
7801
7921
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
7802
7922
  :param region: Region which this metric comes from. Default: - Deployment region.
7923
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
7924
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
7803
7925
  :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
7804
7926
  :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
7805
7927
 
@@ -7812,6 +7934,8 @@ class _IDomainProxy(
7812
7934
  label=label,
7813
7935
  period=period,
7814
7936
  region=region,
7937
+ stack_account=stack_account,
7938
+ stack_region=stack_region,
7815
7939
  statistic=statistic,
7816
7940
  unit=unit,
7817
7941
  )
@@ -7828,6 +7952,8 @@ class _IDomainProxy(
7828
7952
  label: typing.Optional[builtins.str] = None,
7829
7953
  period: typing.Optional[_Duration_4839e8c3] = None,
7830
7954
  region: typing.Optional[builtins.str] = None,
7955
+ stack_account: typing.Optional[builtins.str] = None,
7956
+ stack_region: typing.Optional[builtins.str] = None,
7831
7957
  statistic: typing.Optional[builtins.str] = None,
7832
7958
  unit: typing.Optional[_Unit_61bc6f70] = None,
7833
7959
  ) -> _Metric_e396a4dc:
@@ -7839,6 +7965,8 @@ class _IDomainProxy(
7839
7965
  :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
7840
7966
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
7841
7967
  :param region: Region which this metric comes from. Default: - Deployment region.
7968
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
7969
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
7842
7970
  :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
7843
7971
  :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
7844
7972
 
@@ -7851,6 +7979,8 @@ class _IDomainProxy(
7851
7979
  label=label,
7852
7980
  period=period,
7853
7981
  region=region,
7982
+ stack_account=stack_account,
7983
+ stack_region=stack_region,
7854
7984
  statistic=statistic,
7855
7985
  unit=unit,
7856
7986
  )
@@ -7867,6 +7997,8 @@ class _IDomainProxy(
7867
7997
  label: typing.Optional[builtins.str] = None,
7868
7998
  period: typing.Optional[_Duration_4839e8c3] = None,
7869
7999
  region: typing.Optional[builtins.str] = None,
8000
+ stack_account: typing.Optional[builtins.str] = None,
8001
+ stack_region: typing.Optional[builtins.str] = None,
7870
8002
  statistic: typing.Optional[builtins.str] = None,
7871
8003
  unit: typing.Optional[_Unit_61bc6f70] = None,
7872
8004
  ) -> _Metric_e396a4dc:
@@ -7878,6 +8010,8 @@ class _IDomainProxy(
7878
8010
  :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
7879
8011
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
7880
8012
  :param region: Region which this metric comes from. Default: - Deployment region.
8013
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
8014
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
7881
8015
  :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
7882
8016
  :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
7883
8017
 
@@ -7890,6 +8024,8 @@ class _IDomainProxy(
7890
8024
  label=label,
7891
8025
  period=period,
7892
8026
  region=region,
8027
+ stack_account=stack_account,
8028
+ stack_region=stack_region,
7893
8029
  statistic=statistic,
7894
8030
  unit=unit,
7895
8031
  )
@@ -7906,6 +8042,8 @@ class _IDomainProxy(
7906
8042
  label: typing.Optional[builtins.str] = None,
7907
8043
  period: typing.Optional[_Duration_4839e8c3] = None,
7908
8044
  region: typing.Optional[builtins.str] = None,
8045
+ stack_account: typing.Optional[builtins.str] = None,
8046
+ stack_region: typing.Optional[builtins.str] = None,
7909
8047
  statistic: typing.Optional[builtins.str] = None,
7910
8048
  unit: typing.Optional[_Unit_61bc6f70] = None,
7911
8049
  ) -> _Metric_e396a4dc:
@@ -7917,6 +8055,8 @@ class _IDomainProxy(
7917
8055
  :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
7918
8056
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
7919
8057
  :param region: Region which this metric comes from. Default: - Deployment region.
8058
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
8059
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
7920
8060
  :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
7921
8061
  :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
7922
8062
 
@@ -7929,6 +8069,8 @@ class _IDomainProxy(
7929
8069
  label=label,
7930
8070
  period=period,
7931
8071
  region=region,
8072
+ stack_account=stack_account,
8073
+ stack_region=stack_region,
7932
8074
  statistic=statistic,
7933
8075
  unit=unit,
7934
8076
  )
@@ -7945,6 +8087,8 @@ class _IDomainProxy(
7945
8087
  label: typing.Optional[builtins.str] = None,
7946
8088
  period: typing.Optional[_Duration_4839e8c3] = None,
7947
8089
  region: typing.Optional[builtins.str] = None,
8090
+ stack_account: typing.Optional[builtins.str] = None,
8091
+ stack_region: typing.Optional[builtins.str] = None,
7948
8092
  statistic: typing.Optional[builtins.str] = None,
7949
8093
  unit: typing.Optional[_Unit_61bc6f70] = None,
7950
8094
  ) -> _Metric_e396a4dc:
@@ -7956,6 +8100,8 @@ class _IDomainProxy(
7956
8100
  :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
7957
8101
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
7958
8102
  :param region: Region which this metric comes from. Default: - Deployment region.
8103
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
8104
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
7959
8105
  :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
7960
8106
  :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
7961
8107
 
@@ -7968,6 +8114,8 @@ class _IDomainProxy(
7968
8114
  label=label,
7969
8115
  period=period,
7970
8116
  region=region,
8117
+ stack_account=stack_account,
8118
+ stack_region=stack_region,
7971
8119
  statistic=statistic,
7972
8120
  unit=unit,
7973
8121
  )
@@ -7984,6 +8132,8 @@ class _IDomainProxy(
7984
8132
  label: typing.Optional[builtins.str] = None,
7985
8133
  period: typing.Optional[_Duration_4839e8c3] = None,
7986
8134
  region: typing.Optional[builtins.str] = None,
8135
+ stack_account: typing.Optional[builtins.str] = None,
8136
+ stack_region: typing.Optional[builtins.str] = None,
7987
8137
  statistic: typing.Optional[builtins.str] = None,
7988
8138
  unit: typing.Optional[_Unit_61bc6f70] = None,
7989
8139
  ) -> _Metric_e396a4dc:
@@ -7995,6 +8145,8 @@ class _IDomainProxy(
7995
8145
  :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
7996
8146
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
7997
8147
  :param region: Region which this metric comes from. Default: - Deployment region.
8148
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
8149
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
7998
8150
  :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
7999
8151
  :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
8000
8152
 
@@ -8007,6 +8159,8 @@ class _IDomainProxy(
8007
8159
  label=label,
8008
8160
  period=period,
8009
8161
  region=region,
8162
+ stack_account=stack_account,
8163
+ stack_region=stack_region,
8010
8164
  statistic=statistic,
8011
8165
  unit=unit,
8012
8166
  )
@@ -8023,6 +8177,8 @@ class _IDomainProxy(
8023
8177
  label: typing.Optional[builtins.str] = None,
8024
8178
  period: typing.Optional[_Duration_4839e8c3] = None,
8025
8179
  region: typing.Optional[builtins.str] = None,
8180
+ stack_account: typing.Optional[builtins.str] = None,
8181
+ stack_region: typing.Optional[builtins.str] = None,
8026
8182
  statistic: typing.Optional[builtins.str] = None,
8027
8183
  unit: typing.Optional[_Unit_61bc6f70] = None,
8028
8184
  ) -> _Metric_e396a4dc:
@@ -8034,6 +8190,8 @@ class _IDomainProxy(
8034
8190
  :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
8035
8191
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
8036
8192
  :param region: Region which this metric comes from. Default: - Deployment region.
8193
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
8194
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
8037
8195
  :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
8038
8196
  :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
8039
8197
 
@@ -8046,6 +8204,8 @@ class _IDomainProxy(
8046
8204
  label=label,
8047
8205
  period=period,
8048
8206
  region=region,
8207
+ stack_account=stack_account,
8208
+ stack_region=stack_region,
8049
8209
  statistic=statistic,
8050
8210
  unit=unit,
8051
8211
  )
@@ -8922,6 +9082,8 @@ class Domain(
8922
9082
  label: typing.Optional[builtins.str] = None,
8923
9083
  period: typing.Optional[_Duration_4839e8c3] = None,
8924
9084
  region: typing.Optional[builtins.str] = None,
9085
+ stack_account: typing.Optional[builtins.str] = None,
9086
+ stack_region: typing.Optional[builtins.str] = None,
8925
9087
  statistic: typing.Optional[builtins.str] = None,
8926
9088
  unit: typing.Optional[_Unit_61bc6f70] = None,
8927
9089
  ) -> _Metric_e396a4dc:
@@ -8934,6 +9096,8 @@ class Domain(
8934
9096
  :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
8935
9097
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
8936
9098
  :param region: Region which this metric comes from. Default: - Deployment region.
9099
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
9100
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
8937
9101
  :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
8938
9102
  :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
8939
9103
  '''
@@ -8947,6 +9111,8 @@ class Domain(
8947
9111
  label=label,
8948
9112
  period=period,
8949
9113
  region=region,
9114
+ stack_account=stack_account,
9115
+ stack_region=stack_region,
8950
9116
  statistic=statistic,
8951
9117
  unit=unit,
8952
9118
  )
@@ -8963,6 +9129,8 @@ class Domain(
8963
9129
  label: typing.Optional[builtins.str] = None,
8964
9130
  period: typing.Optional[_Duration_4839e8c3] = None,
8965
9131
  region: typing.Optional[builtins.str] = None,
9132
+ stack_account: typing.Optional[builtins.str] = None,
9133
+ stack_region: typing.Optional[builtins.str] = None,
8966
9134
  statistic: typing.Optional[builtins.str] = None,
8967
9135
  unit: typing.Optional[_Unit_61bc6f70] = None,
8968
9136
  ) -> _Metric_e396a4dc:
@@ -8974,6 +9142,8 @@ class Domain(
8974
9142
  :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
8975
9143
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
8976
9144
  :param region: Region which this metric comes from. Default: - Deployment region.
9145
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
9146
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
8977
9147
  :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
8978
9148
  :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
8979
9149
 
@@ -8986,6 +9156,8 @@ class Domain(
8986
9156
  label=label,
8987
9157
  period=period,
8988
9158
  region=region,
9159
+ stack_account=stack_account,
9160
+ stack_region=stack_region,
8989
9161
  statistic=statistic,
8990
9162
  unit=unit,
8991
9163
  )
@@ -9002,6 +9174,8 @@ class Domain(
9002
9174
  label: typing.Optional[builtins.str] = None,
9003
9175
  period: typing.Optional[_Duration_4839e8c3] = None,
9004
9176
  region: typing.Optional[builtins.str] = None,
9177
+ stack_account: typing.Optional[builtins.str] = None,
9178
+ stack_region: typing.Optional[builtins.str] = None,
9005
9179
  statistic: typing.Optional[builtins.str] = None,
9006
9180
  unit: typing.Optional[_Unit_61bc6f70] = None,
9007
9181
  ) -> _Metric_e396a4dc:
@@ -9013,6 +9187,8 @@ class Domain(
9013
9187
  :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
9014
9188
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
9015
9189
  :param region: Region which this metric comes from. Default: - Deployment region.
9190
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
9191
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
9016
9192
  :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
9017
9193
  :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
9018
9194
 
@@ -9025,6 +9201,8 @@ class Domain(
9025
9201
  label=label,
9026
9202
  period=period,
9027
9203
  region=region,
9204
+ stack_account=stack_account,
9205
+ stack_region=stack_region,
9028
9206
  statistic=statistic,
9029
9207
  unit=unit,
9030
9208
  )
@@ -9041,6 +9219,8 @@ class Domain(
9041
9219
  label: typing.Optional[builtins.str] = None,
9042
9220
  period: typing.Optional[_Duration_4839e8c3] = None,
9043
9221
  region: typing.Optional[builtins.str] = None,
9222
+ stack_account: typing.Optional[builtins.str] = None,
9223
+ stack_region: typing.Optional[builtins.str] = None,
9044
9224
  statistic: typing.Optional[builtins.str] = None,
9045
9225
  unit: typing.Optional[_Unit_61bc6f70] = None,
9046
9226
  ) -> _Metric_e396a4dc:
@@ -9052,6 +9232,8 @@ class Domain(
9052
9232
  :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
9053
9233
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
9054
9234
  :param region: Region which this metric comes from. Default: - Deployment region.
9235
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
9236
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
9055
9237
  :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
9056
9238
  :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
9057
9239
 
@@ -9064,6 +9246,8 @@ class Domain(
9064
9246
  label=label,
9065
9247
  period=period,
9066
9248
  region=region,
9249
+ stack_account=stack_account,
9250
+ stack_region=stack_region,
9067
9251
  statistic=statistic,
9068
9252
  unit=unit,
9069
9253
  )
@@ -9080,6 +9264,8 @@ class Domain(
9080
9264
  label: typing.Optional[builtins.str] = None,
9081
9265
  period: typing.Optional[_Duration_4839e8c3] = None,
9082
9266
  region: typing.Optional[builtins.str] = None,
9267
+ stack_account: typing.Optional[builtins.str] = None,
9268
+ stack_region: typing.Optional[builtins.str] = None,
9083
9269
  statistic: typing.Optional[builtins.str] = None,
9084
9270
  unit: typing.Optional[_Unit_61bc6f70] = None,
9085
9271
  ) -> _Metric_e396a4dc:
@@ -9091,6 +9277,8 @@ class Domain(
9091
9277
  :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
9092
9278
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
9093
9279
  :param region: Region which this metric comes from. Default: - Deployment region.
9280
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
9281
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
9094
9282
  :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
9095
9283
  :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
9096
9284
 
@@ -9103,6 +9291,8 @@ class Domain(
9103
9291
  label=label,
9104
9292
  period=period,
9105
9293
  region=region,
9294
+ stack_account=stack_account,
9295
+ stack_region=stack_region,
9106
9296
  statistic=statistic,
9107
9297
  unit=unit,
9108
9298
  )
@@ -9119,6 +9309,8 @@ class Domain(
9119
9309
  label: typing.Optional[builtins.str] = None,
9120
9310
  period: typing.Optional[_Duration_4839e8c3] = None,
9121
9311
  region: typing.Optional[builtins.str] = None,
9312
+ stack_account: typing.Optional[builtins.str] = None,
9313
+ stack_region: typing.Optional[builtins.str] = None,
9122
9314
  statistic: typing.Optional[builtins.str] = None,
9123
9315
  unit: typing.Optional[_Unit_61bc6f70] = None,
9124
9316
  ) -> _Metric_e396a4dc:
@@ -9130,6 +9322,8 @@ class Domain(
9130
9322
  :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
9131
9323
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
9132
9324
  :param region: Region which this metric comes from. Default: - Deployment region.
9325
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
9326
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
9133
9327
  :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
9134
9328
  :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
9135
9329
 
@@ -9142,6 +9336,8 @@ class Domain(
9142
9336
  label=label,
9143
9337
  period=period,
9144
9338
  region=region,
9339
+ stack_account=stack_account,
9340
+ stack_region=stack_region,
9145
9341
  statistic=statistic,
9146
9342
  unit=unit,
9147
9343
  )
@@ -9158,6 +9354,8 @@ class Domain(
9158
9354
  label: typing.Optional[builtins.str] = None,
9159
9355
  period: typing.Optional[_Duration_4839e8c3] = None,
9160
9356
  region: typing.Optional[builtins.str] = None,
9357
+ stack_account: typing.Optional[builtins.str] = None,
9358
+ stack_region: typing.Optional[builtins.str] = None,
9161
9359
  statistic: typing.Optional[builtins.str] = None,
9162
9360
  unit: typing.Optional[_Unit_61bc6f70] = None,
9163
9361
  ) -> _Metric_e396a4dc:
@@ -9169,6 +9367,8 @@ class Domain(
9169
9367
  :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
9170
9368
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
9171
9369
  :param region: Region which this metric comes from. Default: - Deployment region.
9370
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
9371
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
9172
9372
  :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
9173
9373
  :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
9174
9374
 
@@ -9181,6 +9381,8 @@ class Domain(
9181
9381
  label=label,
9182
9382
  period=period,
9183
9383
  region=region,
9384
+ stack_account=stack_account,
9385
+ stack_region=stack_region,
9184
9386
  statistic=statistic,
9185
9387
  unit=unit,
9186
9388
  )
@@ -9197,6 +9399,8 @@ class Domain(
9197
9399
  label: typing.Optional[builtins.str] = None,
9198
9400
  period: typing.Optional[_Duration_4839e8c3] = None,
9199
9401
  region: typing.Optional[builtins.str] = None,
9402
+ stack_account: typing.Optional[builtins.str] = None,
9403
+ stack_region: typing.Optional[builtins.str] = None,
9200
9404
  statistic: typing.Optional[builtins.str] = None,
9201
9405
  unit: typing.Optional[_Unit_61bc6f70] = None,
9202
9406
  ) -> _Metric_e396a4dc:
@@ -9208,6 +9412,8 @@ class Domain(
9208
9412
  :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
9209
9413
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
9210
9414
  :param region: Region which this metric comes from. Default: - Deployment region.
9415
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
9416
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
9211
9417
  :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
9212
9418
  :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
9213
9419
 
@@ -9220,6 +9426,8 @@ class Domain(
9220
9426
  label=label,
9221
9427
  period=period,
9222
9428
  region=region,
9429
+ stack_account=stack_account,
9430
+ stack_region=stack_region,
9223
9431
  statistic=statistic,
9224
9432
  unit=unit,
9225
9433
  )
@@ -9236,6 +9444,8 @@ class Domain(
9236
9444
  label: typing.Optional[builtins.str] = None,
9237
9445
  period: typing.Optional[_Duration_4839e8c3] = None,
9238
9446
  region: typing.Optional[builtins.str] = None,
9447
+ stack_account: typing.Optional[builtins.str] = None,
9448
+ stack_region: typing.Optional[builtins.str] = None,
9239
9449
  statistic: typing.Optional[builtins.str] = None,
9240
9450
  unit: typing.Optional[_Unit_61bc6f70] = None,
9241
9451
  ) -> _Metric_e396a4dc:
@@ -9247,6 +9457,8 @@ class Domain(
9247
9457
  :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
9248
9458
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
9249
9459
  :param region: Region which this metric comes from. Default: - Deployment region.
9460
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
9461
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
9250
9462
  :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
9251
9463
  :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
9252
9464
 
@@ -9259,6 +9471,8 @@ class Domain(
9259
9471
  label=label,
9260
9472
  period=period,
9261
9473
  region=region,
9474
+ stack_account=stack_account,
9475
+ stack_region=stack_region,
9262
9476
  statistic=statistic,
9263
9477
  unit=unit,
9264
9478
  )
@@ -9275,6 +9489,8 @@ class Domain(
9275
9489
  label: typing.Optional[builtins.str] = None,
9276
9490
  period: typing.Optional[_Duration_4839e8c3] = None,
9277
9491
  region: typing.Optional[builtins.str] = None,
9492
+ stack_account: typing.Optional[builtins.str] = None,
9493
+ stack_region: typing.Optional[builtins.str] = None,
9278
9494
  statistic: typing.Optional[builtins.str] = None,
9279
9495
  unit: typing.Optional[_Unit_61bc6f70] = None,
9280
9496
  ) -> _Metric_e396a4dc:
@@ -9286,6 +9502,8 @@ class Domain(
9286
9502
  :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
9287
9503
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
9288
9504
  :param region: Region which this metric comes from. Default: - Deployment region.
9505
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
9506
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
9289
9507
  :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
9290
9508
  :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
9291
9509
 
@@ -9298,6 +9516,8 @@ class Domain(
9298
9516
  label=label,
9299
9517
  period=period,
9300
9518
  region=region,
9519
+ stack_account=stack_account,
9520
+ stack_region=stack_region,
9301
9521
  statistic=statistic,
9302
9522
  unit=unit,
9303
9523
  )
@@ -9314,6 +9534,8 @@ class Domain(
9314
9534
  label: typing.Optional[builtins.str] = None,
9315
9535
  period: typing.Optional[_Duration_4839e8c3] = None,
9316
9536
  region: typing.Optional[builtins.str] = None,
9537
+ stack_account: typing.Optional[builtins.str] = None,
9538
+ stack_region: typing.Optional[builtins.str] = None,
9317
9539
  statistic: typing.Optional[builtins.str] = None,
9318
9540
  unit: typing.Optional[_Unit_61bc6f70] = None,
9319
9541
  ) -> _Metric_e396a4dc:
@@ -9325,6 +9547,8 @@ class Domain(
9325
9547
  :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
9326
9548
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
9327
9549
  :param region: Region which this metric comes from. Default: - Deployment region.
9550
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
9551
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
9328
9552
  :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
9329
9553
  :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
9330
9554
 
@@ -9337,6 +9561,8 @@ class Domain(
9337
9561
  label=label,
9338
9562
  period=period,
9339
9563
  region=region,
9564
+ stack_account=stack_account,
9565
+ stack_region=stack_region,
9340
9566
  statistic=statistic,
9341
9567
  unit=unit,
9342
9568
  )
@@ -9353,6 +9579,8 @@ class Domain(
9353
9579
  label: typing.Optional[builtins.str] = None,
9354
9580
  period: typing.Optional[_Duration_4839e8c3] = None,
9355
9581
  region: typing.Optional[builtins.str] = None,
9582
+ stack_account: typing.Optional[builtins.str] = None,
9583
+ stack_region: typing.Optional[builtins.str] = None,
9356
9584
  statistic: typing.Optional[builtins.str] = None,
9357
9585
  unit: typing.Optional[_Unit_61bc6f70] = None,
9358
9586
  ) -> _Metric_e396a4dc:
@@ -9364,6 +9592,8 @@ class Domain(
9364
9592
  :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
9365
9593
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
9366
9594
  :param region: Region which this metric comes from. Default: - Deployment region.
9595
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
9596
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
9367
9597
  :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
9368
9598
  :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
9369
9599
 
@@ -9376,6 +9606,8 @@ class Domain(
9376
9606
  label=label,
9377
9607
  period=period,
9378
9608
  region=region,
9609
+ stack_account=stack_account,
9610
+ stack_region=stack_region,
9379
9611
  statistic=statistic,
9380
9612
  unit=unit,
9381
9613
  )
@@ -9392,6 +9624,8 @@ class Domain(
9392
9624
  label: typing.Optional[builtins.str] = None,
9393
9625
  period: typing.Optional[_Duration_4839e8c3] = None,
9394
9626
  region: typing.Optional[builtins.str] = None,
9627
+ stack_account: typing.Optional[builtins.str] = None,
9628
+ stack_region: typing.Optional[builtins.str] = None,
9395
9629
  statistic: typing.Optional[builtins.str] = None,
9396
9630
  unit: typing.Optional[_Unit_61bc6f70] = None,
9397
9631
  ) -> _Metric_e396a4dc:
@@ -9403,6 +9637,8 @@ class Domain(
9403
9637
  :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
9404
9638
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
9405
9639
  :param region: Region which this metric comes from. Default: - Deployment region.
9640
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
9641
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
9406
9642
  :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
9407
9643
  :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
9408
9644
 
@@ -9415,6 +9651,8 @@ class Domain(
9415
9651
  label=label,
9416
9652
  period=period,
9417
9653
  region=region,
9654
+ stack_account=stack_account,
9655
+ stack_region=stack_region,
9418
9656
  statistic=statistic,
9419
9657
  unit=unit,
9420
9658
  )
@@ -9431,6 +9669,8 @@ class Domain(
9431
9669
  label: typing.Optional[builtins.str] = None,
9432
9670
  period: typing.Optional[_Duration_4839e8c3] = None,
9433
9671
  region: typing.Optional[builtins.str] = None,
9672
+ stack_account: typing.Optional[builtins.str] = None,
9673
+ stack_region: typing.Optional[builtins.str] = None,
9434
9674
  statistic: typing.Optional[builtins.str] = None,
9435
9675
  unit: typing.Optional[_Unit_61bc6f70] = None,
9436
9676
  ) -> _Metric_e396a4dc:
@@ -9442,6 +9682,8 @@ class Domain(
9442
9682
  :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
9443
9683
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
9444
9684
  :param region: Region which this metric comes from. Default: - Deployment region.
9685
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
9686
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
9445
9687
  :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
9446
9688
  :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
9447
9689
 
@@ -9454,6 +9696,8 @@ class Domain(
9454
9696
  label=label,
9455
9697
  period=period,
9456
9698
  region=region,
9699
+ stack_account=stack_account,
9700
+ stack_region=stack_region,
9457
9701
  statistic=statistic,
9458
9702
  unit=unit,
9459
9703
  )
@@ -9470,6 +9714,8 @@ class Domain(
9470
9714
  label: typing.Optional[builtins.str] = None,
9471
9715
  period: typing.Optional[_Duration_4839e8c3] = None,
9472
9716
  region: typing.Optional[builtins.str] = None,
9717
+ stack_account: typing.Optional[builtins.str] = None,
9718
+ stack_region: typing.Optional[builtins.str] = None,
9473
9719
  statistic: typing.Optional[builtins.str] = None,
9474
9720
  unit: typing.Optional[_Unit_61bc6f70] = None,
9475
9721
  ) -> _Metric_e396a4dc:
@@ -9481,6 +9727,8 @@ class Domain(
9481
9727
  :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
9482
9728
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
9483
9729
  :param region: Region which this metric comes from. Default: - Deployment region.
9730
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
9731
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
9484
9732
  :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
9485
9733
  :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
9486
9734
 
@@ -9493,6 +9741,8 @@ class Domain(
9493
9741
  label=label,
9494
9742
  period=period,
9495
9743
  region=region,
9744
+ stack_account=stack_account,
9745
+ stack_region=stack_region,
9496
9746
  statistic=statistic,
9497
9747
  unit=unit,
9498
9748
  )
@@ -9509,6 +9759,8 @@ class Domain(
9509
9759
  label: typing.Optional[builtins.str] = None,
9510
9760
  period: typing.Optional[_Duration_4839e8c3] = None,
9511
9761
  region: typing.Optional[builtins.str] = None,
9762
+ stack_account: typing.Optional[builtins.str] = None,
9763
+ stack_region: typing.Optional[builtins.str] = None,
9512
9764
  statistic: typing.Optional[builtins.str] = None,
9513
9765
  unit: typing.Optional[_Unit_61bc6f70] = None,
9514
9766
  ) -> _Metric_e396a4dc:
@@ -9520,6 +9772,8 @@ class Domain(
9520
9772
  :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
9521
9773
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
9522
9774
  :param region: Region which this metric comes from. Default: - Deployment region.
9775
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
9776
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
9523
9777
  :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
9524
9778
  :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
9525
9779
 
@@ -9532,6 +9786,8 @@ class Domain(
9532
9786
  label=label,
9533
9787
  period=period,
9534
9788
  region=region,
9789
+ stack_account=stack_account,
9790
+ stack_region=stack_region,
9535
9791
  statistic=statistic,
9536
9792
  unit=unit,
9537
9793
  )
@@ -10347,6 +10603,8 @@ def _typecheckingstub__ed477ecf16b0f23884f9eb3a0a90df530d2486e08c8dd662432a14ff4
10347
10603
  label: typing.Optional[builtins.str] = None,
10348
10604
  period: typing.Optional[_Duration_4839e8c3] = None,
10349
10605
  region: typing.Optional[builtins.str] = None,
10606
+ stack_account: typing.Optional[builtins.str] = None,
10607
+ stack_region: typing.Optional[builtins.str] = None,
10350
10608
  statistic: typing.Optional[builtins.str] = None,
10351
10609
  unit: typing.Optional[_Unit_61bc6f70] = None,
10352
10610
  ) -> None:
@@ -10525,6 +10783,8 @@ def _typecheckingstub__f6380e234537911c13695e16580579ea3144cdf17f001286bfce646a7
10525
10783
  label: typing.Optional[builtins.str] = None,
10526
10784
  period: typing.Optional[_Duration_4839e8c3] = None,
10527
10785
  region: typing.Optional[builtins.str] = None,
10786
+ stack_account: typing.Optional[builtins.str] = None,
10787
+ stack_region: typing.Optional[builtins.str] = None,
10528
10788
  statistic: typing.Optional[builtins.str] = None,
10529
10789
  unit: typing.Optional[_Unit_61bc6f70] = None,
10530
10790
  ) -> None: