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

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

Potentially problematic release.


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

Files changed (36) hide show
  1. aws_cdk/_jsii/__init__.py +1 -1
  2. aws_cdk/_jsii/{aws-cdk-lib@2.174.1.jsii.tgz → aws-cdk-lib@2.175.0.jsii.tgz} +0 -0
  3. aws_cdk/aws_apigateway/__init__.py +164 -0
  4. aws_cdk/aws_apigatewayv2/__init__.py +248 -0
  5. aws_cdk/aws_applicationautoscaling/__init__.py +6 -3
  6. aws_cdk/aws_autoscaling/__init__.py +8 -8
  7. aws_cdk/aws_certificatemanager/__init__.py +28 -0
  8. aws_cdk/aws_chatbot/__init__.py +28 -0
  9. aws_cdk/aws_cloudfront/__init__.py +92 -0
  10. aws_cdk/aws_cloudfront/experimental/__init__.py +32 -0
  11. aws_cdk/aws_cloudwatch/__init__.py +146 -0
  12. aws_cdk/aws_codebuild/__init__.py +84 -0
  13. aws_cdk/aws_dynamodb/__init__.py +300 -0
  14. aws_cdk/aws_ec2/__init__.py +97 -0
  15. aws_cdk/aws_ecs/__init__.py +351 -110
  16. aws_cdk/aws_ecs_patterns/__init__.py +77 -42
  17. aws_cdk/aws_elasticloadbalancing/__init__.py +3 -6
  18. aws_cdk/aws_elasticloadbalancingv2/__init__.py +732 -7
  19. aws_cdk/aws_elasticsearch/__init__.py +260 -0
  20. aws_cdk/aws_kinesis/__init__.py +324 -0
  21. aws_cdk/aws_kms/__init__.py +197 -0
  22. aws_cdk/aws_lambda/__init__.py +144 -0
  23. aws_cdk/aws_logs/__init__.py +58 -0
  24. aws_cdk/aws_opensearchservice/__init__.py +260 -0
  25. aws_cdk/aws_rds/__init__.py +384 -0
  26. aws_cdk/aws_sns/__init__.py +164 -0
  27. aws_cdk/aws_sqs/__init__.py +164 -0
  28. aws_cdk/aws_stepfunctions/__init__.py +288 -0
  29. aws_cdk/aws_synthetics/__init__.py +18 -0
  30. aws_cdk/cx_api/__init__.py +42 -0
  31. {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.0.dist-info}/METADATA +1 -1
  32. {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.0.dist-info}/RECORD +36 -36
  33. {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.0.dist-info}/LICENSE +0 -0
  34. {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.0.dist-info}/NOTICE +0 -0
  35. {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.0.dist-info}/WHEEL +0 -0
  36. {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.0.dist-info}/top_level.txt +0 -0
@@ -218,7 +218,7 @@ lb = elbv2.ApplicationLoadBalancer(self, "LB",
218
218
  # The idle timeout value, in seconds
219
219
  idle_timeout=Duration.seconds(1000),
220
220
 
221
- # Whether HTTP headers with header fields thatare not valid
221
+ # Whether HTTP headers with header fields that are not valid
222
222
  # are removed by the load balancer (true), or routed to targets
223
223
  drop_invalid_header_fields=True,
224
224
 
@@ -599,7 +599,7 @@ You can set cross-zone load balancing setting at the target group level by setti
599
599
 
600
600
  If not specified, it will use the load balancer's configuration.
601
601
 
602
- For more infomation, see [How Elastic Load Balancing works](https://docs.aws.amazon.com/elasticloadbalancing/latest/userguide/how-elastic-load-balancing-works.html).
602
+ For more information, see [How Elastic Load Balancing works](https://docs.aws.amazon.com/elasticloadbalancing/latest/userguide/how-elastic-load-balancing-works.html).
603
603
 
604
604
  ```python
605
605
  # vpc: ec2.Vpc
@@ -836,7 +836,7 @@ Node.of(resource).add_dependency(target_group.load_balancer_attached)
836
836
  You may look up load balancers and load balancer listeners by using one of the
837
837
  following lookup methods:
838
838
 
839
- * `ApplicationLoadBalancer.fromlookup(options)` - Look up an application load
839
+ * `ApplicationLoadBalancer.fromLookup(options)` - Look up an application load
840
840
  balancer.
841
841
  * `ApplicationListener.fromLookup(options)` - Look up an application load
842
842
  balancer listener.
@@ -2398,7 +2398,7 @@ class BaseApplicationListenerProps:
2398
2398
  # task_definition: ecs.TaskDefinition
2399
2399
  # vpc: ec2.Vpc
2400
2400
 
2401
- service = ecs.FargateService(self, "Service", cluster=cluster, task_definition=task_definition)
2401
+ service = ecs.FargateService(self, "Service", cluster=cluster, task_definition=task_definition, min_healthy_percent=100)
2402
2402
 
2403
2403
  lb = elbv2.ApplicationLoadBalancer(self, "LB", vpc=vpc, internet_facing=True)
2404
2404
  listener = lb.add_listener("Listener", port=80)
@@ -11268,7 +11268,7 @@ class DesyncMitigationMode(enum.Enum):
11268
11268
  # The idle timeout value, in seconds
11269
11269
  idle_timeout=Duration.seconds(1000),
11270
11270
 
11271
- # Whether HTTP headers with header fields thatare not valid
11271
+ # Whether HTTP headers with header fields that are not valid
11272
11272
  # are removed by the load balancer (true), or routed to targets
11273
11273
  drop_invalid_header_fields=True,
11274
11274
 
@@ -11517,7 +11517,8 @@ class HealthCheck:
11517
11517
  image=ecs.ContainerImage.from_registry("amazon/amazon-ecs-sample"),
11518
11518
  command=["command"],
11519
11519
  entry_point=["entry", "point"]
11520
- )
11520
+ ),
11521
+ min_healthy_percent=100
11521
11522
  )
11522
11523
 
11523
11524
  load_balanced_fargate_service.target_group.configure_health_check(
@@ -11798,6 +11799,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
11798
11799
  label: typing.Optional[builtins.str] = None,
11799
11800
  period: typing.Optional[_Duration_4839e8c3] = None,
11800
11801
  region: typing.Optional[builtins.str] = None,
11802
+ stack_account: typing.Optional[builtins.str] = None,
11803
+ stack_region: typing.Optional[builtins.str] = None,
11801
11804
  statistic: typing.Optional[builtins.str] = None,
11802
11805
  unit: typing.Optional[_Unit_61bc6f70] = None,
11803
11806
  ) -> _Metric_e396a4dc:
@@ -11809,6 +11812,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
11809
11812
  :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
11810
11813
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
11811
11814
  :param region: Region which this metric comes from. Default: - Deployment region.
11815
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
11816
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
11812
11817
  :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
11813
11818
  :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
11814
11819
 
@@ -11826,6 +11831,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
11826
11831
  label: typing.Optional[builtins.str] = None,
11827
11832
  period: typing.Optional[_Duration_4839e8c3] = None,
11828
11833
  region: typing.Optional[builtins.str] = None,
11834
+ stack_account: typing.Optional[builtins.str] = None,
11835
+ stack_region: typing.Optional[builtins.str] = None,
11829
11836
  statistic: typing.Optional[builtins.str] = None,
11830
11837
  unit: typing.Optional[_Unit_61bc6f70] = None,
11831
11838
  ) -> _Metric_e396a4dc:
@@ -11840,6 +11847,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
11840
11847
  :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
11841
11848
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
11842
11849
  :param region: Region which this metric comes from. Default: - Deployment region.
11850
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
11851
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
11843
11852
  :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
11844
11853
  :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
11845
11854
 
@@ -11857,6 +11866,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
11857
11866
  label: typing.Optional[builtins.str] = None,
11858
11867
  period: typing.Optional[_Duration_4839e8c3] = None,
11859
11868
  region: typing.Optional[builtins.str] = None,
11869
+ stack_account: typing.Optional[builtins.str] = None,
11870
+ stack_region: typing.Optional[builtins.str] = None,
11860
11871
  statistic: typing.Optional[builtins.str] = None,
11861
11872
  unit: typing.Optional[_Unit_61bc6f70] = None,
11862
11873
  ) -> _Metric_e396a4dc:
@@ -11868,6 +11879,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
11868
11879
  :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
11869
11880
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
11870
11881
  :param region: Region which this metric comes from. Default: - Deployment region.
11882
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
11883
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
11871
11884
  :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
11872
11885
  :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
11873
11886
 
@@ -11886,6 +11899,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
11886
11899
  label: typing.Optional[builtins.str] = None,
11887
11900
  period: typing.Optional[_Duration_4839e8c3] = None,
11888
11901
  region: typing.Optional[builtins.str] = None,
11902
+ stack_account: typing.Optional[builtins.str] = None,
11903
+ stack_region: typing.Optional[builtins.str] = None,
11889
11904
  statistic: typing.Optional[builtins.str] = None,
11890
11905
  unit: typing.Optional[_Unit_61bc6f70] = None,
11891
11906
  ) -> _Metric_e396a4dc:
@@ -11898,6 +11913,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
11898
11913
  :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
11899
11914
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
11900
11915
  :param region: Region which this metric comes from. Default: - Deployment region.
11916
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
11917
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
11901
11918
  :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
11902
11919
  :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
11903
11920
 
@@ -11915,6 +11932,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
11915
11932
  label: typing.Optional[builtins.str] = None,
11916
11933
  period: typing.Optional[_Duration_4839e8c3] = None,
11917
11934
  region: typing.Optional[builtins.str] = None,
11935
+ stack_account: typing.Optional[builtins.str] = None,
11936
+ stack_region: typing.Optional[builtins.str] = None,
11918
11937
  statistic: typing.Optional[builtins.str] = None,
11919
11938
  unit: typing.Optional[_Unit_61bc6f70] = None,
11920
11939
  ) -> _Metric_e396a4dc:
@@ -11930,6 +11949,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
11930
11949
  :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
11931
11950
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
11932
11951
  :param region: Region which this metric comes from. Default: - Deployment region.
11952
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
11953
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
11933
11954
  :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
11934
11955
  :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
11935
11956
 
@@ -11947,6 +11968,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
11947
11968
  label: typing.Optional[builtins.str] = None,
11948
11969
  period: typing.Optional[_Duration_4839e8c3] = None,
11949
11970
  region: typing.Optional[builtins.str] = None,
11971
+ stack_account: typing.Optional[builtins.str] = None,
11972
+ stack_region: typing.Optional[builtins.str] = None,
11950
11973
  statistic: typing.Optional[builtins.str] = None,
11951
11974
  unit: typing.Optional[_Unit_61bc6f70] = None,
11952
11975
  ) -> _Metric_e396a4dc:
@@ -11958,6 +11981,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
11958
11981
  :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
11959
11982
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
11960
11983
  :param region: Region which this metric comes from. Default: - Deployment region.
11984
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
11985
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
11961
11986
  :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
11962
11987
  :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
11963
11988
 
@@ -11975,6 +12000,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
11975
12000
  label: typing.Optional[builtins.str] = None,
11976
12001
  period: typing.Optional[_Duration_4839e8c3] = None,
11977
12002
  region: typing.Optional[builtins.str] = None,
12003
+ stack_account: typing.Optional[builtins.str] = None,
12004
+ stack_region: typing.Optional[builtins.str] = None,
11978
12005
  statistic: typing.Optional[builtins.str] = None,
11979
12006
  unit: typing.Optional[_Unit_61bc6f70] = None,
11980
12007
  ) -> _Metric_e396a4dc:
@@ -11988,6 +12015,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
11988
12015
  :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
11989
12016
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
11990
12017
  :param region: Region which this metric comes from. Default: - Deployment region.
12018
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
12019
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
11991
12020
  :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
11992
12021
  :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
11993
12022
 
@@ -12005,6 +12034,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
12005
12034
  label: typing.Optional[builtins.str] = None,
12006
12035
  period: typing.Optional[_Duration_4839e8c3] = None,
12007
12036
  region: typing.Optional[builtins.str] = None,
12037
+ stack_account: typing.Optional[builtins.str] = None,
12038
+ stack_region: typing.Optional[builtins.str] = None,
12008
12039
  statistic: typing.Optional[builtins.str] = None,
12009
12040
  unit: typing.Optional[_Unit_61bc6f70] = None,
12010
12041
  ) -> _Metric_e396a4dc:
@@ -12019,6 +12050,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
12019
12050
  :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
12020
12051
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
12021
12052
  :param region: Region which this metric comes from. Default: - Deployment region.
12053
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
12054
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
12022
12055
  :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
12023
12056
  :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
12024
12057
 
@@ -12037,6 +12070,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
12037
12070
  label: typing.Optional[builtins.str] = None,
12038
12071
  period: typing.Optional[_Duration_4839e8c3] = None,
12039
12072
  region: typing.Optional[builtins.str] = None,
12073
+ stack_account: typing.Optional[builtins.str] = None,
12074
+ stack_region: typing.Optional[builtins.str] = None,
12040
12075
  statistic: typing.Optional[builtins.str] = None,
12041
12076
  unit: typing.Optional[_Unit_61bc6f70] = None,
12042
12077
  ) -> _Metric_e396a4dc:
@@ -12051,6 +12086,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
12051
12086
  :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
12052
12087
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
12053
12088
  :param region: Region which this metric comes from. Default: - Deployment region.
12089
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
12090
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
12054
12091
  :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
12055
12092
  :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
12056
12093
 
@@ -12069,6 +12106,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
12069
12106
  label: typing.Optional[builtins.str] = None,
12070
12107
  period: typing.Optional[_Duration_4839e8c3] = None,
12071
12108
  region: typing.Optional[builtins.str] = None,
12109
+ stack_account: typing.Optional[builtins.str] = None,
12110
+ stack_region: typing.Optional[builtins.str] = None,
12072
12111
  statistic: typing.Optional[builtins.str] = None,
12073
12112
  unit: typing.Optional[_Unit_61bc6f70] = None,
12074
12113
  ) -> _Metric_e396a4dc:
@@ -12083,6 +12122,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
12083
12122
  :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
12084
12123
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
12085
12124
  :param region: Region which this metric comes from. Default: - Deployment region.
12125
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
12126
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
12086
12127
  :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
12087
12128
  :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
12088
12129
 
@@ -12100,6 +12141,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
12100
12141
  label: typing.Optional[builtins.str] = None,
12101
12142
  period: typing.Optional[_Duration_4839e8c3] = None,
12102
12143
  region: typing.Optional[builtins.str] = None,
12144
+ stack_account: typing.Optional[builtins.str] = None,
12145
+ stack_region: typing.Optional[builtins.str] = None,
12103
12146
  statistic: typing.Optional[builtins.str] = None,
12104
12147
  unit: typing.Optional[_Unit_61bc6f70] = None,
12105
12148
  ) -> _Metric_e396a4dc:
@@ -12111,6 +12154,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
12111
12154
  :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
12112
12155
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
12113
12156
  :param region: Region which this metric comes from. Default: - Deployment region.
12157
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
12158
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
12114
12159
  :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
12115
12160
  :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
12116
12161
 
@@ -12128,6 +12173,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
12128
12173
  label: typing.Optional[builtins.str] = None,
12129
12174
  period: typing.Optional[_Duration_4839e8c3] = None,
12130
12175
  region: typing.Optional[builtins.str] = None,
12176
+ stack_account: typing.Optional[builtins.str] = None,
12177
+ stack_region: typing.Optional[builtins.str] = None,
12131
12178
  statistic: typing.Optional[builtins.str] = None,
12132
12179
  unit: typing.Optional[_Unit_61bc6f70] = None,
12133
12180
  ) -> _Metric_e396a4dc:
@@ -12139,6 +12186,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
12139
12186
  :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
12140
12187
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
12141
12188
  :param region: Region which this metric comes from. Default: - Deployment region.
12189
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
12190
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
12142
12191
  :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
12143
12192
  :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
12144
12193
 
@@ -12156,6 +12205,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
12156
12205
  label: typing.Optional[builtins.str] = None,
12157
12206
  period: typing.Optional[_Duration_4839e8c3] = None,
12158
12207
  region: typing.Optional[builtins.str] = None,
12208
+ stack_account: typing.Optional[builtins.str] = None,
12209
+ stack_region: typing.Optional[builtins.str] = None,
12159
12210
  statistic: typing.Optional[builtins.str] = None,
12160
12211
  unit: typing.Optional[_Unit_61bc6f70] = None,
12161
12212
  ) -> _Metric_e396a4dc:
@@ -12167,6 +12218,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
12167
12218
  :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
12168
12219
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
12169
12220
  :param region: Region which this metric comes from. Default: - Deployment region.
12221
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
12222
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
12170
12223
  :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
12171
12224
  :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
12172
12225
 
@@ -12184,6 +12237,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
12184
12237
  label: typing.Optional[builtins.str] = None,
12185
12238
  period: typing.Optional[_Duration_4839e8c3] = None,
12186
12239
  region: typing.Optional[builtins.str] = None,
12240
+ stack_account: typing.Optional[builtins.str] = None,
12241
+ stack_region: typing.Optional[builtins.str] = None,
12187
12242
  statistic: typing.Optional[builtins.str] = None,
12188
12243
  unit: typing.Optional[_Unit_61bc6f70] = None,
12189
12244
  ) -> _Metric_e396a4dc:
@@ -12195,6 +12250,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
12195
12250
  :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
12196
12251
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
12197
12252
  :param region: Region which this metric comes from. Default: - Deployment region.
12253
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
12254
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
12198
12255
  :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
12199
12256
  :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
12200
12257
 
@@ -12212,6 +12269,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
12212
12269
  label: typing.Optional[builtins.str] = None,
12213
12270
  period: typing.Optional[_Duration_4839e8c3] = None,
12214
12271
  region: typing.Optional[builtins.str] = None,
12272
+ stack_account: typing.Optional[builtins.str] = None,
12273
+ stack_region: typing.Optional[builtins.str] = None,
12215
12274
  statistic: typing.Optional[builtins.str] = None,
12216
12275
  unit: typing.Optional[_Unit_61bc6f70] = None,
12217
12276
  ) -> _Metric_e396a4dc:
@@ -12223,6 +12282,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
12223
12282
  :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
12224
12283
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
12225
12284
  :param region: Region which this metric comes from. Default: - Deployment region.
12285
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
12286
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
12226
12287
  :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
12227
12288
  :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
12228
12289
 
@@ -12240,6 +12301,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
12240
12301
  label: typing.Optional[builtins.str] = None,
12241
12302
  period: typing.Optional[_Duration_4839e8c3] = None,
12242
12303
  region: typing.Optional[builtins.str] = None,
12304
+ stack_account: typing.Optional[builtins.str] = None,
12305
+ stack_region: typing.Optional[builtins.str] = None,
12243
12306
  statistic: typing.Optional[builtins.str] = None,
12244
12307
  unit: typing.Optional[_Unit_61bc6f70] = None,
12245
12308
  ) -> _Metric_e396a4dc:
@@ -12251,6 +12314,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
12251
12314
  :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
12252
12315
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
12253
12316
  :param region: Region which this metric comes from. Default: - Deployment region.
12317
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
12318
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
12254
12319
  :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
12255
12320
  :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
12256
12321
 
@@ -12268,6 +12333,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
12268
12333
  label: typing.Optional[builtins.str] = None,
12269
12334
  period: typing.Optional[_Duration_4839e8c3] = None,
12270
12335
  region: typing.Optional[builtins.str] = None,
12336
+ stack_account: typing.Optional[builtins.str] = None,
12337
+ stack_region: typing.Optional[builtins.str] = None,
12271
12338
  statistic: typing.Optional[builtins.str] = None,
12272
12339
  unit: typing.Optional[_Unit_61bc6f70] = None,
12273
12340
  ) -> _Metric_e396a4dc:
@@ -12279,6 +12346,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
12279
12346
  :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
12280
12347
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
12281
12348
  :param region: Region which this metric comes from. Default: - Deployment region.
12349
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
12350
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
12282
12351
  :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
12283
12352
  :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
12284
12353
 
@@ -12296,6 +12365,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
12296
12365
  label: typing.Optional[builtins.str] = None,
12297
12366
  period: typing.Optional[_Duration_4839e8c3] = None,
12298
12367
  region: typing.Optional[builtins.str] = None,
12368
+ stack_account: typing.Optional[builtins.str] = None,
12369
+ stack_region: typing.Optional[builtins.str] = None,
12299
12370
  statistic: typing.Optional[builtins.str] = None,
12300
12371
  unit: typing.Optional[_Unit_61bc6f70] = None,
12301
12372
  ) -> _Metric_e396a4dc:
@@ -12307,6 +12378,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
12307
12378
  :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
12308
12379
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
12309
12380
  :param region: Region which this metric comes from. Default: - Deployment region.
12381
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
12382
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
12310
12383
  :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
12311
12384
  :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
12312
12385
 
@@ -12324,6 +12397,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
12324
12397
  label: typing.Optional[builtins.str] = None,
12325
12398
  period: typing.Optional[_Duration_4839e8c3] = None,
12326
12399
  region: typing.Optional[builtins.str] = None,
12400
+ stack_account: typing.Optional[builtins.str] = None,
12401
+ stack_region: typing.Optional[builtins.str] = None,
12327
12402
  statistic: typing.Optional[builtins.str] = None,
12328
12403
  unit: typing.Optional[_Unit_61bc6f70] = None,
12329
12404
  ) -> _Metric_e396a4dc:
@@ -12337,6 +12412,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
12337
12412
  :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
12338
12413
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
12339
12414
  :param region: Region which this metric comes from. Default: - Deployment region.
12415
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
12416
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
12340
12417
  :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
12341
12418
  :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
12342
12419
 
@@ -12354,6 +12431,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
12354
12431
  label: typing.Optional[builtins.str] = None,
12355
12432
  period: typing.Optional[_Duration_4839e8c3] = None,
12356
12433
  region: typing.Optional[builtins.str] = None,
12434
+ stack_account: typing.Optional[builtins.str] = None,
12435
+ stack_region: typing.Optional[builtins.str] = None,
12357
12436
  statistic: typing.Optional[builtins.str] = None,
12358
12437
  unit: typing.Optional[_Unit_61bc6f70] = None,
12359
12438
  ) -> _Metric_e396a4dc:
@@ -12365,6 +12444,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
12365
12444
  :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
12366
12445
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
12367
12446
  :param region: Region which this metric comes from. Default: - Deployment region.
12447
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
12448
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
12368
12449
  :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
12369
12450
  :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
12370
12451
 
@@ -12382,6 +12463,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
12382
12463
  label: typing.Optional[builtins.str] = None,
12383
12464
  period: typing.Optional[_Duration_4839e8c3] = None,
12384
12465
  region: typing.Optional[builtins.str] = None,
12466
+ stack_account: typing.Optional[builtins.str] = None,
12467
+ stack_region: typing.Optional[builtins.str] = None,
12385
12468
  statistic: typing.Optional[builtins.str] = None,
12386
12469
  unit: typing.Optional[_Unit_61bc6f70] = None,
12387
12470
  ) -> _Metric_e396a4dc:
@@ -12393,6 +12476,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
12393
12476
  :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
12394
12477
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
12395
12478
  :param region: Region which this metric comes from. Default: - Deployment region.
12479
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
12480
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
12396
12481
  :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
12397
12482
  :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
12398
12483
 
@@ -12410,6 +12495,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
12410
12495
  label: typing.Optional[builtins.str] = None,
12411
12496
  period: typing.Optional[_Duration_4839e8c3] = None,
12412
12497
  region: typing.Optional[builtins.str] = None,
12498
+ stack_account: typing.Optional[builtins.str] = None,
12499
+ stack_region: typing.Optional[builtins.str] = None,
12413
12500
  statistic: typing.Optional[builtins.str] = None,
12414
12501
  unit: typing.Optional[_Unit_61bc6f70] = None,
12415
12502
  ) -> _Metric_e396a4dc:
@@ -12421,6 +12508,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
12421
12508
  :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
12422
12509
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
12423
12510
  :param region: Region which this metric comes from. Default: - Deployment region.
12511
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
12512
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
12424
12513
  :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
12425
12514
  :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
12426
12515
 
@@ -12438,6 +12527,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
12438
12527
  label: typing.Optional[builtins.str] = None,
12439
12528
  period: typing.Optional[_Duration_4839e8c3] = None,
12440
12529
  region: typing.Optional[builtins.str] = None,
12530
+ stack_account: typing.Optional[builtins.str] = None,
12531
+ stack_region: typing.Optional[builtins.str] = None,
12441
12532
  statistic: typing.Optional[builtins.str] = None,
12442
12533
  unit: typing.Optional[_Unit_61bc6f70] = None,
12443
12534
  ) -> _Metric_e396a4dc:
@@ -12451,6 +12542,8 @@ class IApplicationLoadBalancerMetrics(typing_extensions.Protocol):
12451
12542
  :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
12452
12543
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
12453
12544
  :param region: Region which this metric comes from. Default: - Deployment region.
12545
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
12546
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
12454
12547
  :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
12455
12548
  :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
12456
12549
 
@@ -12474,6 +12567,8 @@ class _IApplicationLoadBalancerMetricsProxy:
12474
12567
  label: typing.Optional[builtins.str] = None,
12475
12568
  period: typing.Optional[_Duration_4839e8c3] = None,
12476
12569
  region: typing.Optional[builtins.str] = None,
12570
+ stack_account: typing.Optional[builtins.str] = None,
12571
+ stack_region: typing.Optional[builtins.str] = None,
12477
12572
  statistic: typing.Optional[builtins.str] = None,
12478
12573
  unit: typing.Optional[_Unit_61bc6f70] = None,
12479
12574
  ) -> _Metric_e396a4dc:
@@ -12485,6 +12580,8 @@ class _IApplicationLoadBalancerMetricsProxy:
12485
12580
  :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
12486
12581
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
12487
12582
  :param region: Region which this metric comes from. Default: - Deployment region.
12583
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
12584
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
12488
12585
  :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
12489
12586
  :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
12490
12587
 
@@ -12497,6 +12594,8 @@ class _IApplicationLoadBalancerMetricsProxy:
12497
12594
  label=label,
12498
12595
  period=period,
12499
12596
  region=region,
12597
+ stack_account=stack_account,
12598
+ stack_region=stack_region,
12500
12599
  statistic=statistic,
12501
12600
  unit=unit,
12502
12601
  )
@@ -12513,6 +12612,8 @@ class _IApplicationLoadBalancerMetricsProxy:
12513
12612
  label: typing.Optional[builtins.str] = None,
12514
12613
  period: typing.Optional[_Duration_4839e8c3] = None,
12515
12614
  region: typing.Optional[builtins.str] = None,
12615
+ stack_account: typing.Optional[builtins.str] = None,
12616
+ stack_region: typing.Optional[builtins.str] = None,
12516
12617
  statistic: typing.Optional[builtins.str] = None,
12517
12618
  unit: typing.Optional[_Unit_61bc6f70] = None,
12518
12619
  ) -> _Metric_e396a4dc:
@@ -12527,6 +12628,8 @@ class _IApplicationLoadBalancerMetricsProxy:
12527
12628
  :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
12528
12629
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
12529
12630
  :param region: Region which this metric comes from. Default: - Deployment region.
12631
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
12632
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
12530
12633
  :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
12531
12634
  :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
12532
12635
 
@@ -12539,6 +12642,8 @@ class _IApplicationLoadBalancerMetricsProxy:
12539
12642
  label=label,
12540
12643
  period=period,
12541
12644
  region=region,
12645
+ stack_account=stack_account,
12646
+ stack_region=stack_region,
12542
12647
  statistic=statistic,
12543
12648
  unit=unit,
12544
12649
  )
@@ -12555,6 +12660,8 @@ class _IApplicationLoadBalancerMetricsProxy:
12555
12660
  label: typing.Optional[builtins.str] = None,
12556
12661
  period: typing.Optional[_Duration_4839e8c3] = None,
12557
12662
  region: typing.Optional[builtins.str] = None,
12663
+ stack_account: typing.Optional[builtins.str] = None,
12664
+ stack_region: typing.Optional[builtins.str] = None,
12558
12665
  statistic: typing.Optional[builtins.str] = None,
12559
12666
  unit: typing.Optional[_Unit_61bc6f70] = None,
12560
12667
  ) -> _Metric_e396a4dc:
@@ -12566,6 +12673,8 @@ class _IApplicationLoadBalancerMetricsProxy:
12566
12673
  :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
12567
12674
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
12568
12675
  :param region: Region which this metric comes from. Default: - Deployment region.
12676
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
12677
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
12569
12678
  :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
12570
12679
  :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
12571
12680
 
@@ -12578,6 +12687,8 @@ class _IApplicationLoadBalancerMetricsProxy:
12578
12687
  label=label,
12579
12688
  period=period,
12580
12689
  region=region,
12690
+ stack_account=stack_account,
12691
+ stack_region=stack_region,
12581
12692
  statistic=statistic,
12582
12693
  unit=unit,
12583
12694
  )
@@ -12595,6 +12706,8 @@ class _IApplicationLoadBalancerMetricsProxy:
12595
12706
  label: typing.Optional[builtins.str] = None,
12596
12707
  period: typing.Optional[_Duration_4839e8c3] = None,
12597
12708
  region: typing.Optional[builtins.str] = None,
12709
+ stack_account: typing.Optional[builtins.str] = None,
12710
+ stack_region: typing.Optional[builtins.str] = None,
12598
12711
  statistic: typing.Optional[builtins.str] = None,
12599
12712
  unit: typing.Optional[_Unit_61bc6f70] = None,
12600
12713
  ) -> _Metric_e396a4dc:
@@ -12607,6 +12720,8 @@ class _IApplicationLoadBalancerMetricsProxy:
12607
12720
  :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
12608
12721
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
12609
12722
  :param region: Region which this metric comes from. Default: - Deployment region.
12723
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
12724
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
12610
12725
  :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
12611
12726
  :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
12612
12727
 
@@ -12622,6 +12737,8 @@ class _IApplicationLoadBalancerMetricsProxy:
12622
12737
  label=label,
12623
12738
  period=period,
12624
12739
  region=region,
12740
+ stack_account=stack_account,
12741
+ stack_region=stack_region,
12625
12742
  statistic=statistic,
12626
12743
  unit=unit,
12627
12744
  )
@@ -12638,6 +12755,8 @@ class _IApplicationLoadBalancerMetricsProxy:
12638
12755
  label: typing.Optional[builtins.str] = None,
12639
12756
  period: typing.Optional[_Duration_4839e8c3] = None,
12640
12757
  region: typing.Optional[builtins.str] = None,
12758
+ stack_account: typing.Optional[builtins.str] = None,
12759
+ stack_region: typing.Optional[builtins.str] = None,
12641
12760
  statistic: typing.Optional[builtins.str] = None,
12642
12761
  unit: typing.Optional[_Unit_61bc6f70] = None,
12643
12762
  ) -> _Metric_e396a4dc:
@@ -12653,6 +12772,8 @@ class _IApplicationLoadBalancerMetricsProxy:
12653
12772
  :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
12654
12773
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
12655
12774
  :param region: Region which this metric comes from. Default: - Deployment region.
12775
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
12776
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
12656
12777
  :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
12657
12778
  :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
12658
12779
 
@@ -12665,6 +12786,8 @@ class _IApplicationLoadBalancerMetricsProxy:
12665
12786
  label=label,
12666
12787
  period=period,
12667
12788
  region=region,
12789
+ stack_account=stack_account,
12790
+ stack_region=stack_region,
12668
12791
  statistic=statistic,
12669
12792
  unit=unit,
12670
12793
  )
@@ -12681,6 +12804,8 @@ class _IApplicationLoadBalancerMetricsProxy:
12681
12804
  label: typing.Optional[builtins.str] = None,
12682
12805
  period: typing.Optional[_Duration_4839e8c3] = None,
12683
12806
  region: typing.Optional[builtins.str] = None,
12807
+ stack_account: typing.Optional[builtins.str] = None,
12808
+ stack_region: typing.Optional[builtins.str] = None,
12684
12809
  statistic: typing.Optional[builtins.str] = None,
12685
12810
  unit: typing.Optional[_Unit_61bc6f70] = None,
12686
12811
  ) -> _Metric_e396a4dc:
@@ -12692,6 +12817,8 @@ class _IApplicationLoadBalancerMetricsProxy:
12692
12817
  :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
12693
12818
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
12694
12819
  :param region: Region which this metric comes from. Default: - Deployment region.
12820
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
12821
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
12695
12822
  :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
12696
12823
  :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
12697
12824
 
@@ -12704,6 +12831,8 @@ class _IApplicationLoadBalancerMetricsProxy:
12704
12831
  label=label,
12705
12832
  period=period,
12706
12833
  region=region,
12834
+ stack_account=stack_account,
12835
+ stack_region=stack_region,
12707
12836
  statistic=statistic,
12708
12837
  unit=unit,
12709
12838
  )
@@ -12720,6 +12849,8 @@ class _IApplicationLoadBalancerMetricsProxy:
12720
12849
  label: typing.Optional[builtins.str] = None,
12721
12850
  period: typing.Optional[_Duration_4839e8c3] = None,
12722
12851
  region: typing.Optional[builtins.str] = None,
12852
+ stack_account: typing.Optional[builtins.str] = None,
12853
+ stack_region: typing.Optional[builtins.str] = None,
12723
12854
  statistic: typing.Optional[builtins.str] = None,
12724
12855
  unit: typing.Optional[_Unit_61bc6f70] = None,
12725
12856
  ) -> _Metric_e396a4dc:
@@ -12733,6 +12864,8 @@ class _IApplicationLoadBalancerMetricsProxy:
12733
12864
  :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
12734
12865
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
12735
12866
  :param region: Region which this metric comes from. Default: - Deployment region.
12867
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
12868
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
12736
12869
  :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
12737
12870
  :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
12738
12871
 
@@ -12745,6 +12878,8 @@ class _IApplicationLoadBalancerMetricsProxy:
12745
12878
  label=label,
12746
12879
  period=period,
12747
12880
  region=region,
12881
+ stack_account=stack_account,
12882
+ stack_region=stack_region,
12748
12883
  statistic=statistic,
12749
12884
  unit=unit,
12750
12885
  )
@@ -12761,6 +12896,8 @@ class _IApplicationLoadBalancerMetricsProxy:
12761
12896
  label: typing.Optional[builtins.str] = None,
12762
12897
  period: typing.Optional[_Duration_4839e8c3] = None,
12763
12898
  region: typing.Optional[builtins.str] = None,
12899
+ stack_account: typing.Optional[builtins.str] = None,
12900
+ stack_region: typing.Optional[builtins.str] = None,
12764
12901
  statistic: typing.Optional[builtins.str] = None,
12765
12902
  unit: typing.Optional[_Unit_61bc6f70] = None,
12766
12903
  ) -> _Metric_e396a4dc:
@@ -12775,6 +12912,8 @@ class _IApplicationLoadBalancerMetricsProxy:
12775
12912
  :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
12776
12913
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
12777
12914
  :param region: Region which this metric comes from. Default: - Deployment region.
12915
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
12916
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
12778
12917
  :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
12779
12918
  :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
12780
12919
 
@@ -12787,6 +12926,8 @@ class _IApplicationLoadBalancerMetricsProxy:
12787
12926
  label=label,
12788
12927
  period=period,
12789
12928
  region=region,
12929
+ stack_account=stack_account,
12930
+ stack_region=stack_region,
12790
12931
  statistic=statistic,
12791
12932
  unit=unit,
12792
12933
  )
@@ -12804,6 +12945,8 @@ class _IApplicationLoadBalancerMetricsProxy:
12804
12945
  label: typing.Optional[builtins.str] = None,
12805
12946
  period: typing.Optional[_Duration_4839e8c3] = None,
12806
12947
  region: typing.Optional[builtins.str] = None,
12948
+ stack_account: typing.Optional[builtins.str] = None,
12949
+ stack_region: typing.Optional[builtins.str] = None,
12807
12950
  statistic: typing.Optional[builtins.str] = None,
12808
12951
  unit: typing.Optional[_Unit_61bc6f70] = None,
12809
12952
  ) -> _Metric_e396a4dc:
@@ -12818,6 +12961,8 @@ class _IApplicationLoadBalancerMetricsProxy:
12818
12961
  :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
12819
12962
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
12820
12963
  :param region: Region which this metric comes from. Default: - Deployment region.
12964
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
12965
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
12821
12966
  :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
12822
12967
  :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
12823
12968
 
@@ -12833,6 +12978,8 @@ class _IApplicationLoadBalancerMetricsProxy:
12833
12978
  label=label,
12834
12979
  period=period,
12835
12980
  region=region,
12981
+ stack_account=stack_account,
12982
+ stack_region=stack_region,
12836
12983
  statistic=statistic,
12837
12984
  unit=unit,
12838
12985
  )
@@ -12850,6 +12997,8 @@ class _IApplicationLoadBalancerMetricsProxy:
12850
12997
  label: typing.Optional[builtins.str] = None,
12851
12998
  period: typing.Optional[_Duration_4839e8c3] = None,
12852
12999
  region: typing.Optional[builtins.str] = None,
13000
+ stack_account: typing.Optional[builtins.str] = None,
13001
+ stack_region: typing.Optional[builtins.str] = None,
12853
13002
  statistic: typing.Optional[builtins.str] = None,
12854
13003
  unit: typing.Optional[_Unit_61bc6f70] = None,
12855
13004
  ) -> _Metric_e396a4dc:
@@ -12864,6 +13013,8 @@ class _IApplicationLoadBalancerMetricsProxy:
12864
13013
  :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
12865
13014
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
12866
13015
  :param region: Region which this metric comes from. Default: - Deployment region.
13016
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
13017
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
12867
13018
  :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
12868
13019
  :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
12869
13020
 
@@ -12879,6 +13030,8 @@ class _IApplicationLoadBalancerMetricsProxy:
12879
13030
  label=label,
12880
13031
  period=period,
12881
13032
  region=region,
13033
+ stack_account=stack_account,
13034
+ stack_region=stack_region,
12882
13035
  statistic=statistic,
12883
13036
  unit=unit,
12884
13037
  )
@@ -12895,6 +13048,8 @@ class _IApplicationLoadBalancerMetricsProxy:
12895
13048
  label: typing.Optional[builtins.str] = None,
12896
13049
  period: typing.Optional[_Duration_4839e8c3] = None,
12897
13050
  region: typing.Optional[builtins.str] = None,
13051
+ stack_account: typing.Optional[builtins.str] = None,
13052
+ stack_region: typing.Optional[builtins.str] = None,
12898
13053
  statistic: typing.Optional[builtins.str] = None,
12899
13054
  unit: typing.Optional[_Unit_61bc6f70] = None,
12900
13055
  ) -> _Metric_e396a4dc:
@@ -12906,6 +13061,8 @@ class _IApplicationLoadBalancerMetricsProxy:
12906
13061
  :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
12907
13062
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
12908
13063
  :param region: Region which this metric comes from. Default: - Deployment region.
13064
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
13065
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
12909
13066
  :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
12910
13067
  :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
12911
13068
 
@@ -12918,6 +13075,8 @@ class _IApplicationLoadBalancerMetricsProxy:
12918
13075
  label=label,
12919
13076
  period=period,
12920
13077
  region=region,
13078
+ stack_account=stack_account,
13079
+ stack_region=stack_region,
12921
13080
  statistic=statistic,
12922
13081
  unit=unit,
12923
13082
  )
@@ -12934,6 +13093,8 @@ class _IApplicationLoadBalancerMetricsProxy:
12934
13093
  label: typing.Optional[builtins.str] = None,
12935
13094
  period: typing.Optional[_Duration_4839e8c3] = None,
12936
13095
  region: typing.Optional[builtins.str] = None,
13096
+ stack_account: typing.Optional[builtins.str] = None,
13097
+ stack_region: typing.Optional[builtins.str] = None,
12937
13098
  statistic: typing.Optional[builtins.str] = None,
12938
13099
  unit: typing.Optional[_Unit_61bc6f70] = None,
12939
13100
  ) -> _Metric_e396a4dc:
@@ -12945,6 +13106,8 @@ class _IApplicationLoadBalancerMetricsProxy:
12945
13106
  :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
12946
13107
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
12947
13108
  :param region: Region which this metric comes from. Default: - Deployment region.
13109
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
13110
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
12948
13111
  :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
12949
13112
  :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
12950
13113
 
@@ -12957,6 +13120,8 @@ class _IApplicationLoadBalancerMetricsProxy:
12957
13120
  label=label,
12958
13121
  period=period,
12959
13122
  region=region,
13123
+ stack_account=stack_account,
13124
+ stack_region=stack_region,
12960
13125
  statistic=statistic,
12961
13126
  unit=unit,
12962
13127
  )
@@ -12973,6 +13138,8 @@ class _IApplicationLoadBalancerMetricsProxy:
12973
13138
  label: typing.Optional[builtins.str] = None,
12974
13139
  period: typing.Optional[_Duration_4839e8c3] = None,
12975
13140
  region: typing.Optional[builtins.str] = None,
13141
+ stack_account: typing.Optional[builtins.str] = None,
13142
+ stack_region: typing.Optional[builtins.str] = None,
12976
13143
  statistic: typing.Optional[builtins.str] = None,
12977
13144
  unit: typing.Optional[_Unit_61bc6f70] = None,
12978
13145
  ) -> _Metric_e396a4dc:
@@ -12984,6 +13151,8 @@ class _IApplicationLoadBalancerMetricsProxy:
12984
13151
  :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
12985
13152
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
12986
13153
  :param region: Region which this metric comes from. Default: - Deployment region.
13154
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
13155
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
12987
13156
  :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
12988
13157
  :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
12989
13158
 
@@ -12996,6 +13165,8 @@ class _IApplicationLoadBalancerMetricsProxy:
12996
13165
  label=label,
12997
13166
  period=period,
12998
13167
  region=region,
13168
+ stack_account=stack_account,
13169
+ stack_region=stack_region,
12999
13170
  statistic=statistic,
13000
13171
  unit=unit,
13001
13172
  )
@@ -13012,6 +13183,8 @@ class _IApplicationLoadBalancerMetricsProxy:
13012
13183
  label: typing.Optional[builtins.str] = None,
13013
13184
  period: typing.Optional[_Duration_4839e8c3] = None,
13014
13185
  region: typing.Optional[builtins.str] = None,
13186
+ stack_account: typing.Optional[builtins.str] = None,
13187
+ stack_region: typing.Optional[builtins.str] = None,
13015
13188
  statistic: typing.Optional[builtins.str] = None,
13016
13189
  unit: typing.Optional[_Unit_61bc6f70] = None,
13017
13190
  ) -> _Metric_e396a4dc:
@@ -13023,6 +13196,8 @@ class _IApplicationLoadBalancerMetricsProxy:
13023
13196
  :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
13024
13197
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
13025
13198
  :param region: Region which this metric comes from. Default: - Deployment region.
13199
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
13200
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
13026
13201
  :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
13027
13202
  :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
13028
13203
 
@@ -13035,6 +13210,8 @@ class _IApplicationLoadBalancerMetricsProxy:
13035
13210
  label=label,
13036
13211
  period=period,
13037
13212
  region=region,
13213
+ stack_account=stack_account,
13214
+ stack_region=stack_region,
13038
13215
  statistic=statistic,
13039
13216
  unit=unit,
13040
13217
  )
@@ -13051,6 +13228,8 @@ class _IApplicationLoadBalancerMetricsProxy:
13051
13228
  label: typing.Optional[builtins.str] = None,
13052
13229
  period: typing.Optional[_Duration_4839e8c3] = None,
13053
13230
  region: typing.Optional[builtins.str] = None,
13231
+ stack_account: typing.Optional[builtins.str] = None,
13232
+ stack_region: typing.Optional[builtins.str] = None,
13054
13233
  statistic: typing.Optional[builtins.str] = None,
13055
13234
  unit: typing.Optional[_Unit_61bc6f70] = None,
13056
13235
  ) -> _Metric_e396a4dc:
@@ -13062,6 +13241,8 @@ class _IApplicationLoadBalancerMetricsProxy:
13062
13241
  :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
13063
13242
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
13064
13243
  :param region: Region which this metric comes from. Default: - Deployment region.
13244
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
13245
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
13065
13246
  :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
13066
13247
  :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
13067
13248
 
@@ -13074,6 +13255,8 @@ class _IApplicationLoadBalancerMetricsProxy:
13074
13255
  label=label,
13075
13256
  period=period,
13076
13257
  region=region,
13258
+ stack_account=stack_account,
13259
+ stack_region=stack_region,
13077
13260
  statistic=statistic,
13078
13261
  unit=unit,
13079
13262
  )
@@ -13090,6 +13273,8 @@ class _IApplicationLoadBalancerMetricsProxy:
13090
13273
  label: typing.Optional[builtins.str] = None,
13091
13274
  period: typing.Optional[_Duration_4839e8c3] = None,
13092
13275
  region: typing.Optional[builtins.str] = None,
13276
+ stack_account: typing.Optional[builtins.str] = None,
13277
+ stack_region: typing.Optional[builtins.str] = None,
13093
13278
  statistic: typing.Optional[builtins.str] = None,
13094
13279
  unit: typing.Optional[_Unit_61bc6f70] = None,
13095
13280
  ) -> _Metric_e396a4dc:
@@ -13101,6 +13286,8 @@ class _IApplicationLoadBalancerMetricsProxy:
13101
13286
  :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
13102
13287
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
13103
13288
  :param region: Region which this metric comes from. Default: - Deployment region.
13289
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
13290
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
13104
13291
  :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
13105
13292
  :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
13106
13293
 
@@ -13113,6 +13300,8 @@ class _IApplicationLoadBalancerMetricsProxy:
13113
13300
  label=label,
13114
13301
  period=period,
13115
13302
  region=region,
13303
+ stack_account=stack_account,
13304
+ stack_region=stack_region,
13116
13305
  statistic=statistic,
13117
13306
  unit=unit,
13118
13307
  )
@@ -13129,6 +13318,8 @@ class _IApplicationLoadBalancerMetricsProxy:
13129
13318
  label: typing.Optional[builtins.str] = None,
13130
13319
  period: typing.Optional[_Duration_4839e8c3] = None,
13131
13320
  region: typing.Optional[builtins.str] = None,
13321
+ stack_account: typing.Optional[builtins.str] = None,
13322
+ stack_region: typing.Optional[builtins.str] = None,
13132
13323
  statistic: typing.Optional[builtins.str] = None,
13133
13324
  unit: typing.Optional[_Unit_61bc6f70] = None,
13134
13325
  ) -> _Metric_e396a4dc:
@@ -13140,6 +13331,8 @@ class _IApplicationLoadBalancerMetricsProxy:
13140
13331
  :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
13141
13332
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
13142
13333
  :param region: Region which this metric comes from. Default: - Deployment region.
13334
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
13335
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
13143
13336
  :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
13144
13337
  :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
13145
13338
 
@@ -13152,6 +13345,8 @@ class _IApplicationLoadBalancerMetricsProxy:
13152
13345
  label=label,
13153
13346
  period=period,
13154
13347
  region=region,
13348
+ stack_account=stack_account,
13349
+ stack_region=stack_region,
13155
13350
  statistic=statistic,
13156
13351
  unit=unit,
13157
13352
  )
@@ -13168,6 +13363,8 @@ class _IApplicationLoadBalancerMetricsProxy:
13168
13363
  label: typing.Optional[builtins.str] = None,
13169
13364
  period: typing.Optional[_Duration_4839e8c3] = None,
13170
13365
  region: typing.Optional[builtins.str] = None,
13366
+ stack_account: typing.Optional[builtins.str] = None,
13367
+ stack_region: typing.Optional[builtins.str] = None,
13171
13368
  statistic: typing.Optional[builtins.str] = None,
13172
13369
  unit: typing.Optional[_Unit_61bc6f70] = None,
13173
13370
  ) -> _Metric_e396a4dc:
@@ -13179,6 +13376,8 @@ class _IApplicationLoadBalancerMetricsProxy:
13179
13376
  :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
13180
13377
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
13181
13378
  :param region: Region which this metric comes from. Default: - Deployment region.
13379
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
13380
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
13182
13381
  :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
13183
13382
  :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
13184
13383
 
@@ -13191,6 +13390,8 @@ class _IApplicationLoadBalancerMetricsProxy:
13191
13390
  label=label,
13192
13391
  period=period,
13193
13392
  region=region,
13393
+ stack_account=stack_account,
13394
+ stack_region=stack_region,
13194
13395
  statistic=statistic,
13195
13396
  unit=unit,
13196
13397
  )
@@ -13207,6 +13408,8 @@ class _IApplicationLoadBalancerMetricsProxy:
13207
13408
  label: typing.Optional[builtins.str] = None,
13208
13409
  period: typing.Optional[_Duration_4839e8c3] = None,
13209
13410
  region: typing.Optional[builtins.str] = None,
13411
+ stack_account: typing.Optional[builtins.str] = None,
13412
+ stack_region: typing.Optional[builtins.str] = None,
13210
13413
  statistic: typing.Optional[builtins.str] = None,
13211
13414
  unit: typing.Optional[_Unit_61bc6f70] = None,
13212
13415
  ) -> _Metric_e396a4dc:
@@ -13220,6 +13423,8 @@ class _IApplicationLoadBalancerMetricsProxy:
13220
13423
  :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
13221
13424
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
13222
13425
  :param region: Region which this metric comes from. Default: - Deployment region.
13426
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
13427
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
13223
13428
  :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
13224
13429
  :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
13225
13430
 
@@ -13232,6 +13437,8 @@ class _IApplicationLoadBalancerMetricsProxy:
13232
13437
  label=label,
13233
13438
  period=period,
13234
13439
  region=region,
13440
+ stack_account=stack_account,
13441
+ stack_region=stack_region,
13235
13442
  statistic=statistic,
13236
13443
  unit=unit,
13237
13444
  )
@@ -13248,6 +13455,8 @@ class _IApplicationLoadBalancerMetricsProxy:
13248
13455
  label: typing.Optional[builtins.str] = None,
13249
13456
  period: typing.Optional[_Duration_4839e8c3] = None,
13250
13457
  region: typing.Optional[builtins.str] = None,
13458
+ stack_account: typing.Optional[builtins.str] = None,
13459
+ stack_region: typing.Optional[builtins.str] = None,
13251
13460
  statistic: typing.Optional[builtins.str] = None,
13252
13461
  unit: typing.Optional[_Unit_61bc6f70] = None,
13253
13462
  ) -> _Metric_e396a4dc:
@@ -13259,6 +13468,8 @@ class _IApplicationLoadBalancerMetricsProxy:
13259
13468
  :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
13260
13469
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
13261
13470
  :param region: Region which this metric comes from. Default: - Deployment region.
13471
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
13472
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
13262
13473
  :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
13263
13474
  :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
13264
13475
 
@@ -13271,6 +13482,8 @@ class _IApplicationLoadBalancerMetricsProxy:
13271
13482
  label=label,
13272
13483
  period=period,
13273
13484
  region=region,
13485
+ stack_account=stack_account,
13486
+ stack_region=stack_region,
13274
13487
  statistic=statistic,
13275
13488
  unit=unit,
13276
13489
  )
@@ -13287,6 +13500,8 @@ class _IApplicationLoadBalancerMetricsProxy:
13287
13500
  label: typing.Optional[builtins.str] = None,
13288
13501
  period: typing.Optional[_Duration_4839e8c3] = None,
13289
13502
  region: typing.Optional[builtins.str] = None,
13503
+ stack_account: typing.Optional[builtins.str] = None,
13504
+ stack_region: typing.Optional[builtins.str] = None,
13290
13505
  statistic: typing.Optional[builtins.str] = None,
13291
13506
  unit: typing.Optional[_Unit_61bc6f70] = None,
13292
13507
  ) -> _Metric_e396a4dc:
@@ -13298,6 +13513,8 @@ class _IApplicationLoadBalancerMetricsProxy:
13298
13513
  :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
13299
13514
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
13300
13515
  :param region: Region which this metric comes from. Default: - Deployment region.
13516
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
13517
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
13301
13518
  :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
13302
13519
  :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
13303
13520
 
@@ -13310,6 +13527,8 @@ class _IApplicationLoadBalancerMetricsProxy:
13310
13527
  label=label,
13311
13528
  period=period,
13312
13529
  region=region,
13530
+ stack_account=stack_account,
13531
+ stack_region=stack_region,
13313
13532
  statistic=statistic,
13314
13533
  unit=unit,
13315
13534
  )
@@ -13326,6 +13545,8 @@ class _IApplicationLoadBalancerMetricsProxy:
13326
13545
  label: typing.Optional[builtins.str] = None,
13327
13546
  period: typing.Optional[_Duration_4839e8c3] = None,
13328
13547
  region: typing.Optional[builtins.str] = None,
13548
+ stack_account: typing.Optional[builtins.str] = None,
13549
+ stack_region: typing.Optional[builtins.str] = None,
13329
13550
  statistic: typing.Optional[builtins.str] = None,
13330
13551
  unit: typing.Optional[_Unit_61bc6f70] = None,
13331
13552
  ) -> _Metric_e396a4dc:
@@ -13337,6 +13558,8 @@ class _IApplicationLoadBalancerMetricsProxy:
13337
13558
  :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
13338
13559
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
13339
13560
  :param region: Region which this metric comes from. Default: - Deployment region.
13561
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
13562
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
13340
13563
  :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
13341
13564
  :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
13342
13565
 
@@ -13349,6 +13572,8 @@ class _IApplicationLoadBalancerMetricsProxy:
13349
13572
  label=label,
13350
13573
  period=period,
13351
13574
  region=region,
13575
+ stack_account=stack_account,
13576
+ stack_region=stack_region,
13352
13577
  statistic=statistic,
13353
13578
  unit=unit,
13354
13579
  )
@@ -13365,6 +13590,8 @@ class _IApplicationLoadBalancerMetricsProxy:
13365
13590
  label: typing.Optional[builtins.str] = None,
13366
13591
  period: typing.Optional[_Duration_4839e8c3] = None,
13367
13592
  region: typing.Optional[builtins.str] = None,
13593
+ stack_account: typing.Optional[builtins.str] = None,
13594
+ stack_region: typing.Optional[builtins.str] = None,
13368
13595
  statistic: typing.Optional[builtins.str] = None,
13369
13596
  unit: typing.Optional[_Unit_61bc6f70] = None,
13370
13597
  ) -> _Metric_e396a4dc:
@@ -13378,6 +13605,8 @@ class _IApplicationLoadBalancerMetricsProxy:
13378
13605
  :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
13379
13606
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
13380
13607
  :param region: Region which this metric comes from. Default: - Deployment region.
13608
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
13609
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
13381
13610
  :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
13382
13611
  :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
13383
13612
 
@@ -13390,6 +13619,8 @@ class _IApplicationLoadBalancerMetricsProxy:
13390
13619
  label=label,
13391
13620
  period=period,
13392
13621
  region=region,
13622
+ stack_account=stack_account,
13623
+ stack_region=stack_region,
13393
13624
  statistic=statistic,
13394
13625
  unit=unit,
13395
13626
  )
@@ -13464,6 +13695,8 @@ class IApplicationTargetGroupMetrics(typing_extensions.Protocol):
13464
13695
  label: typing.Optional[builtins.str] = None,
13465
13696
  period: typing.Optional[_Duration_4839e8c3] = None,
13466
13697
  region: typing.Optional[builtins.str] = None,
13698
+ stack_account: typing.Optional[builtins.str] = None,
13699
+ stack_region: typing.Optional[builtins.str] = None,
13467
13700
  statistic: typing.Optional[builtins.str] = None,
13468
13701
  unit: typing.Optional[_Unit_61bc6f70] = None,
13469
13702
  ) -> _Metric_e396a4dc:
@@ -13476,6 +13709,8 @@ class IApplicationTargetGroupMetrics(typing_extensions.Protocol):
13476
13709
  :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
13477
13710
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
13478
13711
  :param region: Region which this metric comes from. Default: - Deployment region.
13712
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
13713
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
13479
13714
  :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
13480
13715
  :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
13481
13716
 
@@ -13493,6 +13728,8 @@ class IApplicationTargetGroupMetrics(typing_extensions.Protocol):
13493
13728
  label: typing.Optional[builtins.str] = None,
13494
13729
  period: typing.Optional[_Duration_4839e8c3] = None,
13495
13730
  region: typing.Optional[builtins.str] = None,
13731
+ stack_account: typing.Optional[builtins.str] = None,
13732
+ stack_region: typing.Optional[builtins.str] = None,
13496
13733
  statistic: typing.Optional[builtins.str] = None,
13497
13734
  unit: typing.Optional[_Unit_61bc6f70] = None,
13498
13735
  ) -> _Metric_e396a4dc:
@@ -13504,6 +13741,8 @@ class IApplicationTargetGroupMetrics(typing_extensions.Protocol):
13504
13741
  :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
13505
13742
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
13506
13743
  :param region: Region which this metric comes from. Default: - Deployment region.
13744
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
13745
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
13507
13746
  :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
13508
13747
  :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
13509
13748
 
@@ -13522,6 +13761,8 @@ class IApplicationTargetGroupMetrics(typing_extensions.Protocol):
13522
13761
  label: typing.Optional[builtins.str] = None,
13523
13762
  period: typing.Optional[_Duration_4839e8c3] = None,
13524
13763
  region: typing.Optional[builtins.str] = None,
13764
+ stack_account: typing.Optional[builtins.str] = None,
13765
+ stack_region: typing.Optional[builtins.str] = None,
13525
13766
  statistic: typing.Optional[builtins.str] = None,
13526
13767
  unit: typing.Optional[_Unit_61bc6f70] = None,
13527
13768
  ) -> _Metric_e396a4dc:
@@ -13536,6 +13777,8 @@ class IApplicationTargetGroupMetrics(typing_extensions.Protocol):
13536
13777
  :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
13537
13778
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
13538
13779
  :param region: Region which this metric comes from. Default: - Deployment region.
13780
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
13781
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
13539
13782
  :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
13540
13783
  :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
13541
13784
 
@@ -13553,6 +13796,8 @@ class IApplicationTargetGroupMetrics(typing_extensions.Protocol):
13553
13796
  label: typing.Optional[builtins.str] = None,
13554
13797
  period: typing.Optional[_Duration_4839e8c3] = None,
13555
13798
  region: typing.Optional[builtins.str] = None,
13799
+ stack_account: typing.Optional[builtins.str] = None,
13800
+ stack_region: typing.Optional[builtins.str] = None,
13556
13801
  statistic: typing.Optional[builtins.str] = None,
13557
13802
  unit: typing.Optional[_Unit_61bc6f70] = None,
13558
13803
  ) -> _Metric_e396a4dc:
@@ -13564,6 +13809,8 @@ class IApplicationTargetGroupMetrics(typing_extensions.Protocol):
13564
13809
  :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
13565
13810
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
13566
13811
  :param region: Region which this metric comes from. Default: - Deployment region.
13812
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
13813
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
13567
13814
  :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
13568
13815
  :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
13569
13816
 
@@ -13581,6 +13828,8 @@ class IApplicationTargetGroupMetrics(typing_extensions.Protocol):
13581
13828
  label: typing.Optional[builtins.str] = None,
13582
13829
  period: typing.Optional[_Duration_4839e8c3] = None,
13583
13830
  region: typing.Optional[builtins.str] = None,
13831
+ stack_account: typing.Optional[builtins.str] = None,
13832
+ stack_region: typing.Optional[builtins.str] = None,
13584
13833
  statistic: typing.Optional[builtins.str] = None,
13585
13834
  unit: typing.Optional[_Unit_61bc6f70] = None,
13586
13835
  ) -> _Metric_e396a4dc:
@@ -13594,6 +13843,8 @@ class IApplicationTargetGroupMetrics(typing_extensions.Protocol):
13594
13843
  :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
13595
13844
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
13596
13845
  :param region: Region which this metric comes from. Default: - Deployment region.
13846
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
13847
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
13597
13848
  :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
13598
13849
  :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
13599
13850
 
@@ -13611,6 +13862,8 @@ class IApplicationTargetGroupMetrics(typing_extensions.Protocol):
13611
13862
  label: typing.Optional[builtins.str] = None,
13612
13863
  period: typing.Optional[_Duration_4839e8c3] = None,
13613
13864
  region: typing.Optional[builtins.str] = None,
13865
+ stack_account: typing.Optional[builtins.str] = None,
13866
+ stack_region: typing.Optional[builtins.str] = None,
13614
13867
  statistic: typing.Optional[builtins.str] = None,
13615
13868
  unit: typing.Optional[_Unit_61bc6f70] = None,
13616
13869
  ) -> _Metric_e396a4dc:
@@ -13624,6 +13877,8 @@ class IApplicationTargetGroupMetrics(typing_extensions.Protocol):
13624
13877
  :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
13625
13878
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
13626
13879
  :param region: Region which this metric comes from. Default: - Deployment region.
13880
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
13881
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
13627
13882
  :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
13628
13883
  :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
13629
13884
 
@@ -13641,6 +13896,8 @@ class IApplicationTargetGroupMetrics(typing_extensions.Protocol):
13641
13896
  label: typing.Optional[builtins.str] = None,
13642
13897
  period: typing.Optional[_Duration_4839e8c3] = None,
13643
13898
  region: typing.Optional[builtins.str] = None,
13899
+ stack_account: typing.Optional[builtins.str] = None,
13900
+ stack_region: typing.Optional[builtins.str] = None,
13644
13901
  statistic: typing.Optional[builtins.str] = None,
13645
13902
  unit: typing.Optional[_Unit_61bc6f70] = None,
13646
13903
  ) -> _Metric_e396a4dc:
@@ -13652,6 +13909,8 @@ class IApplicationTargetGroupMetrics(typing_extensions.Protocol):
13652
13909
  :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
13653
13910
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
13654
13911
  :param region: Region which this metric comes from. Default: - Deployment region.
13912
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
13913
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
13655
13914
  :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
13656
13915
  :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
13657
13916
 
@@ -13669,6 +13928,8 @@ class IApplicationTargetGroupMetrics(typing_extensions.Protocol):
13669
13928
  label: typing.Optional[builtins.str] = None,
13670
13929
  period: typing.Optional[_Duration_4839e8c3] = None,
13671
13930
  region: typing.Optional[builtins.str] = None,
13931
+ stack_account: typing.Optional[builtins.str] = None,
13932
+ stack_region: typing.Optional[builtins.str] = None,
13672
13933
  statistic: typing.Optional[builtins.str] = None,
13673
13934
  unit: typing.Optional[_Unit_61bc6f70] = None,
13674
13935
  ) -> _Metric_e396a4dc:
@@ -13680,6 +13941,8 @@ class IApplicationTargetGroupMetrics(typing_extensions.Protocol):
13680
13941
  :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
13681
13942
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
13682
13943
  :param region: Region which this metric comes from. Default: - Deployment region.
13944
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
13945
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
13683
13946
  :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
13684
13947
  :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
13685
13948
 
@@ -13697,6 +13960,8 @@ class IApplicationTargetGroupMetrics(typing_extensions.Protocol):
13697
13960
  label: typing.Optional[builtins.str] = None,
13698
13961
  period: typing.Optional[_Duration_4839e8c3] = None,
13699
13962
  region: typing.Optional[builtins.str] = None,
13963
+ stack_account: typing.Optional[builtins.str] = None,
13964
+ stack_region: typing.Optional[builtins.str] = None,
13700
13965
  statistic: typing.Optional[builtins.str] = None,
13701
13966
  unit: typing.Optional[_Unit_61bc6f70] = None,
13702
13967
  ) -> _Metric_e396a4dc:
@@ -13710,6 +13975,8 @@ class IApplicationTargetGroupMetrics(typing_extensions.Protocol):
13710
13975
  :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
13711
13976
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
13712
13977
  :param region: Region which this metric comes from. Default: - Deployment region.
13978
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
13979
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
13713
13980
  :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
13714
13981
  :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
13715
13982
 
@@ -13727,6 +13994,8 @@ class IApplicationTargetGroupMetrics(typing_extensions.Protocol):
13727
13994
  label: typing.Optional[builtins.str] = None,
13728
13995
  period: typing.Optional[_Duration_4839e8c3] = None,
13729
13996
  region: typing.Optional[builtins.str] = None,
13997
+ stack_account: typing.Optional[builtins.str] = None,
13998
+ stack_region: typing.Optional[builtins.str] = None,
13730
13999
  statistic: typing.Optional[builtins.str] = None,
13731
14000
  unit: typing.Optional[_Unit_61bc6f70] = None,
13732
14001
  ) -> _Metric_e396a4dc:
@@ -13738,6 +14007,8 @@ class IApplicationTargetGroupMetrics(typing_extensions.Protocol):
13738
14007
  :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
13739
14008
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
13740
14009
  :param region: Region which this metric comes from. Default: - Deployment region.
14010
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
14011
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
13741
14012
  :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
13742
14013
  :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
13743
14014
 
@@ -13762,6 +14033,8 @@ class _IApplicationTargetGroupMetricsProxy:
13762
14033
  label: typing.Optional[builtins.str] = None,
13763
14034
  period: typing.Optional[_Duration_4839e8c3] = None,
13764
14035
  region: typing.Optional[builtins.str] = None,
14036
+ stack_account: typing.Optional[builtins.str] = None,
14037
+ stack_region: typing.Optional[builtins.str] = None,
13765
14038
  statistic: typing.Optional[builtins.str] = None,
13766
14039
  unit: typing.Optional[_Unit_61bc6f70] = None,
13767
14040
  ) -> _Metric_e396a4dc:
@@ -13774,6 +14047,8 @@ class _IApplicationTargetGroupMetricsProxy:
13774
14047
  :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
13775
14048
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
13776
14049
  :param region: Region which this metric comes from. Default: - Deployment region.
14050
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
14051
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
13777
14052
  :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
13778
14053
  :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
13779
14054
 
@@ -13789,6 +14064,8 @@ class _IApplicationTargetGroupMetricsProxy:
13789
14064
  label=label,
13790
14065
  period=period,
13791
14066
  region=region,
14067
+ stack_account=stack_account,
14068
+ stack_region=stack_region,
13792
14069
  statistic=statistic,
13793
14070
  unit=unit,
13794
14071
  )
@@ -13805,6 +14082,8 @@ class _IApplicationTargetGroupMetricsProxy:
13805
14082
  label: typing.Optional[builtins.str] = None,
13806
14083
  period: typing.Optional[_Duration_4839e8c3] = None,
13807
14084
  region: typing.Optional[builtins.str] = None,
14085
+ stack_account: typing.Optional[builtins.str] = None,
14086
+ stack_region: typing.Optional[builtins.str] = None,
13808
14087
  statistic: typing.Optional[builtins.str] = None,
13809
14088
  unit: typing.Optional[_Unit_61bc6f70] = None,
13810
14089
  ) -> _Metric_e396a4dc:
@@ -13816,6 +14095,8 @@ class _IApplicationTargetGroupMetricsProxy:
13816
14095
  :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
13817
14096
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
13818
14097
  :param region: Region which this metric comes from. Default: - Deployment region.
14098
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
14099
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
13819
14100
  :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
13820
14101
  :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
13821
14102
 
@@ -13828,6 +14109,8 @@ class _IApplicationTargetGroupMetricsProxy:
13828
14109
  label=label,
13829
14110
  period=period,
13830
14111
  region=region,
14112
+ stack_account=stack_account,
14113
+ stack_region=stack_region,
13831
14114
  statistic=statistic,
13832
14115
  unit=unit,
13833
14116
  )
@@ -13845,6 +14128,8 @@ class _IApplicationTargetGroupMetricsProxy:
13845
14128
  label: typing.Optional[builtins.str] = None,
13846
14129
  period: typing.Optional[_Duration_4839e8c3] = None,
13847
14130
  region: typing.Optional[builtins.str] = None,
14131
+ stack_account: typing.Optional[builtins.str] = None,
14132
+ stack_region: typing.Optional[builtins.str] = None,
13848
14133
  statistic: typing.Optional[builtins.str] = None,
13849
14134
  unit: typing.Optional[_Unit_61bc6f70] = None,
13850
14135
  ) -> _Metric_e396a4dc:
@@ -13859,6 +14144,8 @@ class _IApplicationTargetGroupMetricsProxy:
13859
14144
  :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
13860
14145
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
13861
14146
  :param region: Region which this metric comes from. Default: - Deployment region.
14147
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
14148
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
13862
14149
  :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
13863
14150
  :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
13864
14151
 
@@ -13874,6 +14161,8 @@ class _IApplicationTargetGroupMetricsProxy:
13874
14161
  label=label,
13875
14162
  period=period,
13876
14163
  region=region,
14164
+ stack_account=stack_account,
14165
+ stack_region=stack_region,
13877
14166
  statistic=statistic,
13878
14167
  unit=unit,
13879
14168
  )
@@ -13890,6 +14179,8 @@ class _IApplicationTargetGroupMetricsProxy:
13890
14179
  label: typing.Optional[builtins.str] = None,
13891
14180
  period: typing.Optional[_Duration_4839e8c3] = None,
13892
14181
  region: typing.Optional[builtins.str] = None,
14182
+ stack_account: typing.Optional[builtins.str] = None,
14183
+ stack_region: typing.Optional[builtins.str] = None,
13893
14184
  statistic: typing.Optional[builtins.str] = None,
13894
14185
  unit: typing.Optional[_Unit_61bc6f70] = None,
13895
14186
  ) -> _Metric_e396a4dc:
@@ -13901,6 +14192,8 @@ class _IApplicationTargetGroupMetricsProxy:
13901
14192
  :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
13902
14193
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
13903
14194
  :param region: Region which this metric comes from. Default: - Deployment region.
14195
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
14196
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
13904
14197
  :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
13905
14198
  :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
13906
14199
 
@@ -13913,6 +14206,8 @@ class _IApplicationTargetGroupMetricsProxy:
13913
14206
  label=label,
13914
14207
  period=period,
13915
14208
  region=region,
14209
+ stack_account=stack_account,
14210
+ stack_region=stack_region,
13916
14211
  statistic=statistic,
13917
14212
  unit=unit,
13918
14213
  )
@@ -13929,6 +14224,8 @@ class _IApplicationTargetGroupMetricsProxy:
13929
14224
  label: typing.Optional[builtins.str] = None,
13930
14225
  period: typing.Optional[_Duration_4839e8c3] = None,
13931
14226
  region: typing.Optional[builtins.str] = None,
14227
+ stack_account: typing.Optional[builtins.str] = None,
14228
+ stack_region: typing.Optional[builtins.str] = None,
13932
14229
  statistic: typing.Optional[builtins.str] = None,
13933
14230
  unit: typing.Optional[_Unit_61bc6f70] = None,
13934
14231
  ) -> _Metric_e396a4dc:
@@ -13942,6 +14239,8 @@ class _IApplicationTargetGroupMetricsProxy:
13942
14239
  :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
13943
14240
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
13944
14241
  :param region: Region which this metric comes from. Default: - Deployment region.
14242
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
14243
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
13945
14244
  :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
13946
14245
  :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
13947
14246
 
@@ -13954,6 +14253,8 @@ class _IApplicationTargetGroupMetricsProxy:
13954
14253
  label=label,
13955
14254
  period=period,
13956
14255
  region=region,
14256
+ stack_account=stack_account,
14257
+ stack_region=stack_region,
13957
14258
  statistic=statistic,
13958
14259
  unit=unit,
13959
14260
  )
@@ -13970,6 +14271,8 @@ class _IApplicationTargetGroupMetricsProxy:
13970
14271
  label: typing.Optional[builtins.str] = None,
13971
14272
  period: typing.Optional[_Duration_4839e8c3] = None,
13972
14273
  region: typing.Optional[builtins.str] = None,
14274
+ stack_account: typing.Optional[builtins.str] = None,
14275
+ stack_region: typing.Optional[builtins.str] = None,
13973
14276
  statistic: typing.Optional[builtins.str] = None,
13974
14277
  unit: typing.Optional[_Unit_61bc6f70] = None,
13975
14278
  ) -> _Metric_e396a4dc:
@@ -13983,6 +14286,8 @@ class _IApplicationTargetGroupMetricsProxy:
13983
14286
  :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
13984
14287
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
13985
14288
  :param region: Region which this metric comes from. Default: - Deployment region.
14289
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
14290
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
13986
14291
  :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
13987
14292
  :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
13988
14293
 
@@ -13995,6 +14300,8 @@ class _IApplicationTargetGroupMetricsProxy:
13995
14300
  label=label,
13996
14301
  period=period,
13997
14302
  region=region,
14303
+ stack_account=stack_account,
14304
+ stack_region=stack_region,
13998
14305
  statistic=statistic,
13999
14306
  unit=unit,
14000
14307
  )
@@ -14011,6 +14318,8 @@ class _IApplicationTargetGroupMetricsProxy:
14011
14318
  label: typing.Optional[builtins.str] = None,
14012
14319
  period: typing.Optional[_Duration_4839e8c3] = None,
14013
14320
  region: typing.Optional[builtins.str] = None,
14321
+ stack_account: typing.Optional[builtins.str] = None,
14322
+ stack_region: typing.Optional[builtins.str] = None,
14014
14323
  statistic: typing.Optional[builtins.str] = None,
14015
14324
  unit: typing.Optional[_Unit_61bc6f70] = None,
14016
14325
  ) -> _Metric_e396a4dc:
@@ -14022,6 +14331,8 @@ class _IApplicationTargetGroupMetricsProxy:
14022
14331
  :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
14023
14332
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
14024
14333
  :param region: Region which this metric comes from. Default: - Deployment region.
14334
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
14335
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
14025
14336
  :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
14026
14337
  :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
14027
14338
 
@@ -14034,6 +14345,8 @@ class _IApplicationTargetGroupMetricsProxy:
14034
14345
  label=label,
14035
14346
  period=period,
14036
14347
  region=region,
14348
+ stack_account=stack_account,
14349
+ stack_region=stack_region,
14037
14350
  statistic=statistic,
14038
14351
  unit=unit,
14039
14352
  )
@@ -14050,6 +14363,8 @@ class _IApplicationTargetGroupMetricsProxy:
14050
14363
  label: typing.Optional[builtins.str] = None,
14051
14364
  period: typing.Optional[_Duration_4839e8c3] = None,
14052
14365
  region: typing.Optional[builtins.str] = None,
14366
+ stack_account: typing.Optional[builtins.str] = None,
14367
+ stack_region: typing.Optional[builtins.str] = None,
14053
14368
  statistic: typing.Optional[builtins.str] = None,
14054
14369
  unit: typing.Optional[_Unit_61bc6f70] = None,
14055
14370
  ) -> _Metric_e396a4dc:
@@ -14061,6 +14376,8 @@ class _IApplicationTargetGroupMetricsProxy:
14061
14376
  :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
14062
14377
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
14063
14378
  :param region: Region which this metric comes from. Default: - Deployment region.
14379
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
14380
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
14064
14381
  :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
14065
14382
  :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
14066
14383
 
@@ -14073,6 +14390,8 @@ class _IApplicationTargetGroupMetricsProxy:
14073
14390
  label=label,
14074
14391
  period=period,
14075
14392
  region=region,
14393
+ stack_account=stack_account,
14394
+ stack_region=stack_region,
14076
14395
  statistic=statistic,
14077
14396
  unit=unit,
14078
14397
  )
@@ -14089,6 +14408,8 @@ class _IApplicationTargetGroupMetricsProxy:
14089
14408
  label: typing.Optional[builtins.str] = None,
14090
14409
  period: typing.Optional[_Duration_4839e8c3] = None,
14091
14410
  region: typing.Optional[builtins.str] = None,
14411
+ stack_account: typing.Optional[builtins.str] = None,
14412
+ stack_region: typing.Optional[builtins.str] = None,
14092
14413
  statistic: typing.Optional[builtins.str] = None,
14093
14414
  unit: typing.Optional[_Unit_61bc6f70] = None,
14094
14415
  ) -> _Metric_e396a4dc:
@@ -14102,6 +14423,8 @@ class _IApplicationTargetGroupMetricsProxy:
14102
14423
  :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
14103
14424
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
14104
14425
  :param region: Region which this metric comes from. Default: - Deployment region.
14426
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
14427
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
14105
14428
  :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
14106
14429
  :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
14107
14430
 
@@ -14114,6 +14437,8 @@ class _IApplicationTargetGroupMetricsProxy:
14114
14437
  label=label,
14115
14438
  period=period,
14116
14439
  region=region,
14440
+ stack_account=stack_account,
14441
+ stack_region=stack_region,
14117
14442
  statistic=statistic,
14118
14443
  unit=unit,
14119
14444
  )
@@ -14130,6 +14455,8 @@ class _IApplicationTargetGroupMetricsProxy:
14130
14455
  label: typing.Optional[builtins.str] = None,
14131
14456
  period: typing.Optional[_Duration_4839e8c3] = None,
14132
14457
  region: typing.Optional[builtins.str] = None,
14458
+ stack_account: typing.Optional[builtins.str] = None,
14459
+ stack_region: typing.Optional[builtins.str] = None,
14133
14460
  statistic: typing.Optional[builtins.str] = None,
14134
14461
  unit: typing.Optional[_Unit_61bc6f70] = None,
14135
14462
  ) -> _Metric_e396a4dc:
@@ -14141,6 +14468,8 @@ class _IApplicationTargetGroupMetricsProxy:
14141
14468
  :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
14142
14469
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
14143
14470
  :param region: Region which this metric comes from. Default: - Deployment region.
14471
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
14472
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
14144
14473
  :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
14145
14474
  :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
14146
14475
 
@@ -14153,6 +14482,8 @@ class _IApplicationTargetGroupMetricsProxy:
14153
14482
  label=label,
14154
14483
  period=period,
14155
14484
  region=region,
14485
+ stack_account=stack_account,
14486
+ stack_region=stack_region,
14156
14487
  statistic=statistic,
14157
14488
  unit=unit,
14158
14489
  )
@@ -14525,6 +14856,8 @@ class INetworkLoadBalancerMetrics(typing_extensions.Protocol):
14525
14856
  label: typing.Optional[builtins.str] = None,
14526
14857
  period: typing.Optional[_Duration_4839e8c3] = None,
14527
14858
  region: typing.Optional[builtins.str] = None,
14859
+ stack_account: typing.Optional[builtins.str] = None,
14860
+ stack_region: typing.Optional[builtins.str] = None,
14528
14861
  statistic: typing.Optional[builtins.str] = None,
14529
14862
  unit: typing.Optional[_Unit_61bc6f70] = None,
14530
14863
  ) -> _Metric_e396a4dc:
@@ -14540,6 +14873,8 @@ class INetworkLoadBalancerMetrics(typing_extensions.Protocol):
14540
14873
  :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
14541
14874
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
14542
14875
  :param region: Region which this metric comes from. Default: - Deployment region.
14876
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
14877
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
14543
14878
  :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
14544
14879
  :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
14545
14880
 
@@ -14557,6 +14892,8 @@ class INetworkLoadBalancerMetrics(typing_extensions.Protocol):
14557
14892
  label: typing.Optional[builtins.str] = None,
14558
14893
  period: typing.Optional[_Duration_4839e8c3] = None,
14559
14894
  region: typing.Optional[builtins.str] = None,
14895
+ stack_account: typing.Optional[builtins.str] = None,
14896
+ stack_region: typing.Optional[builtins.str] = None,
14560
14897
  statistic: typing.Optional[builtins.str] = None,
14561
14898
  unit: typing.Optional[_Unit_61bc6f70] = None,
14562
14899
  ) -> _Metric_e396a4dc:
@@ -14568,6 +14905,8 @@ class INetworkLoadBalancerMetrics(typing_extensions.Protocol):
14568
14905
  :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
14569
14906
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
14570
14907
  :param region: Region which this metric comes from. Default: - Deployment region.
14908
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
14909
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
14571
14910
  :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
14572
14911
  :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
14573
14912
 
@@ -14586,6 +14925,8 @@ class INetworkLoadBalancerMetrics(typing_extensions.Protocol):
14586
14925
  label: typing.Optional[builtins.str] = None,
14587
14926
  period: typing.Optional[_Duration_4839e8c3] = None,
14588
14927
  region: typing.Optional[builtins.str] = None,
14928
+ stack_account: typing.Optional[builtins.str] = None,
14929
+ stack_region: typing.Optional[builtins.str] = None,
14589
14930
  statistic: typing.Optional[builtins.str] = None,
14590
14931
  unit: typing.Optional[_Unit_61bc6f70] = None,
14591
14932
  ) -> _Metric_e396a4dc:
@@ -14598,6 +14939,8 @@ class INetworkLoadBalancerMetrics(typing_extensions.Protocol):
14598
14939
  :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
14599
14940
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
14600
14941
  :param region: Region which this metric comes from. Default: - Deployment region.
14942
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
14943
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
14601
14944
  :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
14602
14945
  :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
14603
14946
 
@@ -14615,6 +14958,8 @@ class INetworkLoadBalancerMetrics(typing_extensions.Protocol):
14615
14958
  label: typing.Optional[builtins.str] = None,
14616
14959
  period: typing.Optional[_Duration_4839e8c3] = None,
14617
14960
  region: typing.Optional[builtins.str] = None,
14961
+ stack_account: typing.Optional[builtins.str] = None,
14962
+ stack_region: typing.Optional[builtins.str] = None,
14618
14963
  statistic: typing.Optional[builtins.str] = None,
14619
14964
  unit: typing.Optional[_Unit_61bc6f70] = None,
14620
14965
  ) -> _Metric_e396a4dc:
@@ -14626,6 +14971,8 @@ class INetworkLoadBalancerMetrics(typing_extensions.Protocol):
14626
14971
  :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
14627
14972
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
14628
14973
  :param region: Region which this metric comes from. Default: - Deployment region.
14974
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
14975
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
14629
14976
  :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
14630
14977
  :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
14631
14978
 
@@ -14643,6 +14990,8 @@ class INetworkLoadBalancerMetrics(typing_extensions.Protocol):
14643
14990
  label: typing.Optional[builtins.str] = None,
14644
14991
  period: typing.Optional[_Duration_4839e8c3] = None,
14645
14992
  region: typing.Optional[builtins.str] = None,
14993
+ stack_account: typing.Optional[builtins.str] = None,
14994
+ stack_region: typing.Optional[builtins.str] = None,
14646
14995
  statistic: typing.Optional[builtins.str] = None,
14647
14996
  unit: typing.Optional[_Unit_61bc6f70] = None,
14648
14997
  ) -> _Metric_e396a4dc:
@@ -14654,6 +15003,8 @@ class INetworkLoadBalancerMetrics(typing_extensions.Protocol):
14654
15003
  :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
14655
15004
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
14656
15005
  :param region: Region which this metric comes from. Default: - Deployment region.
15006
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
15007
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
14657
15008
  :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
14658
15009
  :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
14659
15010
 
@@ -14671,6 +15022,8 @@ class INetworkLoadBalancerMetrics(typing_extensions.Protocol):
14671
15022
  label: typing.Optional[builtins.str] = None,
14672
15023
  period: typing.Optional[_Duration_4839e8c3] = None,
14673
15024
  region: typing.Optional[builtins.str] = None,
15025
+ stack_account: typing.Optional[builtins.str] = None,
15026
+ stack_region: typing.Optional[builtins.str] = None,
14674
15027
  statistic: typing.Optional[builtins.str] = None,
14675
15028
  unit: typing.Optional[_Unit_61bc6f70] = None,
14676
15029
  ) -> _Metric_e396a4dc:
@@ -14684,6 +15037,8 @@ class INetworkLoadBalancerMetrics(typing_extensions.Protocol):
14684
15037
  :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
14685
15038
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
14686
15039
  :param region: Region which this metric comes from. Default: - Deployment region.
15040
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
15041
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
14687
15042
  :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
14688
15043
  :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
14689
15044
 
@@ -14701,6 +15056,8 @@ class INetworkLoadBalancerMetrics(typing_extensions.Protocol):
14701
15056
  label: typing.Optional[builtins.str] = None,
14702
15057
  period: typing.Optional[_Duration_4839e8c3] = None,
14703
15058
  region: typing.Optional[builtins.str] = None,
15059
+ stack_account: typing.Optional[builtins.str] = None,
15060
+ stack_region: typing.Optional[builtins.str] = None,
14704
15061
  statistic: typing.Optional[builtins.str] = None,
14705
15062
  unit: typing.Optional[_Unit_61bc6f70] = None,
14706
15063
  ) -> _Metric_e396a4dc:
@@ -14712,6 +15069,8 @@ class INetworkLoadBalancerMetrics(typing_extensions.Protocol):
14712
15069
  :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
14713
15070
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
14714
15071
  :param region: Region which this metric comes from. Default: - Deployment region.
15072
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
15073
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
14715
15074
  :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
14716
15075
  :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
14717
15076
 
@@ -14729,6 +15088,8 @@ class INetworkLoadBalancerMetrics(typing_extensions.Protocol):
14729
15088
  label: typing.Optional[builtins.str] = None,
14730
15089
  period: typing.Optional[_Duration_4839e8c3] = None,
14731
15090
  region: typing.Optional[builtins.str] = None,
15091
+ stack_account: typing.Optional[builtins.str] = None,
15092
+ stack_region: typing.Optional[builtins.str] = None,
14732
15093
  statistic: typing.Optional[builtins.str] = None,
14733
15094
  unit: typing.Optional[_Unit_61bc6f70] = None,
14734
15095
  ) -> _Metric_e396a4dc:
@@ -14742,6 +15103,8 @@ class INetworkLoadBalancerMetrics(typing_extensions.Protocol):
14742
15103
  :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
14743
15104
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
14744
15105
  :param region: Region which this metric comes from. Default: - Deployment region.
15106
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
15107
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
14745
15108
  :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
14746
15109
  :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
14747
15110
 
@@ -14765,6 +15128,8 @@ class _INetworkLoadBalancerMetricsProxy:
14765
15128
  label: typing.Optional[builtins.str] = None,
14766
15129
  period: typing.Optional[_Duration_4839e8c3] = None,
14767
15130
  region: typing.Optional[builtins.str] = None,
15131
+ stack_account: typing.Optional[builtins.str] = None,
15132
+ stack_region: typing.Optional[builtins.str] = None,
14768
15133
  statistic: typing.Optional[builtins.str] = None,
14769
15134
  unit: typing.Optional[_Unit_61bc6f70] = None,
14770
15135
  ) -> _Metric_e396a4dc:
@@ -14780,6 +15145,8 @@ class _INetworkLoadBalancerMetricsProxy:
14780
15145
  :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
14781
15146
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
14782
15147
  :param region: Region which this metric comes from. Default: - Deployment region.
15148
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
15149
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
14783
15150
  :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
14784
15151
  :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
14785
15152
 
@@ -14792,6 +15159,8 @@ class _INetworkLoadBalancerMetricsProxy:
14792
15159
  label=label,
14793
15160
  period=period,
14794
15161
  region=region,
15162
+ stack_account=stack_account,
15163
+ stack_region=stack_region,
14795
15164
  statistic=statistic,
14796
15165
  unit=unit,
14797
15166
  )
@@ -14808,6 +15177,8 @@ class _INetworkLoadBalancerMetricsProxy:
14808
15177
  label: typing.Optional[builtins.str] = None,
14809
15178
  period: typing.Optional[_Duration_4839e8c3] = None,
14810
15179
  region: typing.Optional[builtins.str] = None,
15180
+ stack_account: typing.Optional[builtins.str] = None,
15181
+ stack_region: typing.Optional[builtins.str] = None,
14811
15182
  statistic: typing.Optional[builtins.str] = None,
14812
15183
  unit: typing.Optional[_Unit_61bc6f70] = None,
14813
15184
  ) -> _Metric_e396a4dc:
@@ -14819,6 +15190,8 @@ class _INetworkLoadBalancerMetricsProxy:
14819
15190
  :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
14820
15191
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
14821
15192
  :param region: Region which this metric comes from. Default: - Deployment region.
15193
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
15194
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
14822
15195
  :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
14823
15196
  :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
14824
15197
 
@@ -14831,6 +15204,8 @@ class _INetworkLoadBalancerMetricsProxy:
14831
15204
  label=label,
14832
15205
  period=period,
14833
15206
  region=region,
15207
+ stack_account=stack_account,
15208
+ stack_region=stack_region,
14834
15209
  statistic=statistic,
14835
15210
  unit=unit,
14836
15211
  )
@@ -14848,6 +15223,8 @@ class _INetworkLoadBalancerMetricsProxy:
14848
15223
  label: typing.Optional[builtins.str] = None,
14849
15224
  period: typing.Optional[_Duration_4839e8c3] = None,
14850
15225
  region: typing.Optional[builtins.str] = None,
15226
+ stack_account: typing.Optional[builtins.str] = None,
15227
+ stack_region: typing.Optional[builtins.str] = None,
14851
15228
  statistic: typing.Optional[builtins.str] = None,
14852
15229
  unit: typing.Optional[_Unit_61bc6f70] = None,
14853
15230
  ) -> _Metric_e396a4dc:
@@ -14860,6 +15237,8 @@ class _INetworkLoadBalancerMetricsProxy:
14860
15237
  :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
14861
15238
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
14862
15239
  :param region: Region which this metric comes from. Default: - Deployment region.
15240
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
15241
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
14863
15242
  :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
14864
15243
  :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
14865
15244
 
@@ -14875,6 +15254,8 @@ class _INetworkLoadBalancerMetricsProxy:
14875
15254
  label=label,
14876
15255
  period=period,
14877
15256
  region=region,
15257
+ stack_account=stack_account,
15258
+ stack_region=stack_region,
14878
15259
  statistic=statistic,
14879
15260
  unit=unit,
14880
15261
  )
@@ -14891,6 +15272,8 @@ class _INetworkLoadBalancerMetricsProxy:
14891
15272
  label: typing.Optional[builtins.str] = None,
14892
15273
  period: typing.Optional[_Duration_4839e8c3] = None,
14893
15274
  region: typing.Optional[builtins.str] = None,
15275
+ stack_account: typing.Optional[builtins.str] = None,
15276
+ stack_region: typing.Optional[builtins.str] = None,
14894
15277
  statistic: typing.Optional[builtins.str] = None,
14895
15278
  unit: typing.Optional[_Unit_61bc6f70] = None,
14896
15279
  ) -> _Metric_e396a4dc:
@@ -14902,6 +15285,8 @@ class _INetworkLoadBalancerMetricsProxy:
14902
15285
  :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
14903
15286
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
14904
15287
  :param region: Region which this metric comes from. Default: - Deployment region.
15288
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
15289
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
14905
15290
  :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
14906
15291
  :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
14907
15292
 
@@ -14914,6 +15299,8 @@ class _INetworkLoadBalancerMetricsProxy:
14914
15299
  label=label,
14915
15300
  period=period,
14916
15301
  region=region,
15302
+ stack_account=stack_account,
15303
+ stack_region=stack_region,
14917
15304
  statistic=statistic,
14918
15305
  unit=unit,
14919
15306
  )
@@ -14930,6 +15317,8 @@ class _INetworkLoadBalancerMetricsProxy:
14930
15317
  label: typing.Optional[builtins.str] = None,
14931
15318
  period: typing.Optional[_Duration_4839e8c3] = None,
14932
15319
  region: typing.Optional[builtins.str] = None,
15320
+ stack_account: typing.Optional[builtins.str] = None,
15321
+ stack_region: typing.Optional[builtins.str] = None,
14933
15322
  statistic: typing.Optional[builtins.str] = None,
14934
15323
  unit: typing.Optional[_Unit_61bc6f70] = None,
14935
15324
  ) -> _Metric_e396a4dc:
@@ -14941,6 +15330,8 @@ class _INetworkLoadBalancerMetricsProxy:
14941
15330
  :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
14942
15331
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
14943
15332
  :param region: Region which this metric comes from. Default: - Deployment region.
15333
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
15334
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
14944
15335
  :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
14945
15336
  :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
14946
15337
 
@@ -14953,6 +15344,8 @@ class _INetworkLoadBalancerMetricsProxy:
14953
15344
  label=label,
14954
15345
  period=period,
14955
15346
  region=region,
15347
+ stack_account=stack_account,
15348
+ stack_region=stack_region,
14956
15349
  statistic=statistic,
14957
15350
  unit=unit,
14958
15351
  )
@@ -14969,6 +15362,8 @@ class _INetworkLoadBalancerMetricsProxy:
14969
15362
  label: typing.Optional[builtins.str] = None,
14970
15363
  period: typing.Optional[_Duration_4839e8c3] = None,
14971
15364
  region: typing.Optional[builtins.str] = None,
15365
+ stack_account: typing.Optional[builtins.str] = None,
15366
+ stack_region: typing.Optional[builtins.str] = None,
14972
15367
  statistic: typing.Optional[builtins.str] = None,
14973
15368
  unit: typing.Optional[_Unit_61bc6f70] = None,
14974
15369
  ) -> _Metric_e396a4dc:
@@ -14982,6 +15377,8 @@ class _INetworkLoadBalancerMetricsProxy:
14982
15377
  :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
14983
15378
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
14984
15379
  :param region: Region which this metric comes from. Default: - Deployment region.
15380
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
15381
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
14985
15382
  :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
14986
15383
  :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
14987
15384
 
@@ -14994,6 +15391,8 @@ class _INetworkLoadBalancerMetricsProxy:
14994
15391
  label=label,
14995
15392
  period=period,
14996
15393
  region=region,
15394
+ stack_account=stack_account,
15395
+ stack_region=stack_region,
14997
15396
  statistic=statistic,
14998
15397
  unit=unit,
14999
15398
  )
@@ -15010,6 +15409,8 @@ class _INetworkLoadBalancerMetricsProxy:
15010
15409
  label: typing.Optional[builtins.str] = None,
15011
15410
  period: typing.Optional[_Duration_4839e8c3] = None,
15012
15411
  region: typing.Optional[builtins.str] = None,
15412
+ stack_account: typing.Optional[builtins.str] = None,
15413
+ stack_region: typing.Optional[builtins.str] = None,
15013
15414
  statistic: typing.Optional[builtins.str] = None,
15014
15415
  unit: typing.Optional[_Unit_61bc6f70] = None,
15015
15416
  ) -> _Metric_e396a4dc:
@@ -15021,6 +15422,8 @@ class _INetworkLoadBalancerMetricsProxy:
15021
15422
  :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
15022
15423
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
15023
15424
  :param region: Region which this metric comes from. Default: - Deployment region.
15425
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
15426
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
15024
15427
  :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
15025
15428
  :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
15026
15429
 
@@ -15033,6 +15436,8 @@ class _INetworkLoadBalancerMetricsProxy:
15033
15436
  label=label,
15034
15437
  period=period,
15035
15438
  region=region,
15439
+ stack_account=stack_account,
15440
+ stack_region=stack_region,
15036
15441
  statistic=statistic,
15037
15442
  unit=unit,
15038
15443
  )
@@ -15049,6 +15454,8 @@ class _INetworkLoadBalancerMetricsProxy:
15049
15454
  label: typing.Optional[builtins.str] = None,
15050
15455
  period: typing.Optional[_Duration_4839e8c3] = None,
15051
15456
  region: typing.Optional[builtins.str] = None,
15457
+ stack_account: typing.Optional[builtins.str] = None,
15458
+ stack_region: typing.Optional[builtins.str] = None,
15052
15459
  statistic: typing.Optional[builtins.str] = None,
15053
15460
  unit: typing.Optional[_Unit_61bc6f70] = None,
15054
15461
  ) -> _Metric_e396a4dc:
@@ -15062,6 +15469,8 @@ class _INetworkLoadBalancerMetricsProxy:
15062
15469
  :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
15063
15470
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
15064
15471
  :param region: Region which this metric comes from. Default: - Deployment region.
15472
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
15473
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
15065
15474
  :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
15066
15475
  :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
15067
15476
 
@@ -15074,6 +15483,8 @@ class _INetworkLoadBalancerMetricsProxy:
15074
15483
  label=label,
15075
15484
  period=period,
15076
15485
  region=region,
15486
+ stack_account=stack_account,
15487
+ stack_region=stack_region,
15077
15488
  statistic=statistic,
15078
15489
  unit=unit,
15079
15490
  )
@@ -15148,6 +15559,8 @@ class INetworkTargetGroupMetrics(typing_extensions.Protocol):
15148
15559
  label: typing.Optional[builtins.str] = None,
15149
15560
  period: typing.Optional[_Duration_4839e8c3] = None,
15150
15561
  region: typing.Optional[builtins.str] = None,
15562
+ stack_account: typing.Optional[builtins.str] = None,
15563
+ stack_region: typing.Optional[builtins.str] = None,
15151
15564
  statistic: typing.Optional[builtins.str] = None,
15152
15565
  unit: typing.Optional[_Unit_61bc6f70] = None,
15153
15566
  ) -> _Metric_e396a4dc:
@@ -15160,6 +15573,8 @@ class INetworkTargetGroupMetrics(typing_extensions.Protocol):
15160
15573
  :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
15161
15574
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
15162
15575
  :param region: Region which this metric comes from. Default: - Deployment region.
15576
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
15577
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
15163
15578
  :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
15164
15579
  :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
15165
15580
 
@@ -15177,6 +15592,8 @@ class INetworkTargetGroupMetrics(typing_extensions.Protocol):
15177
15592
  label: typing.Optional[builtins.str] = None,
15178
15593
  period: typing.Optional[_Duration_4839e8c3] = None,
15179
15594
  region: typing.Optional[builtins.str] = None,
15595
+ stack_account: typing.Optional[builtins.str] = None,
15596
+ stack_region: typing.Optional[builtins.str] = None,
15180
15597
  statistic: typing.Optional[builtins.str] = None,
15181
15598
  unit: typing.Optional[_Unit_61bc6f70] = None,
15182
15599
  ) -> _Metric_e396a4dc:
@@ -15188,6 +15605,8 @@ class INetworkTargetGroupMetrics(typing_extensions.Protocol):
15188
15605
  :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
15189
15606
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
15190
15607
  :param region: Region which this metric comes from. Default: - Deployment region.
15608
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
15609
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
15191
15610
  :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
15192
15611
  :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
15193
15612
 
@@ -15205,6 +15624,8 @@ class INetworkTargetGroupMetrics(typing_extensions.Protocol):
15205
15624
  label: typing.Optional[builtins.str] = None,
15206
15625
  period: typing.Optional[_Duration_4839e8c3] = None,
15207
15626
  region: typing.Optional[builtins.str] = None,
15627
+ stack_account: typing.Optional[builtins.str] = None,
15628
+ stack_region: typing.Optional[builtins.str] = None,
15208
15629
  statistic: typing.Optional[builtins.str] = None,
15209
15630
  unit: typing.Optional[_Unit_61bc6f70] = None,
15210
15631
  ) -> _Metric_e396a4dc:
@@ -15216,6 +15637,8 @@ class INetworkTargetGroupMetrics(typing_extensions.Protocol):
15216
15637
  :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
15217
15638
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
15218
15639
  :param region: Region which this metric comes from. Default: - Deployment region.
15640
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
15641
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
15219
15642
  :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
15220
15643
  :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
15221
15644
 
@@ -15240,6 +15663,8 @@ class _INetworkTargetGroupMetricsProxy:
15240
15663
  label: typing.Optional[builtins.str] = None,
15241
15664
  period: typing.Optional[_Duration_4839e8c3] = None,
15242
15665
  region: typing.Optional[builtins.str] = None,
15666
+ stack_account: typing.Optional[builtins.str] = None,
15667
+ stack_region: typing.Optional[builtins.str] = None,
15243
15668
  statistic: typing.Optional[builtins.str] = None,
15244
15669
  unit: typing.Optional[_Unit_61bc6f70] = None,
15245
15670
  ) -> _Metric_e396a4dc:
@@ -15252,6 +15677,8 @@ class _INetworkTargetGroupMetricsProxy:
15252
15677
  :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
15253
15678
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
15254
15679
  :param region: Region which this metric comes from. Default: - Deployment region.
15680
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
15681
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
15255
15682
  :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
15256
15683
  :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
15257
15684
 
@@ -15267,6 +15694,8 @@ class _INetworkTargetGroupMetricsProxy:
15267
15694
  label=label,
15268
15695
  period=period,
15269
15696
  region=region,
15697
+ stack_account=stack_account,
15698
+ stack_region=stack_region,
15270
15699
  statistic=statistic,
15271
15700
  unit=unit,
15272
15701
  )
@@ -15283,6 +15712,8 @@ class _INetworkTargetGroupMetricsProxy:
15283
15712
  label: typing.Optional[builtins.str] = None,
15284
15713
  period: typing.Optional[_Duration_4839e8c3] = None,
15285
15714
  region: typing.Optional[builtins.str] = None,
15715
+ stack_account: typing.Optional[builtins.str] = None,
15716
+ stack_region: typing.Optional[builtins.str] = None,
15286
15717
  statistic: typing.Optional[builtins.str] = None,
15287
15718
  unit: typing.Optional[_Unit_61bc6f70] = None,
15288
15719
  ) -> _Metric_e396a4dc:
@@ -15294,6 +15725,8 @@ class _INetworkTargetGroupMetricsProxy:
15294
15725
  :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
15295
15726
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
15296
15727
  :param region: Region which this metric comes from. Default: - Deployment region.
15728
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
15729
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
15297
15730
  :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
15298
15731
  :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
15299
15732
 
@@ -15306,6 +15739,8 @@ class _INetworkTargetGroupMetricsProxy:
15306
15739
  label=label,
15307
15740
  period=period,
15308
15741
  region=region,
15742
+ stack_account=stack_account,
15743
+ stack_region=stack_region,
15309
15744
  statistic=statistic,
15310
15745
  unit=unit,
15311
15746
  )
@@ -15322,6 +15757,8 @@ class _INetworkTargetGroupMetricsProxy:
15322
15757
  label: typing.Optional[builtins.str] = None,
15323
15758
  period: typing.Optional[_Duration_4839e8c3] = None,
15324
15759
  region: typing.Optional[builtins.str] = None,
15760
+ stack_account: typing.Optional[builtins.str] = None,
15761
+ stack_region: typing.Optional[builtins.str] = None,
15325
15762
  statistic: typing.Optional[builtins.str] = None,
15326
15763
  unit: typing.Optional[_Unit_61bc6f70] = None,
15327
15764
  ) -> _Metric_e396a4dc:
@@ -15333,6 +15770,8 @@ class _INetworkTargetGroupMetricsProxy:
15333
15770
  :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
15334
15771
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
15335
15772
  :param region: Region which this metric comes from. Default: - Deployment region.
15773
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
15774
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
15336
15775
  :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
15337
15776
  :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
15338
15777
 
@@ -15345,6 +15784,8 @@ class _INetworkTargetGroupMetricsProxy:
15345
15784
  label=label,
15346
15785
  period=period,
15347
15786
  region=region,
15787
+ stack_account=stack_account,
15788
+ stack_region=stack_region,
15348
15789
  statistic=statistic,
15349
15790
  unit=unit,
15350
15791
  )
@@ -16990,6 +17431,8 @@ class NetworkLoadBalancer(
16990
17431
  label: typing.Optional[builtins.str] = None,
16991
17432
  period: typing.Optional[_Duration_4839e8c3] = None,
16992
17433
  region: typing.Optional[builtins.str] = None,
17434
+ stack_account: typing.Optional[builtins.str] = None,
17435
+ stack_region: typing.Optional[builtins.str] = None,
16993
17436
  statistic: typing.Optional[builtins.str] = None,
16994
17437
  unit: typing.Optional[_Unit_61bc6f70] = None,
16995
17438
  ) -> _Metric_e396a4dc:
@@ -17002,6 +17445,8 @@ class NetworkLoadBalancer(
17002
17445
  :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
17003
17446
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
17004
17447
  :param region: Region which this metric comes from. Default: - Deployment region.
17448
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
17449
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
17005
17450
  :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
17006
17451
  :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
17007
17452
 
@@ -17021,6 +17466,8 @@ class NetworkLoadBalancer(
17021
17466
  label=label,
17022
17467
  period=period,
17023
17468
  region=region,
17469
+ stack_account=stack_account,
17470
+ stack_region=stack_region,
17024
17471
  statistic=statistic,
17025
17472
  unit=unit,
17026
17473
  )
@@ -17037,6 +17484,8 @@ class NetworkLoadBalancer(
17037
17484
  label: typing.Optional[builtins.str] = None,
17038
17485
  period: typing.Optional[_Duration_4839e8c3] = None,
17039
17486
  region: typing.Optional[builtins.str] = None,
17487
+ stack_account: typing.Optional[builtins.str] = None,
17488
+ stack_region: typing.Optional[builtins.str] = None,
17040
17489
  statistic: typing.Optional[builtins.str] = None,
17041
17490
  unit: typing.Optional[_Unit_61bc6f70] = None,
17042
17491
  ) -> _Metric_e396a4dc:
@@ -17052,6 +17501,8 @@ class NetworkLoadBalancer(
17052
17501
  :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
17053
17502
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
17054
17503
  :param region: Region which this metric comes from. Default: - Deployment region.
17504
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
17505
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
17055
17506
  :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
17056
17507
  :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
17057
17508
 
@@ -17068,6 +17519,8 @@ class NetworkLoadBalancer(
17068
17519
  label=label,
17069
17520
  period=period,
17070
17521
  region=region,
17522
+ stack_account=stack_account,
17523
+ stack_region=stack_region,
17071
17524
  statistic=statistic,
17072
17525
  unit=unit,
17073
17526
  )
@@ -17084,6 +17537,8 @@ class NetworkLoadBalancer(
17084
17537
  label: typing.Optional[builtins.str] = None,
17085
17538
  period: typing.Optional[_Duration_4839e8c3] = None,
17086
17539
  region: typing.Optional[builtins.str] = None,
17540
+ stack_account: typing.Optional[builtins.str] = None,
17541
+ stack_region: typing.Optional[builtins.str] = None,
17087
17542
  statistic: typing.Optional[builtins.str] = None,
17088
17543
  unit: typing.Optional[_Unit_61bc6f70] = None,
17089
17544
  ) -> _Metric_e396a4dc:
@@ -17095,6 +17550,8 @@ class NetworkLoadBalancer(
17095
17550
  :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
17096
17551
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
17097
17552
  :param region: Region which this metric comes from. Default: - Deployment region.
17553
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
17554
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
17098
17555
  :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
17099
17556
  :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
17100
17557
 
@@ -17111,6 +17568,8 @@ class NetworkLoadBalancer(
17111
17568
  label=label,
17112
17569
  period=period,
17113
17570
  region=region,
17571
+ stack_account=stack_account,
17572
+ stack_region=stack_region,
17114
17573
  statistic=statistic,
17115
17574
  unit=unit,
17116
17575
  )
@@ -17127,6 +17586,8 @@ class NetworkLoadBalancer(
17127
17586
  label: typing.Optional[builtins.str] = None,
17128
17587
  period: typing.Optional[_Duration_4839e8c3] = None,
17129
17588
  region: typing.Optional[builtins.str] = None,
17589
+ stack_account: typing.Optional[builtins.str] = None,
17590
+ stack_region: typing.Optional[builtins.str] = None,
17130
17591
  statistic: typing.Optional[builtins.str] = None,
17131
17592
  unit: typing.Optional[_Unit_61bc6f70] = None,
17132
17593
  ) -> _Metric_e396a4dc:
@@ -17138,6 +17599,8 @@ class NetworkLoadBalancer(
17138
17599
  :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
17139
17600
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
17140
17601
  :param region: Region which this metric comes from. Default: - Deployment region.
17602
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
17603
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
17141
17604
  :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
17142
17605
  :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
17143
17606
 
@@ -17154,6 +17617,8 @@ class NetworkLoadBalancer(
17154
17617
  label=label,
17155
17618
  period=period,
17156
17619
  region=region,
17620
+ stack_account=stack_account,
17621
+ stack_region=stack_region,
17157
17622
  statistic=statistic,
17158
17623
  unit=unit,
17159
17624
  )
@@ -17170,6 +17635,8 @@ class NetworkLoadBalancer(
17170
17635
  label: typing.Optional[builtins.str] = None,
17171
17636
  period: typing.Optional[_Duration_4839e8c3] = None,
17172
17637
  region: typing.Optional[builtins.str] = None,
17638
+ stack_account: typing.Optional[builtins.str] = None,
17639
+ stack_region: typing.Optional[builtins.str] = None,
17173
17640
  statistic: typing.Optional[builtins.str] = None,
17174
17641
  unit: typing.Optional[_Unit_61bc6f70] = None,
17175
17642
  ) -> _Metric_e396a4dc:
@@ -17181,6 +17648,8 @@ class NetworkLoadBalancer(
17181
17648
  :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
17182
17649
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
17183
17650
  :param region: Region which this metric comes from. Default: - Deployment region.
17651
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
17652
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
17184
17653
  :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
17185
17654
  :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
17186
17655
 
@@ -17197,6 +17666,8 @@ class NetworkLoadBalancer(
17197
17666
  label=label,
17198
17667
  period=period,
17199
17668
  region=region,
17669
+ stack_account=stack_account,
17670
+ stack_region=stack_region,
17200
17671
  statistic=statistic,
17201
17672
  unit=unit,
17202
17673
  )
@@ -17213,6 +17684,8 @@ class NetworkLoadBalancer(
17213
17684
  label: typing.Optional[builtins.str] = None,
17214
17685
  period: typing.Optional[_Duration_4839e8c3] = None,
17215
17686
  region: typing.Optional[builtins.str] = None,
17687
+ stack_account: typing.Optional[builtins.str] = None,
17688
+ stack_region: typing.Optional[builtins.str] = None,
17216
17689
  statistic: typing.Optional[builtins.str] = None,
17217
17690
  unit: typing.Optional[_Unit_61bc6f70] = None,
17218
17691
  ) -> _Metric_e396a4dc:
@@ -17226,6 +17699,8 @@ class NetworkLoadBalancer(
17226
17699
  :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
17227
17700
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
17228
17701
  :param region: Region which this metric comes from. Default: - Deployment region.
17702
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
17703
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
17229
17704
  :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
17230
17705
  :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
17231
17706
 
@@ -17242,6 +17717,8 @@ class NetworkLoadBalancer(
17242
17717
  label=label,
17243
17718
  period=period,
17244
17719
  region=region,
17720
+ stack_account=stack_account,
17721
+ stack_region=stack_region,
17245
17722
  statistic=statistic,
17246
17723
  unit=unit,
17247
17724
  )
@@ -17258,6 +17735,8 @@ class NetworkLoadBalancer(
17258
17735
  label: typing.Optional[builtins.str] = None,
17259
17736
  period: typing.Optional[_Duration_4839e8c3] = None,
17260
17737
  region: typing.Optional[builtins.str] = None,
17738
+ stack_account: typing.Optional[builtins.str] = None,
17739
+ stack_region: typing.Optional[builtins.str] = None,
17261
17740
  statistic: typing.Optional[builtins.str] = None,
17262
17741
  unit: typing.Optional[_Unit_61bc6f70] = None,
17263
17742
  ) -> _Metric_e396a4dc:
@@ -17269,6 +17748,8 @@ class NetworkLoadBalancer(
17269
17748
  :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
17270
17749
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
17271
17750
  :param region: Region which this metric comes from. Default: - Deployment region.
17751
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
17752
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
17272
17753
  :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
17273
17754
  :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
17274
17755
 
@@ -17285,6 +17766,8 @@ class NetworkLoadBalancer(
17285
17766
  label=label,
17286
17767
  period=period,
17287
17768
  region=region,
17769
+ stack_account=stack_account,
17770
+ stack_region=stack_region,
17288
17771
  statistic=statistic,
17289
17772
  unit=unit,
17290
17773
  )
@@ -17301,6 +17784,8 @@ class NetworkLoadBalancer(
17301
17784
  label: typing.Optional[builtins.str] = None,
17302
17785
  period: typing.Optional[_Duration_4839e8c3] = None,
17303
17786
  region: typing.Optional[builtins.str] = None,
17787
+ stack_account: typing.Optional[builtins.str] = None,
17788
+ stack_region: typing.Optional[builtins.str] = None,
17304
17789
  statistic: typing.Optional[builtins.str] = None,
17305
17790
  unit: typing.Optional[_Unit_61bc6f70] = None,
17306
17791
  ) -> _Metric_e396a4dc:
@@ -17314,6 +17799,8 @@ class NetworkLoadBalancer(
17314
17799
  :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
17315
17800
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
17316
17801
  :param region: Region which this metric comes from. Default: - Deployment region.
17802
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
17803
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
17317
17804
  :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
17318
17805
  :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
17319
17806
 
@@ -17330,6 +17817,8 @@ class NetworkLoadBalancer(
17330
17817
  label=label,
17331
17818
  period=period,
17332
17819
  region=region,
17820
+ stack_account=stack_account,
17821
+ stack_region=stack_region,
17333
17822
  statistic=statistic,
17334
17823
  unit=unit,
17335
17824
  )
@@ -19618,7 +20107,7 @@ class XffHeaderProcessingMode(enum.Enum):
19618
20107
  # The idle timeout value, in seconds
19619
20108
  idle_timeout=Duration.seconds(1000),
19620
20109
 
19621
- # Whether HTTP headers with header fields thatare not valid
20110
+ # Whether HTTP headers with header fields that are not valid
19622
20111
  # are removed by the load balancer (true), or routed to targets
19623
20112
  drop_invalid_header_fields=True,
19624
20113
 
@@ -22597,6 +23086,8 @@ class NetworkTargetGroup(
22597
23086
  label: typing.Optional[builtins.str] = None,
22598
23087
  period: typing.Optional[_Duration_4839e8c3] = None,
22599
23088
  region: typing.Optional[builtins.str] = None,
23089
+ stack_account: typing.Optional[builtins.str] = None,
23090
+ stack_region: typing.Optional[builtins.str] = None,
22600
23091
  statistic: typing.Optional[builtins.str] = None,
22601
23092
  unit: typing.Optional[_Unit_61bc6f70] = None,
22602
23093
  ) -> _Metric_e396a4dc:
@@ -22608,6 +23099,8 @@ class NetworkTargetGroup(
22608
23099
  :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
22609
23100
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
22610
23101
  :param region: Region which this metric comes from. Default: - Deployment region.
23102
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
23103
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
22611
23104
  :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
22612
23105
  :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
22613
23106
 
@@ -22624,6 +23117,8 @@ class NetworkTargetGroup(
22624
23117
  label=label,
22625
23118
  period=period,
22626
23119
  region=region,
23120
+ stack_account=stack_account,
23121
+ stack_region=stack_region,
22627
23122
  statistic=statistic,
22628
23123
  unit=unit,
22629
23124
  )
@@ -22640,6 +23135,8 @@ class NetworkTargetGroup(
22640
23135
  label: typing.Optional[builtins.str] = None,
22641
23136
  period: typing.Optional[_Duration_4839e8c3] = None,
22642
23137
  region: typing.Optional[builtins.str] = None,
23138
+ stack_account: typing.Optional[builtins.str] = None,
23139
+ stack_region: typing.Optional[builtins.str] = None,
22643
23140
  statistic: typing.Optional[builtins.str] = None,
22644
23141
  unit: typing.Optional[_Unit_61bc6f70] = None,
22645
23142
  ) -> _Metric_e396a4dc:
@@ -22651,6 +23148,8 @@ class NetworkTargetGroup(
22651
23148
  :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
22652
23149
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
22653
23150
  :param region: Region which this metric comes from. Default: - Deployment region.
23151
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
23152
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
22654
23153
  :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
22655
23154
  :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
22656
23155
 
@@ -22667,6 +23166,8 @@ class NetworkTargetGroup(
22667
23166
  label=label,
22668
23167
  period=period,
22669
23168
  region=region,
23169
+ stack_account=stack_account,
23170
+ stack_region=stack_region,
22670
23171
  statistic=statistic,
22671
23172
  unit=unit,
22672
23173
  )
@@ -23387,6 +23888,8 @@ class ApplicationLoadBalancer(
23387
23888
  label: typing.Optional[builtins.str] = None,
23388
23889
  period: typing.Optional[_Duration_4839e8c3] = None,
23389
23890
  region: typing.Optional[builtins.str] = None,
23891
+ stack_account: typing.Optional[builtins.str] = None,
23892
+ stack_region: typing.Optional[builtins.str] = None,
23390
23893
  statistic: typing.Optional[builtins.str] = None,
23391
23894
  unit: typing.Optional[_Unit_61bc6f70] = None,
23392
23895
  ) -> _Metric_e396a4dc:
@@ -23399,6 +23902,8 @@ class ApplicationLoadBalancer(
23399
23902
  :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
23400
23903
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
23401
23904
  :param region: Region which this metric comes from. Default: - Deployment region.
23905
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
23906
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
23402
23907
  :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
23403
23908
  :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
23404
23909
 
@@ -23418,6 +23923,8 @@ class ApplicationLoadBalancer(
23418
23923
  label=label,
23419
23924
  period=period,
23420
23925
  region=region,
23926
+ stack_account=stack_account,
23927
+ stack_region=stack_region,
23421
23928
  statistic=statistic,
23422
23929
  unit=unit,
23423
23930
  )
@@ -23434,6 +23941,8 @@ class ApplicationLoadBalancer(
23434
23941
  label: typing.Optional[builtins.str] = None,
23435
23942
  period: typing.Optional[_Duration_4839e8c3] = None,
23436
23943
  region: typing.Optional[builtins.str] = None,
23944
+ stack_account: typing.Optional[builtins.str] = None,
23945
+ stack_region: typing.Optional[builtins.str] = None,
23437
23946
  statistic: typing.Optional[builtins.str] = None,
23438
23947
  unit: typing.Optional[_Unit_61bc6f70] = None,
23439
23948
  ) -> _Metric_e396a4dc:
@@ -23445,6 +23954,8 @@ class ApplicationLoadBalancer(
23445
23954
  :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
23446
23955
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
23447
23956
  :param region: Region which this metric comes from. Default: - Deployment region.
23957
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
23958
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
23448
23959
  :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
23449
23960
  :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
23450
23961
 
@@ -23461,6 +23972,8 @@ class ApplicationLoadBalancer(
23461
23972
  label=label,
23462
23973
  period=period,
23463
23974
  region=region,
23975
+ stack_account=stack_account,
23976
+ stack_region=stack_region,
23464
23977
  statistic=statistic,
23465
23978
  unit=unit,
23466
23979
  )
@@ -23477,6 +23990,8 @@ class ApplicationLoadBalancer(
23477
23990
  label: typing.Optional[builtins.str] = None,
23478
23991
  period: typing.Optional[_Duration_4839e8c3] = None,
23479
23992
  region: typing.Optional[builtins.str] = None,
23993
+ stack_account: typing.Optional[builtins.str] = None,
23994
+ stack_region: typing.Optional[builtins.str] = None,
23480
23995
  statistic: typing.Optional[builtins.str] = None,
23481
23996
  unit: typing.Optional[_Unit_61bc6f70] = None,
23482
23997
  ) -> _Metric_e396a4dc:
@@ -23491,6 +24006,8 @@ class ApplicationLoadBalancer(
23491
24006
  :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
23492
24007
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
23493
24008
  :param region: Region which this metric comes from. Default: - Deployment region.
24009
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
24010
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
23494
24011
  :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
23495
24012
  :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
23496
24013
 
@@ -23507,6 +24024,8 @@ class ApplicationLoadBalancer(
23507
24024
  label=label,
23508
24025
  period=period,
23509
24026
  region=region,
24027
+ stack_account=stack_account,
24028
+ stack_region=stack_region,
23510
24029
  statistic=statistic,
23511
24030
  unit=unit,
23512
24031
  )
@@ -23523,6 +24042,8 @@ class ApplicationLoadBalancer(
23523
24042
  label: typing.Optional[builtins.str] = None,
23524
24043
  period: typing.Optional[_Duration_4839e8c3] = None,
23525
24044
  region: typing.Optional[builtins.str] = None,
24045
+ stack_account: typing.Optional[builtins.str] = None,
24046
+ stack_region: typing.Optional[builtins.str] = None,
23526
24047
  statistic: typing.Optional[builtins.str] = None,
23527
24048
  unit: typing.Optional[_Unit_61bc6f70] = None,
23528
24049
  ) -> _Metric_e396a4dc:
@@ -23534,6 +24055,8 @@ class ApplicationLoadBalancer(
23534
24055
  :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
23535
24056
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
23536
24057
  :param region: Region which this metric comes from. Default: - Deployment region.
24058
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
24059
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
23537
24060
  :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
23538
24061
  :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
23539
24062
 
@@ -23550,6 +24073,8 @@ class ApplicationLoadBalancer(
23550
24073
  label=label,
23551
24074
  period=period,
23552
24075
  region=region,
24076
+ stack_account=stack_account,
24077
+ stack_region=stack_region,
23553
24078
  statistic=statistic,
23554
24079
  unit=unit,
23555
24080
  )
@@ -23566,6 +24091,8 @@ class ApplicationLoadBalancer(
23566
24091
  label: typing.Optional[builtins.str] = None,
23567
24092
  period: typing.Optional[_Duration_4839e8c3] = None,
23568
24093
  region: typing.Optional[builtins.str] = None,
24094
+ stack_account: typing.Optional[builtins.str] = None,
24095
+ stack_region: typing.Optional[builtins.str] = None,
23569
24096
  statistic: typing.Optional[builtins.str] = None,
23570
24097
  unit: typing.Optional[_Unit_61bc6f70] = None,
23571
24098
  ) -> _Metric_e396a4dc:
@@ -23581,6 +24108,8 @@ class ApplicationLoadBalancer(
23581
24108
  :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
23582
24109
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
23583
24110
  :param region: Region which this metric comes from. Default: - Deployment region.
24111
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
24112
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
23584
24113
  :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
23585
24114
  :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
23586
24115
 
@@ -23597,6 +24126,8 @@ class ApplicationLoadBalancer(
23597
24126
  label=label,
23598
24127
  period=period,
23599
24128
  region=region,
24129
+ stack_account=stack_account,
24130
+ stack_region=stack_region,
23600
24131
  statistic=statistic,
23601
24132
  unit=unit,
23602
24133
  )
@@ -23613,6 +24144,8 @@ class ApplicationLoadBalancer(
23613
24144
  label: typing.Optional[builtins.str] = None,
23614
24145
  period: typing.Optional[_Duration_4839e8c3] = None,
23615
24146
  region: typing.Optional[builtins.str] = None,
24147
+ stack_account: typing.Optional[builtins.str] = None,
24148
+ stack_region: typing.Optional[builtins.str] = None,
23616
24149
  statistic: typing.Optional[builtins.str] = None,
23617
24150
  unit: typing.Optional[_Unit_61bc6f70] = None,
23618
24151
  ) -> _Metric_e396a4dc:
@@ -23624,6 +24157,8 @@ class ApplicationLoadBalancer(
23624
24157
  :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
23625
24158
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
23626
24159
  :param region: Region which this metric comes from. Default: - Deployment region.
24160
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
24161
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
23627
24162
  :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
23628
24163
  :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
23629
24164
 
@@ -23640,6 +24175,8 @@ class ApplicationLoadBalancer(
23640
24175
  label=label,
23641
24176
  period=period,
23642
24177
  region=region,
24178
+ stack_account=stack_account,
24179
+ stack_region=stack_region,
23643
24180
  statistic=statistic,
23644
24181
  unit=unit,
23645
24182
  )
@@ -23656,6 +24193,8 @@ class ApplicationLoadBalancer(
23656
24193
  label: typing.Optional[builtins.str] = None,
23657
24194
  period: typing.Optional[_Duration_4839e8c3] = None,
23658
24195
  region: typing.Optional[builtins.str] = None,
24196
+ stack_account: typing.Optional[builtins.str] = None,
24197
+ stack_region: typing.Optional[builtins.str] = None,
23659
24198
  statistic: typing.Optional[builtins.str] = None,
23660
24199
  unit: typing.Optional[_Unit_61bc6f70] = None,
23661
24200
  ) -> _Metric_e396a4dc:
@@ -23669,6 +24208,8 @@ class ApplicationLoadBalancer(
23669
24208
  :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
23670
24209
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
23671
24210
  :param region: Region which this metric comes from. Default: - Deployment region.
24211
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
24212
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
23672
24213
  :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
23673
24214
  :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
23674
24215
 
@@ -23685,6 +24226,8 @@ class ApplicationLoadBalancer(
23685
24226
  label=label,
23686
24227
  period=period,
23687
24228
  region=region,
24229
+ stack_account=stack_account,
24230
+ stack_region=stack_region,
23688
24231
  statistic=statistic,
23689
24232
  unit=unit,
23690
24233
  )
@@ -23701,6 +24244,8 @@ class ApplicationLoadBalancer(
23701
24244
  label: typing.Optional[builtins.str] = None,
23702
24245
  period: typing.Optional[_Duration_4839e8c3] = None,
23703
24246
  region: typing.Optional[builtins.str] = None,
24247
+ stack_account: typing.Optional[builtins.str] = None,
24248
+ stack_region: typing.Optional[builtins.str] = None,
23704
24249
  statistic: typing.Optional[builtins.str] = None,
23705
24250
  unit: typing.Optional[_Unit_61bc6f70] = None,
23706
24251
  ) -> _Metric_e396a4dc:
@@ -23715,6 +24260,8 @@ class ApplicationLoadBalancer(
23715
24260
  :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
23716
24261
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
23717
24262
  :param region: Region which this metric comes from. Default: - Deployment region.
24263
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
24264
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
23718
24265
  :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
23719
24266
  :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
23720
24267
 
@@ -23731,6 +24278,8 @@ class ApplicationLoadBalancer(
23731
24278
  label=label,
23732
24279
  period=period,
23733
24280
  region=region,
24281
+ stack_account=stack_account,
24282
+ stack_region=stack_region,
23734
24283
  statistic=statistic,
23735
24284
  unit=unit,
23736
24285
  )
@@ -23748,6 +24297,8 @@ class ApplicationLoadBalancer(
23748
24297
  label: typing.Optional[builtins.str] = None,
23749
24298
  period: typing.Optional[_Duration_4839e8c3] = None,
23750
24299
  region: typing.Optional[builtins.str] = None,
24300
+ stack_account: typing.Optional[builtins.str] = None,
24301
+ stack_region: typing.Optional[builtins.str] = None,
23751
24302
  statistic: typing.Optional[builtins.str] = None,
23752
24303
  unit: typing.Optional[_Unit_61bc6f70] = None,
23753
24304
  ) -> _Metric_e396a4dc:
@@ -23762,6 +24313,8 @@ class ApplicationLoadBalancer(
23762
24313
  :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
23763
24314
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
23764
24315
  :param region: Region which this metric comes from. Default: - Deployment region.
24316
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
24317
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
23765
24318
  :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
23766
24319
  :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
23767
24320
 
@@ -23781,6 +24334,8 @@ class ApplicationLoadBalancer(
23781
24334
  label=label,
23782
24335
  period=period,
23783
24336
  region=region,
24337
+ stack_account=stack_account,
24338
+ stack_region=stack_region,
23784
24339
  statistic=statistic,
23785
24340
  unit=unit,
23786
24341
  )
@@ -23798,6 +24353,8 @@ class ApplicationLoadBalancer(
23798
24353
  label: typing.Optional[builtins.str] = None,
23799
24354
  period: typing.Optional[_Duration_4839e8c3] = None,
23800
24355
  region: typing.Optional[builtins.str] = None,
24356
+ stack_account: typing.Optional[builtins.str] = None,
24357
+ stack_region: typing.Optional[builtins.str] = None,
23801
24358
  statistic: typing.Optional[builtins.str] = None,
23802
24359
  unit: typing.Optional[_Unit_61bc6f70] = None,
23803
24360
  ) -> _Metric_e396a4dc:
@@ -23812,6 +24369,8 @@ class ApplicationLoadBalancer(
23812
24369
  :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
23813
24370
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
23814
24371
  :param region: Region which this metric comes from. Default: - Deployment region.
24372
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
24373
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
23815
24374
  :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
23816
24375
  :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
23817
24376
 
@@ -23831,6 +24390,8 @@ class ApplicationLoadBalancer(
23831
24390
  label=label,
23832
24391
  period=period,
23833
24392
  region=region,
24393
+ stack_account=stack_account,
24394
+ stack_region=stack_region,
23834
24395
  statistic=statistic,
23835
24396
  unit=unit,
23836
24397
  )
@@ -23847,6 +24408,8 @@ class ApplicationLoadBalancer(
23847
24408
  label: typing.Optional[builtins.str] = None,
23848
24409
  period: typing.Optional[_Duration_4839e8c3] = None,
23849
24410
  region: typing.Optional[builtins.str] = None,
24411
+ stack_account: typing.Optional[builtins.str] = None,
24412
+ stack_region: typing.Optional[builtins.str] = None,
23850
24413
  statistic: typing.Optional[builtins.str] = None,
23851
24414
  unit: typing.Optional[_Unit_61bc6f70] = None,
23852
24415
  ) -> _Metric_e396a4dc:
@@ -23858,6 +24421,8 @@ class ApplicationLoadBalancer(
23858
24421
  :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
23859
24422
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
23860
24423
  :param region: Region which this metric comes from. Default: - Deployment region.
24424
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
24425
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
23861
24426
  :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
23862
24427
  :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
23863
24428
 
@@ -23874,6 +24439,8 @@ class ApplicationLoadBalancer(
23874
24439
  label=label,
23875
24440
  period=period,
23876
24441
  region=region,
24442
+ stack_account=stack_account,
24443
+ stack_region=stack_region,
23877
24444
  statistic=statistic,
23878
24445
  unit=unit,
23879
24446
  )
@@ -23890,6 +24457,8 @@ class ApplicationLoadBalancer(
23890
24457
  label: typing.Optional[builtins.str] = None,
23891
24458
  period: typing.Optional[_Duration_4839e8c3] = None,
23892
24459
  region: typing.Optional[builtins.str] = None,
24460
+ stack_account: typing.Optional[builtins.str] = None,
24461
+ stack_region: typing.Optional[builtins.str] = None,
23893
24462
  statistic: typing.Optional[builtins.str] = None,
23894
24463
  unit: typing.Optional[_Unit_61bc6f70] = None,
23895
24464
  ) -> _Metric_e396a4dc:
@@ -23901,6 +24470,8 @@ class ApplicationLoadBalancer(
23901
24470
  :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
23902
24471
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
23903
24472
  :param region: Region which this metric comes from. Default: - Deployment region.
24473
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
24474
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
23904
24475
  :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
23905
24476
  :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
23906
24477
 
@@ -23917,6 +24488,8 @@ class ApplicationLoadBalancer(
23917
24488
  label=label,
23918
24489
  period=period,
23919
24490
  region=region,
24491
+ stack_account=stack_account,
24492
+ stack_region=stack_region,
23920
24493
  statistic=statistic,
23921
24494
  unit=unit,
23922
24495
  )
@@ -23933,6 +24506,8 @@ class ApplicationLoadBalancer(
23933
24506
  label: typing.Optional[builtins.str] = None,
23934
24507
  period: typing.Optional[_Duration_4839e8c3] = None,
23935
24508
  region: typing.Optional[builtins.str] = None,
24509
+ stack_account: typing.Optional[builtins.str] = None,
24510
+ stack_region: typing.Optional[builtins.str] = None,
23936
24511
  statistic: typing.Optional[builtins.str] = None,
23937
24512
  unit: typing.Optional[_Unit_61bc6f70] = None,
23938
24513
  ) -> _Metric_e396a4dc:
@@ -23944,6 +24519,8 @@ class ApplicationLoadBalancer(
23944
24519
  :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
23945
24520
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
23946
24521
  :param region: Region which this metric comes from. Default: - Deployment region.
24522
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
24523
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
23947
24524
  :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
23948
24525
  :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
23949
24526
 
@@ -23960,6 +24537,8 @@ class ApplicationLoadBalancer(
23960
24537
  label=label,
23961
24538
  period=period,
23962
24539
  region=region,
24540
+ stack_account=stack_account,
24541
+ stack_region=stack_region,
23963
24542
  statistic=statistic,
23964
24543
  unit=unit,
23965
24544
  )
@@ -23976,6 +24555,8 @@ class ApplicationLoadBalancer(
23976
24555
  label: typing.Optional[builtins.str] = None,
23977
24556
  period: typing.Optional[_Duration_4839e8c3] = None,
23978
24557
  region: typing.Optional[builtins.str] = None,
24558
+ stack_account: typing.Optional[builtins.str] = None,
24559
+ stack_region: typing.Optional[builtins.str] = None,
23979
24560
  statistic: typing.Optional[builtins.str] = None,
23980
24561
  unit: typing.Optional[_Unit_61bc6f70] = None,
23981
24562
  ) -> _Metric_e396a4dc:
@@ -23987,6 +24568,8 @@ class ApplicationLoadBalancer(
23987
24568
  :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
23988
24569
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
23989
24570
  :param region: Region which this metric comes from. Default: - Deployment region.
24571
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
24572
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
23990
24573
  :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
23991
24574
  :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
23992
24575
 
@@ -24003,6 +24586,8 @@ class ApplicationLoadBalancer(
24003
24586
  label=label,
24004
24587
  period=period,
24005
24588
  region=region,
24589
+ stack_account=stack_account,
24590
+ stack_region=stack_region,
24006
24591
  statistic=statistic,
24007
24592
  unit=unit,
24008
24593
  )
@@ -24019,6 +24604,8 @@ class ApplicationLoadBalancer(
24019
24604
  label: typing.Optional[builtins.str] = None,
24020
24605
  period: typing.Optional[_Duration_4839e8c3] = None,
24021
24606
  region: typing.Optional[builtins.str] = None,
24607
+ stack_account: typing.Optional[builtins.str] = None,
24608
+ stack_region: typing.Optional[builtins.str] = None,
24022
24609
  statistic: typing.Optional[builtins.str] = None,
24023
24610
  unit: typing.Optional[_Unit_61bc6f70] = None,
24024
24611
  ) -> _Metric_e396a4dc:
@@ -24030,6 +24617,8 @@ class ApplicationLoadBalancer(
24030
24617
  :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
24031
24618
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
24032
24619
  :param region: Region which this metric comes from. Default: - Deployment region.
24620
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
24621
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
24033
24622
  :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
24034
24623
  :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
24035
24624
 
@@ -24046,6 +24635,8 @@ class ApplicationLoadBalancer(
24046
24635
  label=label,
24047
24636
  period=period,
24048
24637
  region=region,
24638
+ stack_account=stack_account,
24639
+ stack_region=stack_region,
24049
24640
  statistic=statistic,
24050
24641
  unit=unit,
24051
24642
  )
@@ -24062,6 +24653,8 @@ class ApplicationLoadBalancer(
24062
24653
  label: typing.Optional[builtins.str] = None,
24063
24654
  period: typing.Optional[_Duration_4839e8c3] = None,
24064
24655
  region: typing.Optional[builtins.str] = None,
24656
+ stack_account: typing.Optional[builtins.str] = None,
24657
+ stack_region: typing.Optional[builtins.str] = None,
24065
24658
  statistic: typing.Optional[builtins.str] = None,
24066
24659
  unit: typing.Optional[_Unit_61bc6f70] = None,
24067
24660
  ) -> _Metric_e396a4dc:
@@ -24073,6 +24666,8 @@ class ApplicationLoadBalancer(
24073
24666
  :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
24074
24667
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
24075
24668
  :param region: Region which this metric comes from. Default: - Deployment region.
24669
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
24670
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
24076
24671
  :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
24077
24672
  :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
24078
24673
 
@@ -24089,6 +24684,8 @@ class ApplicationLoadBalancer(
24089
24684
  label=label,
24090
24685
  period=period,
24091
24686
  region=region,
24687
+ stack_account=stack_account,
24688
+ stack_region=stack_region,
24092
24689
  statistic=statistic,
24093
24690
  unit=unit,
24094
24691
  )
@@ -24105,6 +24702,8 @@ class ApplicationLoadBalancer(
24105
24702
  label: typing.Optional[builtins.str] = None,
24106
24703
  period: typing.Optional[_Duration_4839e8c3] = None,
24107
24704
  region: typing.Optional[builtins.str] = None,
24705
+ stack_account: typing.Optional[builtins.str] = None,
24706
+ stack_region: typing.Optional[builtins.str] = None,
24108
24707
  statistic: typing.Optional[builtins.str] = None,
24109
24708
  unit: typing.Optional[_Unit_61bc6f70] = None,
24110
24709
  ) -> _Metric_e396a4dc:
@@ -24116,6 +24715,8 @@ class ApplicationLoadBalancer(
24116
24715
  :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
24117
24716
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
24118
24717
  :param region: Region which this metric comes from. Default: - Deployment region.
24718
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
24719
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
24119
24720
  :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
24120
24721
  :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
24121
24722
 
@@ -24132,6 +24733,8 @@ class ApplicationLoadBalancer(
24132
24733
  label=label,
24133
24734
  period=period,
24134
24735
  region=region,
24736
+ stack_account=stack_account,
24737
+ stack_region=stack_region,
24135
24738
  statistic=statistic,
24136
24739
  unit=unit,
24137
24740
  )
@@ -24148,6 +24751,8 @@ class ApplicationLoadBalancer(
24148
24751
  label: typing.Optional[builtins.str] = None,
24149
24752
  period: typing.Optional[_Duration_4839e8c3] = None,
24150
24753
  region: typing.Optional[builtins.str] = None,
24754
+ stack_account: typing.Optional[builtins.str] = None,
24755
+ stack_region: typing.Optional[builtins.str] = None,
24151
24756
  statistic: typing.Optional[builtins.str] = None,
24152
24757
  unit: typing.Optional[_Unit_61bc6f70] = None,
24153
24758
  ) -> _Metric_e396a4dc:
@@ -24159,6 +24764,8 @@ class ApplicationLoadBalancer(
24159
24764
  :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
24160
24765
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
24161
24766
  :param region: Region which this metric comes from. Default: - Deployment region.
24767
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
24768
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
24162
24769
  :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
24163
24770
  :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
24164
24771
 
@@ -24175,6 +24782,8 @@ class ApplicationLoadBalancer(
24175
24782
  label=label,
24176
24783
  period=period,
24177
24784
  region=region,
24785
+ stack_account=stack_account,
24786
+ stack_region=stack_region,
24178
24787
  statistic=statistic,
24179
24788
  unit=unit,
24180
24789
  )
@@ -24191,6 +24800,8 @@ class ApplicationLoadBalancer(
24191
24800
  label: typing.Optional[builtins.str] = None,
24192
24801
  period: typing.Optional[_Duration_4839e8c3] = None,
24193
24802
  region: typing.Optional[builtins.str] = None,
24803
+ stack_account: typing.Optional[builtins.str] = None,
24804
+ stack_region: typing.Optional[builtins.str] = None,
24194
24805
  statistic: typing.Optional[builtins.str] = None,
24195
24806
  unit: typing.Optional[_Unit_61bc6f70] = None,
24196
24807
  ) -> _Metric_e396a4dc:
@@ -24204,6 +24815,8 @@ class ApplicationLoadBalancer(
24204
24815
  :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
24205
24816
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
24206
24817
  :param region: Region which this metric comes from. Default: - Deployment region.
24818
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
24819
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
24207
24820
  :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
24208
24821
  :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
24209
24822
 
@@ -24220,6 +24833,8 @@ class ApplicationLoadBalancer(
24220
24833
  label=label,
24221
24834
  period=period,
24222
24835
  region=region,
24836
+ stack_account=stack_account,
24837
+ stack_region=stack_region,
24223
24838
  statistic=statistic,
24224
24839
  unit=unit,
24225
24840
  )
@@ -24236,6 +24851,8 @@ class ApplicationLoadBalancer(
24236
24851
  label: typing.Optional[builtins.str] = None,
24237
24852
  period: typing.Optional[_Duration_4839e8c3] = None,
24238
24853
  region: typing.Optional[builtins.str] = None,
24854
+ stack_account: typing.Optional[builtins.str] = None,
24855
+ stack_region: typing.Optional[builtins.str] = None,
24239
24856
  statistic: typing.Optional[builtins.str] = None,
24240
24857
  unit: typing.Optional[_Unit_61bc6f70] = None,
24241
24858
  ) -> _Metric_e396a4dc:
@@ -24247,6 +24864,8 @@ class ApplicationLoadBalancer(
24247
24864
  :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
24248
24865
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
24249
24866
  :param region: Region which this metric comes from. Default: - Deployment region.
24867
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
24868
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
24250
24869
  :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
24251
24870
  :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
24252
24871
 
@@ -24263,6 +24882,8 @@ class ApplicationLoadBalancer(
24263
24882
  label=label,
24264
24883
  period=period,
24265
24884
  region=region,
24885
+ stack_account=stack_account,
24886
+ stack_region=stack_region,
24266
24887
  statistic=statistic,
24267
24888
  unit=unit,
24268
24889
  )
@@ -24279,6 +24900,8 @@ class ApplicationLoadBalancer(
24279
24900
  label: typing.Optional[builtins.str] = None,
24280
24901
  period: typing.Optional[_Duration_4839e8c3] = None,
24281
24902
  region: typing.Optional[builtins.str] = None,
24903
+ stack_account: typing.Optional[builtins.str] = None,
24904
+ stack_region: typing.Optional[builtins.str] = None,
24282
24905
  statistic: typing.Optional[builtins.str] = None,
24283
24906
  unit: typing.Optional[_Unit_61bc6f70] = None,
24284
24907
  ) -> _Metric_e396a4dc:
@@ -24290,6 +24913,8 @@ class ApplicationLoadBalancer(
24290
24913
  :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
24291
24914
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
24292
24915
  :param region: Region which this metric comes from. Default: - Deployment region.
24916
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
24917
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
24293
24918
  :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
24294
24919
  :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
24295
24920
 
@@ -24306,6 +24931,8 @@ class ApplicationLoadBalancer(
24306
24931
  label=label,
24307
24932
  period=period,
24308
24933
  region=region,
24934
+ stack_account=stack_account,
24935
+ stack_region=stack_region,
24309
24936
  statistic=statistic,
24310
24937
  unit=unit,
24311
24938
  )
@@ -24322,6 +24949,8 @@ class ApplicationLoadBalancer(
24322
24949
  label: typing.Optional[builtins.str] = None,
24323
24950
  period: typing.Optional[_Duration_4839e8c3] = None,
24324
24951
  region: typing.Optional[builtins.str] = None,
24952
+ stack_account: typing.Optional[builtins.str] = None,
24953
+ stack_region: typing.Optional[builtins.str] = None,
24325
24954
  statistic: typing.Optional[builtins.str] = None,
24326
24955
  unit: typing.Optional[_Unit_61bc6f70] = None,
24327
24956
  ) -> _Metric_e396a4dc:
@@ -24333,6 +24962,8 @@ class ApplicationLoadBalancer(
24333
24962
  :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
24334
24963
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
24335
24964
  :param region: Region which this metric comes from. Default: - Deployment region.
24965
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
24966
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
24336
24967
  :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
24337
24968
  :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
24338
24969
 
@@ -24349,6 +24980,8 @@ class ApplicationLoadBalancer(
24349
24980
  label=label,
24350
24981
  period=period,
24351
24982
  region=region,
24983
+ stack_account=stack_account,
24984
+ stack_region=stack_region,
24352
24985
  statistic=statistic,
24353
24986
  unit=unit,
24354
24987
  )
@@ -24365,6 +24998,8 @@ class ApplicationLoadBalancer(
24365
24998
  label: typing.Optional[builtins.str] = None,
24366
24999
  period: typing.Optional[_Duration_4839e8c3] = None,
24367
25000
  region: typing.Optional[builtins.str] = None,
25001
+ stack_account: typing.Optional[builtins.str] = None,
25002
+ stack_region: typing.Optional[builtins.str] = None,
24368
25003
  statistic: typing.Optional[builtins.str] = None,
24369
25004
  unit: typing.Optional[_Unit_61bc6f70] = None,
24370
25005
  ) -> _Metric_e396a4dc:
@@ -24378,6 +25013,8 @@ class ApplicationLoadBalancer(
24378
25013
  :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
24379
25014
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
24380
25015
  :param region: Region which this metric comes from. Default: - Deployment region.
25016
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
25017
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
24381
25018
  :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
24382
25019
  :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
24383
25020
 
@@ -24394,6 +25031,8 @@ class ApplicationLoadBalancer(
24394
25031
  label=label,
24395
25032
  period=period,
24396
25033
  region=region,
25034
+ stack_account=stack_account,
25035
+ stack_region=stack_region,
24397
25036
  statistic=statistic,
24398
25037
  unit=unit,
24399
25038
  )
@@ -24588,6 +25227,8 @@ class ApplicationTargetGroup(
24588
25227
  label: typing.Optional[builtins.str] = None,
24589
25228
  period: typing.Optional[_Duration_4839e8c3] = None,
24590
25229
  region: typing.Optional[builtins.str] = None,
25230
+ stack_account: typing.Optional[builtins.str] = None,
25231
+ stack_region: typing.Optional[builtins.str] = None,
24591
25232
  statistic: typing.Optional[builtins.str] = None,
24592
25233
  unit: typing.Optional[_Unit_61bc6f70] = None,
24593
25234
  ) -> _Metric_e396a4dc:
@@ -24605,6 +25246,8 @@ class ApplicationTargetGroup(
24605
25246
  :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
24606
25247
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
24607
25248
  :param region: Region which this metric comes from. Default: - Deployment region.
25249
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
25250
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
24608
25251
  :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
24609
25252
  :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
24610
25253
 
@@ -24620,6 +25263,8 @@ class ApplicationTargetGroup(
24620
25263
  label=label,
24621
25264
  period=period,
24622
25265
  region=region,
25266
+ stack_account=stack_account,
25267
+ stack_region=stack_region,
24623
25268
  statistic=statistic,
24624
25269
  unit=unit,
24625
25270
  )
@@ -24636,6 +25281,8 @@ class ApplicationTargetGroup(
24636
25281
  label: typing.Optional[builtins.str] = None,
24637
25282
  period: typing.Optional[_Duration_4839e8c3] = None,
24638
25283
  region: typing.Optional[builtins.str] = None,
25284
+ stack_account: typing.Optional[builtins.str] = None,
25285
+ stack_region: typing.Optional[builtins.str] = None,
24639
25286
  statistic: typing.Optional[builtins.str] = None,
24640
25287
  unit: typing.Optional[_Unit_61bc6f70] = None,
24641
25288
  ) -> _Metric_e396a4dc:
@@ -24647,6 +25294,8 @@ class ApplicationTargetGroup(
24647
25294
  :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
24648
25295
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
24649
25296
  :param region: Region which this metric comes from. Default: - Deployment region.
25297
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
25298
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
24650
25299
  :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
24651
25300
  :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
24652
25301
 
@@ -24663,6 +25312,8 @@ class ApplicationTargetGroup(
24663
25312
  label=label,
24664
25313
  period=period,
24665
25314
  region=region,
25315
+ stack_account=stack_account,
25316
+ stack_region=stack_region,
24666
25317
  statistic=statistic,
24667
25318
  unit=unit,
24668
25319
  )
@@ -24680,6 +25331,8 @@ class ApplicationTargetGroup(
24680
25331
  label: typing.Optional[builtins.str] = None,
24681
25332
  period: typing.Optional[_Duration_4839e8c3] = None,
24682
25333
  region: typing.Optional[builtins.str] = None,
25334
+ stack_account: typing.Optional[builtins.str] = None,
25335
+ stack_region: typing.Optional[builtins.str] = None,
24683
25336
  statistic: typing.Optional[builtins.str] = None,
24684
25337
  unit: typing.Optional[_Unit_61bc6f70] = None,
24685
25338
  ) -> _Metric_e396a4dc:
@@ -24694,6 +25347,8 @@ class ApplicationTargetGroup(
24694
25347
  :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
24695
25348
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
24696
25349
  :param region: Region which this metric comes from. Default: - Deployment region.
25350
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
25351
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
24697
25352
  :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
24698
25353
  :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
24699
25354
 
@@ -24713,6 +25368,8 @@ class ApplicationTargetGroup(
24713
25368
  label=label,
24714
25369
  period=period,
24715
25370
  region=region,
25371
+ stack_account=stack_account,
25372
+ stack_region=stack_region,
24716
25373
  statistic=statistic,
24717
25374
  unit=unit,
24718
25375
  )
@@ -24729,6 +25386,8 @@ class ApplicationTargetGroup(
24729
25386
  label: typing.Optional[builtins.str] = None,
24730
25387
  period: typing.Optional[_Duration_4839e8c3] = None,
24731
25388
  region: typing.Optional[builtins.str] = None,
25389
+ stack_account: typing.Optional[builtins.str] = None,
25390
+ stack_region: typing.Optional[builtins.str] = None,
24732
25391
  statistic: typing.Optional[builtins.str] = None,
24733
25392
  unit: typing.Optional[_Unit_61bc6f70] = None,
24734
25393
  ) -> _Metric_e396a4dc:
@@ -24740,6 +25399,8 @@ class ApplicationTargetGroup(
24740
25399
  :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
24741
25400
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
24742
25401
  :param region: Region which this metric comes from. Default: - Deployment region.
25402
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
25403
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
24743
25404
  :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
24744
25405
  :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
24745
25406
 
@@ -24756,6 +25417,8 @@ class ApplicationTargetGroup(
24756
25417
  label=label,
24757
25418
  period=period,
24758
25419
  region=region,
25420
+ stack_account=stack_account,
25421
+ stack_region=stack_region,
24759
25422
  statistic=statistic,
24760
25423
  unit=unit,
24761
25424
  )
@@ -24772,6 +25435,8 @@ class ApplicationTargetGroup(
24772
25435
  label: typing.Optional[builtins.str] = None,
24773
25436
  period: typing.Optional[_Duration_4839e8c3] = None,
24774
25437
  region: typing.Optional[builtins.str] = None,
25438
+ stack_account: typing.Optional[builtins.str] = None,
25439
+ stack_region: typing.Optional[builtins.str] = None,
24775
25440
  statistic: typing.Optional[builtins.str] = None,
24776
25441
  unit: typing.Optional[_Unit_61bc6f70] = None,
24777
25442
  ) -> _Metric_e396a4dc:
@@ -24785,6 +25450,8 @@ class ApplicationTargetGroup(
24785
25450
  :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
24786
25451
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
24787
25452
  :param region: Region which this metric comes from. Default: - Deployment region.
25453
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
25454
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
24788
25455
  :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
24789
25456
  :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
24790
25457
 
@@ -24801,6 +25468,8 @@ class ApplicationTargetGroup(
24801
25468
  label=label,
24802
25469
  period=period,
24803
25470
  region=region,
25471
+ stack_account=stack_account,
25472
+ stack_region=stack_region,
24804
25473
  statistic=statistic,
24805
25474
  unit=unit,
24806
25475
  )
@@ -24817,6 +25486,8 @@ class ApplicationTargetGroup(
24817
25486
  label: typing.Optional[builtins.str] = None,
24818
25487
  period: typing.Optional[_Duration_4839e8c3] = None,
24819
25488
  region: typing.Optional[builtins.str] = None,
25489
+ stack_account: typing.Optional[builtins.str] = None,
25490
+ stack_region: typing.Optional[builtins.str] = None,
24820
25491
  statistic: typing.Optional[builtins.str] = None,
24821
25492
  unit: typing.Optional[_Unit_61bc6f70] = None,
24822
25493
  ) -> _Metric_e396a4dc:
@@ -24830,6 +25501,8 @@ class ApplicationTargetGroup(
24830
25501
  :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
24831
25502
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
24832
25503
  :param region: Region which this metric comes from. Default: - Deployment region.
25504
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
25505
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
24833
25506
  :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
24834
25507
  :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
24835
25508
 
@@ -24846,6 +25519,8 @@ class ApplicationTargetGroup(
24846
25519
  label=label,
24847
25520
  period=period,
24848
25521
  region=region,
25522
+ stack_account=stack_account,
25523
+ stack_region=stack_region,
24849
25524
  statistic=statistic,
24850
25525
  unit=unit,
24851
25526
  )
@@ -24862,6 +25537,8 @@ class ApplicationTargetGroup(
24862
25537
  label: typing.Optional[builtins.str] = None,
24863
25538
  period: typing.Optional[_Duration_4839e8c3] = None,
24864
25539
  region: typing.Optional[builtins.str] = None,
25540
+ stack_account: typing.Optional[builtins.str] = None,
25541
+ stack_region: typing.Optional[builtins.str] = None,
24865
25542
  statistic: typing.Optional[builtins.str] = None,
24866
25543
  unit: typing.Optional[_Unit_61bc6f70] = None,
24867
25544
  ) -> _Metric_e396a4dc:
@@ -24873,6 +25550,8 @@ class ApplicationTargetGroup(
24873
25550
  :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
24874
25551
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
24875
25552
  :param region: Region which this metric comes from. Default: - Deployment region.
25553
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
25554
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
24876
25555
  :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
24877
25556
  :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
24878
25557
 
@@ -24889,6 +25568,8 @@ class ApplicationTargetGroup(
24889
25568
  label=label,
24890
25569
  period=period,
24891
25570
  region=region,
25571
+ stack_account=stack_account,
25572
+ stack_region=stack_region,
24892
25573
  statistic=statistic,
24893
25574
  unit=unit,
24894
25575
  )
@@ -24905,6 +25586,8 @@ class ApplicationTargetGroup(
24905
25586
  label: typing.Optional[builtins.str] = None,
24906
25587
  period: typing.Optional[_Duration_4839e8c3] = None,
24907
25588
  region: typing.Optional[builtins.str] = None,
25589
+ stack_account: typing.Optional[builtins.str] = None,
25590
+ stack_region: typing.Optional[builtins.str] = None,
24908
25591
  statistic: typing.Optional[builtins.str] = None,
24909
25592
  unit: typing.Optional[_Unit_61bc6f70] = None,
24910
25593
  ) -> _Metric_e396a4dc:
@@ -24916,6 +25599,8 @@ class ApplicationTargetGroup(
24916
25599
  :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
24917
25600
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
24918
25601
  :param region: Region which this metric comes from. Default: - Deployment region.
25602
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
25603
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
24919
25604
  :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
24920
25605
  :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
24921
25606
 
@@ -24932,6 +25617,8 @@ class ApplicationTargetGroup(
24932
25617
  label=label,
24933
25618
  period=period,
24934
25619
  region=region,
25620
+ stack_account=stack_account,
25621
+ stack_region=stack_region,
24935
25622
  statistic=statistic,
24936
25623
  unit=unit,
24937
25624
  )
@@ -24948,6 +25635,8 @@ class ApplicationTargetGroup(
24948
25635
  label: typing.Optional[builtins.str] = None,
24949
25636
  period: typing.Optional[_Duration_4839e8c3] = None,
24950
25637
  region: typing.Optional[builtins.str] = None,
25638
+ stack_account: typing.Optional[builtins.str] = None,
25639
+ stack_region: typing.Optional[builtins.str] = None,
24951
25640
  statistic: typing.Optional[builtins.str] = None,
24952
25641
  unit: typing.Optional[_Unit_61bc6f70] = None,
24953
25642
  ) -> _Metric_e396a4dc:
@@ -24961,6 +25650,8 @@ class ApplicationTargetGroup(
24961
25650
  :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
24962
25651
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
24963
25652
  :param region: Region which this metric comes from. Default: - Deployment region.
25653
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
25654
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
24964
25655
  :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
24965
25656
  :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
24966
25657
 
@@ -24977,6 +25668,8 @@ class ApplicationTargetGroup(
24977
25668
  label=label,
24978
25669
  period=period,
24979
25670
  region=region,
25671
+ stack_account=stack_account,
25672
+ stack_region=stack_region,
24980
25673
  statistic=statistic,
24981
25674
  unit=unit,
24982
25675
  )
@@ -24993,6 +25686,8 @@ class ApplicationTargetGroup(
24993
25686
  label: typing.Optional[builtins.str] = None,
24994
25687
  period: typing.Optional[_Duration_4839e8c3] = None,
24995
25688
  region: typing.Optional[builtins.str] = None,
25689
+ stack_account: typing.Optional[builtins.str] = None,
25690
+ stack_region: typing.Optional[builtins.str] = None,
24996
25691
  statistic: typing.Optional[builtins.str] = None,
24997
25692
  unit: typing.Optional[_Unit_61bc6f70] = None,
24998
25693
  ) -> _Metric_e396a4dc:
@@ -25004,6 +25699,8 @@ class ApplicationTargetGroup(
25004
25699
  :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
25005
25700
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
25006
25701
  :param region: Region which this metric comes from. Default: - Deployment region.
25702
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
25703
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
25007
25704
  :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
25008
25705
  :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
25009
25706
 
@@ -25020,6 +25717,8 @@ class ApplicationTargetGroup(
25020
25717
  label=label,
25021
25718
  period=period,
25022
25719
  region=region,
25720
+ stack_account=stack_account,
25721
+ stack_region=stack_region,
25023
25722
  statistic=statistic,
25024
25723
  unit=unit,
25025
25724
  )
@@ -26425,6 +27124,8 @@ def _typecheckingstub__5fdaa352f47723102bc8b02795997da981ab41c5bbfac64c9c16bb660
26425
27124
  label: typing.Optional[builtins.str] = None,
26426
27125
  period: typing.Optional[_Duration_4839e8c3] = None,
26427
27126
  region: typing.Optional[builtins.str] = None,
27127
+ stack_account: typing.Optional[builtins.str] = None,
27128
+ stack_region: typing.Optional[builtins.str] = None,
26428
27129
  statistic: typing.Optional[builtins.str] = None,
26429
27130
  unit: typing.Optional[_Unit_61bc6f70] = None,
26430
27131
  ) -> None:
@@ -26440,6 +27141,8 @@ def _typecheckingstub__4ae47c8e65e66e347cfdb0188a808020b132816f8589da08b3bc1a1da
26440
27141
  label: typing.Optional[builtins.str] = None,
26441
27142
  period: typing.Optional[_Duration_4839e8c3] = None,
26442
27143
  region: typing.Optional[builtins.str] = None,
27144
+ stack_account: typing.Optional[builtins.str] = None,
27145
+ stack_region: typing.Optional[builtins.str] = None,
26443
27146
  statistic: typing.Optional[builtins.str] = None,
26444
27147
  unit: typing.Optional[_Unit_61bc6f70] = None,
26445
27148
  ) -> None:
@@ -26455,6 +27158,8 @@ def _typecheckingstub__d30c1da0a3658b983f526f50f7092b4225f10072263e9c0d1e7a83834
26455
27158
  label: typing.Optional[builtins.str] = None,
26456
27159
  period: typing.Optional[_Duration_4839e8c3] = None,
26457
27160
  region: typing.Optional[builtins.str] = None,
27161
+ stack_account: typing.Optional[builtins.str] = None,
27162
+ stack_region: typing.Optional[builtins.str] = None,
26458
27163
  statistic: typing.Optional[builtins.str] = None,
26459
27164
  unit: typing.Optional[_Unit_61bc6f70] = None,
26460
27165
  ) -> None:
@@ -26476,6 +27181,8 @@ def _typecheckingstub__cc3cba8973161f9f275100a75ebf8cac931ced8367721ab1adb7f4f9b
26476
27181
  label: typing.Optional[builtins.str] = None,
26477
27182
  period: typing.Optional[_Duration_4839e8c3] = None,
26478
27183
  region: typing.Optional[builtins.str] = None,
27184
+ stack_account: typing.Optional[builtins.str] = None,
27185
+ stack_region: typing.Optional[builtins.str] = None,
26479
27186
  statistic: typing.Optional[builtins.str] = None,
26480
27187
  unit: typing.Optional[_Unit_61bc6f70] = None,
26481
27188
  ) -> None:
@@ -26491,6 +27198,8 @@ def _typecheckingstub__6dd40f82fcbdfec8e99268dcb0a185ed360683cb030f3584a06d99792
26491
27198
  label: typing.Optional[builtins.str] = None,
26492
27199
  period: typing.Optional[_Duration_4839e8c3] = None,
26493
27200
  region: typing.Optional[builtins.str] = None,
27201
+ stack_account: typing.Optional[builtins.str] = None,
27202
+ stack_region: typing.Optional[builtins.str] = None,
26494
27203
  statistic: typing.Optional[builtins.str] = None,
26495
27204
  unit: typing.Optional[_Unit_61bc6f70] = None,
26496
27205
  ) -> None:
@@ -26521,6 +27230,8 @@ def _typecheckingstub__2cec0b68307ed3e708bf772394b78bfb95b757da6ed6572c5a44941ce
26521
27230
  label: typing.Optional[builtins.str] = None,
26522
27231
  period: typing.Optional[_Duration_4839e8c3] = None,
26523
27232
  region: typing.Optional[builtins.str] = None,
27233
+ stack_account: typing.Optional[builtins.str] = None,
27234
+ stack_region: typing.Optional[builtins.str] = None,
26524
27235
  statistic: typing.Optional[builtins.str] = None,
26525
27236
  unit: typing.Optional[_Unit_61bc6f70] = None,
26526
27237
  ) -> None:
@@ -26542,6 +27253,8 @@ def _typecheckingstub__d7117afefd42c93c0fa3e1420e52db33a04e098e81d67e1eab5412b73
26542
27253
  label: typing.Optional[builtins.str] = None,
26543
27254
  period: typing.Optional[_Duration_4839e8c3] = None,
26544
27255
  region: typing.Optional[builtins.str] = None,
27256
+ stack_account: typing.Optional[builtins.str] = None,
27257
+ stack_region: typing.Optional[builtins.str] = None,
26545
27258
  statistic: typing.Optional[builtins.str] = None,
26546
27259
  unit: typing.Optional[_Unit_61bc6f70] = None,
26547
27260
  ) -> None:
@@ -26808,6 +27521,8 @@ def _typecheckingstub__17ca64dc99c8eaa4319c78561a1c82d5e804c4bf49835a1d352c39059
26808
27521
  label: typing.Optional[builtins.str] = None,
26809
27522
  period: typing.Optional[_Duration_4839e8c3] = None,
26810
27523
  region: typing.Optional[builtins.str] = None,
27524
+ stack_account: typing.Optional[builtins.str] = None,
27525
+ stack_region: typing.Optional[builtins.str] = None,
26811
27526
  statistic: typing.Optional[builtins.str] = None,
26812
27527
  unit: typing.Optional[_Unit_61bc6f70] = None,
26813
27528
  ) -> None:
@@ -27565,6 +28280,8 @@ def _typecheckingstub__062c936e075fbff0552978e79ddc8d8cb01378ba1804b2546d14bd038
27565
28280
  label: typing.Optional[builtins.str] = None,
27566
28281
  period: typing.Optional[_Duration_4839e8c3] = None,
27567
28282
  region: typing.Optional[builtins.str] = None,
28283
+ stack_account: typing.Optional[builtins.str] = None,
28284
+ stack_region: typing.Optional[builtins.str] = None,
27568
28285
  statistic: typing.Optional[builtins.str] = None,
27569
28286
  unit: typing.Optional[_Unit_61bc6f70] = None,
27570
28287
  ) -> None:
@@ -27580,6 +28297,8 @@ def _typecheckingstub__b6447cbfc7ac9662cc1dd6f3b8f6b82a973be8b07590b7873ef3e038b
27580
28297
  label: typing.Optional[builtins.str] = None,
27581
28298
  period: typing.Optional[_Duration_4839e8c3] = None,
27582
28299
  region: typing.Optional[builtins.str] = None,
28300
+ stack_account: typing.Optional[builtins.str] = None,
28301
+ stack_region: typing.Optional[builtins.str] = None,
27583
28302
  statistic: typing.Optional[builtins.str] = None,
27584
28303
  unit: typing.Optional[_Unit_61bc6f70] = None,
27585
28304
  ) -> None:
@@ -27595,6 +28314,8 @@ def _typecheckingstub__62701820eba63282ada6f942e6abfde1d8b672693f32becc65f1c6323
27595
28314
  label: typing.Optional[builtins.str] = None,
27596
28315
  period: typing.Optional[_Duration_4839e8c3] = None,
27597
28316
  region: typing.Optional[builtins.str] = None,
28317
+ stack_account: typing.Optional[builtins.str] = None,
28318
+ stack_region: typing.Optional[builtins.str] = None,
27598
28319
  statistic: typing.Optional[builtins.str] = None,
27599
28320
  unit: typing.Optional[_Unit_61bc6f70] = None,
27600
28321
  ) -> None:
@@ -27657,6 +28378,8 @@ def _typecheckingstub__cafb19674dfe2b81cd50268d430f42d42519cb1d6ac9e4ca3e06e177f
27657
28378
  label: typing.Optional[builtins.str] = None,
27658
28379
  period: typing.Optional[_Duration_4839e8c3] = None,
27659
28380
  region: typing.Optional[builtins.str] = None,
28381
+ stack_account: typing.Optional[builtins.str] = None,
28382
+ stack_region: typing.Optional[builtins.str] = None,
27660
28383
  statistic: typing.Optional[builtins.str] = None,
27661
28384
  unit: typing.Optional[_Unit_61bc6f70] = None,
27662
28385
  ) -> None:
@@ -27672,6 +28395,8 @@ def _typecheckingstub__5658927e0affbc22ef25411d45503bc28f92184eb42551f1375dcafba
27672
28395
  label: typing.Optional[builtins.str] = None,
27673
28396
  period: typing.Optional[_Duration_4839e8c3] = None,
27674
28397
  region: typing.Optional[builtins.str] = None,
28398
+ stack_account: typing.Optional[builtins.str] = None,
28399
+ stack_region: typing.Optional[builtins.str] = None,
27675
28400
  statistic: typing.Optional[builtins.str] = None,
27676
28401
  unit: typing.Optional[_Unit_61bc6f70] = None,
27677
28402
  ) -> None: