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

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

Potentially problematic release.


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

Files changed (36) hide show
  1. aws_cdk/_jsii/__init__.py +1 -1
  2. aws_cdk/_jsii/{aws-cdk-lib@2.174.1.jsii.tgz → aws-cdk-lib@2.175.1.jsii.tgz} +0 -0
  3. aws_cdk/aws_apigateway/__init__.py +164 -0
  4. aws_cdk/aws_apigatewayv2/__init__.py +248 -0
  5. aws_cdk/aws_applicationautoscaling/__init__.py +6 -3
  6. aws_cdk/aws_autoscaling/__init__.py +8 -8
  7. aws_cdk/aws_certificatemanager/__init__.py +28 -0
  8. aws_cdk/aws_chatbot/__init__.py +28 -0
  9. aws_cdk/aws_cloudfront/__init__.py +92 -0
  10. aws_cdk/aws_cloudfront/experimental/__init__.py +32 -0
  11. aws_cdk/aws_cloudwatch/__init__.py +146 -0
  12. aws_cdk/aws_codebuild/__init__.py +84 -0
  13. aws_cdk/aws_dynamodb/__init__.py +300 -0
  14. aws_cdk/aws_ec2/__init__.py +97 -0
  15. aws_cdk/aws_ecs/__init__.py +351 -110
  16. aws_cdk/aws_ecs_patterns/__init__.py +77 -42
  17. aws_cdk/aws_elasticloadbalancing/__init__.py +3 -6
  18. aws_cdk/aws_elasticloadbalancingv2/__init__.py +732 -7
  19. aws_cdk/aws_elasticsearch/__init__.py +260 -0
  20. aws_cdk/aws_kinesis/__init__.py +324 -0
  21. aws_cdk/aws_kms/__init__.py +197 -0
  22. aws_cdk/aws_lambda/__init__.py +144 -0
  23. aws_cdk/aws_logs/__init__.py +58 -0
  24. aws_cdk/aws_opensearchservice/__init__.py +260 -0
  25. aws_cdk/aws_rds/__init__.py +384 -0
  26. aws_cdk/aws_sns/__init__.py +164 -0
  27. aws_cdk/aws_sqs/__init__.py +164 -0
  28. aws_cdk/aws_stepfunctions/__init__.py +288 -0
  29. aws_cdk/aws_synthetics/__init__.py +18 -0
  30. aws_cdk/cx_api/__init__.py +42 -0
  31. {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.1.dist-info}/METADATA +1 -1
  32. {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.1.dist-info}/RECORD +36 -36
  33. {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.1.dist-info}/LICENSE +0 -0
  34. {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.1.dist-info}/NOTICE +0 -0
  35. {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.1.dist-info}/WHEEL +0 -0
  36. {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.1.dist-info}/top_level.txt +0 -0
@@ -10318,6 +10318,8 @@ class IProject(
10318
10318
  label: typing.Optional[builtins.str] = None,
10319
10319
  period: typing.Optional[_Duration_4839e8c3] = None,
10320
10320
  region: typing.Optional[builtins.str] = None,
10321
+ stack_account: typing.Optional[builtins.str] = None,
10322
+ stack_region: typing.Optional[builtins.str] = None,
10321
10323
  statistic: typing.Optional[builtins.str] = None,
10322
10324
  unit: typing.Optional[_Unit_61bc6f70] = None,
10323
10325
  ) -> _Metric_e396a4dc:
@@ -10329,6 +10331,8 @@ class IProject(
10329
10331
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
10330
10332
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
10331
10333
  :param region: Region which this metric comes from. Default: - Deployment region.
10334
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
10335
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
10332
10336
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
10333
10337
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
10334
10338
 
@@ -10346,6 +10350,8 @@ class IProject(
10346
10350
  label: typing.Optional[builtins.str] = None,
10347
10351
  period: typing.Optional[_Duration_4839e8c3] = None,
10348
10352
  region: typing.Optional[builtins.str] = None,
10353
+ stack_account: typing.Optional[builtins.str] = None,
10354
+ stack_region: typing.Optional[builtins.str] = None,
10349
10355
  statistic: typing.Optional[builtins.str] = None,
10350
10356
  unit: typing.Optional[_Unit_61bc6f70] = None,
10351
10357
  ) -> _Metric_e396a4dc:
@@ -10361,6 +10367,8 @@ class IProject(
10361
10367
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
10362
10368
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
10363
10369
  :param region: Region which this metric comes from. Default: - Deployment region.
10370
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
10371
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
10364
10372
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
10365
10373
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
10366
10374
 
@@ -10378,6 +10386,8 @@ class IProject(
10378
10386
  label: typing.Optional[builtins.str] = None,
10379
10387
  period: typing.Optional[_Duration_4839e8c3] = None,
10380
10388
  region: typing.Optional[builtins.str] = None,
10389
+ stack_account: typing.Optional[builtins.str] = None,
10390
+ stack_region: typing.Optional[builtins.str] = None,
10381
10391
  statistic: typing.Optional[builtins.str] = None,
10382
10392
  unit: typing.Optional[_Unit_61bc6f70] = None,
10383
10393
  ) -> _Metric_e396a4dc:
@@ -10393,6 +10403,8 @@ class IProject(
10393
10403
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
10394
10404
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
10395
10405
  :param region: Region which this metric comes from. Default: - Deployment region.
10406
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
10407
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
10396
10408
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
10397
10409
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
10398
10410
 
@@ -10410,6 +10422,8 @@ class IProject(
10410
10422
  label: typing.Optional[builtins.str] = None,
10411
10423
  period: typing.Optional[_Duration_4839e8c3] = None,
10412
10424
  region: typing.Optional[builtins.str] = None,
10425
+ stack_account: typing.Optional[builtins.str] = None,
10426
+ stack_region: typing.Optional[builtins.str] = None,
10413
10427
  statistic: typing.Optional[builtins.str] = None,
10414
10428
  unit: typing.Optional[_Unit_61bc6f70] = None,
10415
10429
  ) -> _Metric_e396a4dc:
@@ -10425,6 +10439,8 @@ class IProject(
10425
10439
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
10426
10440
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
10427
10441
  :param region: Region which this metric comes from. Default: - Deployment region.
10442
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
10443
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
10428
10444
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
10429
10445
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
10430
10446
 
@@ -10442,6 +10458,8 @@ class IProject(
10442
10458
  label: typing.Optional[builtins.str] = None,
10443
10459
  period: typing.Optional[_Duration_4839e8c3] = None,
10444
10460
  region: typing.Optional[builtins.str] = None,
10461
+ stack_account: typing.Optional[builtins.str] = None,
10462
+ stack_region: typing.Optional[builtins.str] = None,
10445
10463
  statistic: typing.Optional[builtins.str] = None,
10446
10464
  unit: typing.Optional[_Unit_61bc6f70] = None,
10447
10465
  ) -> _Metric_e396a4dc:
@@ -10457,6 +10475,8 @@ class IProject(
10457
10475
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
10458
10476
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
10459
10477
  :param region: Region which this metric comes from. Default: - Deployment region.
10478
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
10479
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
10460
10480
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
10461
10481
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
10462
10482
 
@@ -10762,6 +10782,8 @@ class _IProjectProxy(
10762
10782
  label: typing.Optional[builtins.str] = None,
10763
10783
  period: typing.Optional[_Duration_4839e8c3] = None,
10764
10784
  region: typing.Optional[builtins.str] = None,
10785
+ stack_account: typing.Optional[builtins.str] = None,
10786
+ stack_region: typing.Optional[builtins.str] = None,
10765
10787
  statistic: typing.Optional[builtins.str] = None,
10766
10788
  unit: typing.Optional[_Unit_61bc6f70] = None,
10767
10789
  ) -> _Metric_e396a4dc:
@@ -10773,6 +10795,8 @@ class _IProjectProxy(
10773
10795
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
10774
10796
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
10775
10797
  :param region: Region which this metric comes from. Default: - Deployment region.
10798
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
10799
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
10776
10800
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
10777
10801
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
10778
10802
 
@@ -10788,6 +10812,8 @@ class _IProjectProxy(
10788
10812
  label=label,
10789
10813
  period=period,
10790
10814
  region=region,
10815
+ stack_account=stack_account,
10816
+ stack_region=stack_region,
10791
10817
  statistic=statistic,
10792
10818
  unit=unit,
10793
10819
  )
@@ -10804,6 +10830,8 @@ class _IProjectProxy(
10804
10830
  label: typing.Optional[builtins.str] = None,
10805
10831
  period: typing.Optional[_Duration_4839e8c3] = None,
10806
10832
  region: typing.Optional[builtins.str] = None,
10833
+ stack_account: typing.Optional[builtins.str] = None,
10834
+ stack_region: typing.Optional[builtins.str] = None,
10807
10835
  statistic: typing.Optional[builtins.str] = None,
10808
10836
  unit: typing.Optional[_Unit_61bc6f70] = None,
10809
10837
  ) -> _Metric_e396a4dc:
@@ -10819,6 +10847,8 @@ class _IProjectProxy(
10819
10847
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
10820
10848
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
10821
10849
  :param region: Region which this metric comes from. Default: - Deployment region.
10850
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
10851
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
10822
10852
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
10823
10853
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
10824
10854
 
@@ -10831,6 +10861,8 @@ class _IProjectProxy(
10831
10861
  label=label,
10832
10862
  period=period,
10833
10863
  region=region,
10864
+ stack_account=stack_account,
10865
+ stack_region=stack_region,
10834
10866
  statistic=statistic,
10835
10867
  unit=unit,
10836
10868
  )
@@ -10847,6 +10879,8 @@ class _IProjectProxy(
10847
10879
  label: typing.Optional[builtins.str] = None,
10848
10880
  period: typing.Optional[_Duration_4839e8c3] = None,
10849
10881
  region: typing.Optional[builtins.str] = None,
10882
+ stack_account: typing.Optional[builtins.str] = None,
10883
+ stack_region: typing.Optional[builtins.str] = None,
10850
10884
  statistic: typing.Optional[builtins.str] = None,
10851
10885
  unit: typing.Optional[_Unit_61bc6f70] = None,
10852
10886
  ) -> _Metric_e396a4dc:
@@ -10862,6 +10896,8 @@ class _IProjectProxy(
10862
10896
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
10863
10897
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
10864
10898
  :param region: Region which this metric comes from. Default: - Deployment region.
10899
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
10900
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
10865
10901
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
10866
10902
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
10867
10903
 
@@ -10874,6 +10910,8 @@ class _IProjectProxy(
10874
10910
  label=label,
10875
10911
  period=period,
10876
10912
  region=region,
10913
+ stack_account=stack_account,
10914
+ stack_region=stack_region,
10877
10915
  statistic=statistic,
10878
10916
  unit=unit,
10879
10917
  )
@@ -10890,6 +10928,8 @@ class _IProjectProxy(
10890
10928
  label: typing.Optional[builtins.str] = None,
10891
10929
  period: typing.Optional[_Duration_4839e8c3] = None,
10892
10930
  region: typing.Optional[builtins.str] = None,
10931
+ stack_account: typing.Optional[builtins.str] = None,
10932
+ stack_region: typing.Optional[builtins.str] = None,
10893
10933
  statistic: typing.Optional[builtins.str] = None,
10894
10934
  unit: typing.Optional[_Unit_61bc6f70] = None,
10895
10935
  ) -> _Metric_e396a4dc:
@@ -10905,6 +10945,8 @@ class _IProjectProxy(
10905
10945
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
10906
10946
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
10907
10947
  :param region: Region which this metric comes from. Default: - Deployment region.
10948
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
10949
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
10908
10950
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
10909
10951
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
10910
10952
 
@@ -10917,6 +10959,8 @@ class _IProjectProxy(
10917
10959
  label=label,
10918
10960
  period=period,
10919
10961
  region=region,
10962
+ stack_account=stack_account,
10963
+ stack_region=stack_region,
10920
10964
  statistic=statistic,
10921
10965
  unit=unit,
10922
10966
  )
@@ -10933,6 +10977,8 @@ class _IProjectProxy(
10933
10977
  label: typing.Optional[builtins.str] = None,
10934
10978
  period: typing.Optional[_Duration_4839e8c3] = None,
10935
10979
  region: typing.Optional[builtins.str] = None,
10980
+ stack_account: typing.Optional[builtins.str] = None,
10981
+ stack_region: typing.Optional[builtins.str] = None,
10936
10982
  statistic: typing.Optional[builtins.str] = None,
10937
10983
  unit: typing.Optional[_Unit_61bc6f70] = None,
10938
10984
  ) -> _Metric_e396a4dc:
@@ -10948,6 +10994,8 @@ class _IProjectProxy(
10948
10994
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
10949
10995
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
10950
10996
  :param region: Region which this metric comes from. Default: - Deployment region.
10997
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
10998
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
10951
10999
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
10952
11000
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
10953
11001
 
@@ -10960,6 +11008,8 @@ class _IProjectProxy(
10960
11008
  label=label,
10961
11009
  period=period,
10962
11010
  region=region,
11011
+ stack_account=stack_account,
11012
+ stack_region=stack_region,
10963
11013
  statistic=statistic,
10964
11014
  unit=unit,
10965
11015
  )
@@ -13636,6 +13686,8 @@ class Project(
13636
13686
  label: typing.Optional[builtins.str] = None,
13637
13687
  period: typing.Optional[_Duration_4839e8c3] = None,
13638
13688
  region: typing.Optional[builtins.str] = None,
13689
+ stack_account: typing.Optional[builtins.str] = None,
13690
+ stack_region: typing.Optional[builtins.str] = None,
13639
13691
  statistic: typing.Optional[builtins.str] = None,
13640
13692
  unit: typing.Optional[_Unit_61bc6f70] = None,
13641
13693
  ) -> _Metric_e396a4dc:
@@ -13647,6 +13699,8 @@ class Project(
13647
13699
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
13648
13700
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
13649
13701
  :param region: Region which this metric comes from. Default: - Deployment region.
13702
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
13703
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
13650
13704
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
13651
13705
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
13652
13706
 
@@ -13662,6 +13716,8 @@ class Project(
13662
13716
  label=label,
13663
13717
  period=period,
13664
13718
  region=region,
13719
+ stack_account=stack_account,
13720
+ stack_region=stack_region,
13665
13721
  statistic=statistic,
13666
13722
  unit=unit,
13667
13723
  )
@@ -13678,6 +13734,8 @@ class Project(
13678
13734
  label: typing.Optional[builtins.str] = None,
13679
13735
  period: typing.Optional[_Duration_4839e8c3] = None,
13680
13736
  region: typing.Optional[builtins.str] = None,
13737
+ stack_account: typing.Optional[builtins.str] = None,
13738
+ stack_region: typing.Optional[builtins.str] = None,
13681
13739
  statistic: typing.Optional[builtins.str] = None,
13682
13740
  unit: typing.Optional[_Unit_61bc6f70] = None,
13683
13741
  ) -> _Metric_e396a4dc:
@@ -13693,6 +13751,8 @@ class Project(
13693
13751
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
13694
13752
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
13695
13753
  :param region: Region which this metric comes from. Default: - Deployment region.
13754
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
13755
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
13696
13756
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
13697
13757
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
13698
13758
 
@@ -13705,6 +13765,8 @@ class Project(
13705
13765
  label=label,
13706
13766
  period=period,
13707
13767
  region=region,
13768
+ stack_account=stack_account,
13769
+ stack_region=stack_region,
13708
13770
  statistic=statistic,
13709
13771
  unit=unit,
13710
13772
  )
@@ -13721,6 +13783,8 @@ class Project(
13721
13783
  label: typing.Optional[builtins.str] = None,
13722
13784
  period: typing.Optional[_Duration_4839e8c3] = None,
13723
13785
  region: typing.Optional[builtins.str] = None,
13786
+ stack_account: typing.Optional[builtins.str] = None,
13787
+ stack_region: typing.Optional[builtins.str] = None,
13724
13788
  statistic: typing.Optional[builtins.str] = None,
13725
13789
  unit: typing.Optional[_Unit_61bc6f70] = None,
13726
13790
  ) -> _Metric_e396a4dc:
@@ -13736,6 +13800,8 @@ class Project(
13736
13800
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
13737
13801
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
13738
13802
  :param region: Region which this metric comes from. Default: - Deployment region.
13803
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
13804
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
13739
13805
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
13740
13806
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
13741
13807
 
@@ -13748,6 +13814,8 @@ class Project(
13748
13814
  label=label,
13749
13815
  period=period,
13750
13816
  region=region,
13817
+ stack_account=stack_account,
13818
+ stack_region=stack_region,
13751
13819
  statistic=statistic,
13752
13820
  unit=unit,
13753
13821
  )
@@ -13764,6 +13832,8 @@ class Project(
13764
13832
  label: typing.Optional[builtins.str] = None,
13765
13833
  period: typing.Optional[_Duration_4839e8c3] = None,
13766
13834
  region: typing.Optional[builtins.str] = None,
13835
+ stack_account: typing.Optional[builtins.str] = None,
13836
+ stack_region: typing.Optional[builtins.str] = None,
13767
13837
  statistic: typing.Optional[builtins.str] = None,
13768
13838
  unit: typing.Optional[_Unit_61bc6f70] = None,
13769
13839
  ) -> _Metric_e396a4dc:
@@ -13779,6 +13849,8 @@ class Project(
13779
13849
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
13780
13850
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
13781
13851
  :param region: Region which this metric comes from. Default: - Deployment region.
13852
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
13853
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
13782
13854
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
13783
13855
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
13784
13856
 
@@ -13791,6 +13863,8 @@ class Project(
13791
13863
  label=label,
13792
13864
  period=period,
13793
13865
  region=region,
13866
+ stack_account=stack_account,
13867
+ stack_region=stack_region,
13794
13868
  statistic=statistic,
13795
13869
  unit=unit,
13796
13870
  )
@@ -13807,6 +13881,8 @@ class Project(
13807
13881
  label: typing.Optional[builtins.str] = None,
13808
13882
  period: typing.Optional[_Duration_4839e8c3] = None,
13809
13883
  region: typing.Optional[builtins.str] = None,
13884
+ stack_account: typing.Optional[builtins.str] = None,
13885
+ stack_region: typing.Optional[builtins.str] = None,
13810
13886
  statistic: typing.Optional[builtins.str] = None,
13811
13887
  unit: typing.Optional[_Unit_61bc6f70] = None,
13812
13888
  ) -> _Metric_e396a4dc:
@@ -13822,6 +13898,8 @@ class Project(
13822
13898
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
13823
13899
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
13824
13900
  :param region: Region which this metric comes from. Default: - Deployment region.
13901
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
13902
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
13825
13903
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
13826
13904
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
13827
13905
 
@@ -13834,6 +13912,8 @@ class Project(
13834
13912
  label=label,
13835
13913
  period=period,
13836
13914
  region=region,
13915
+ stack_account=stack_account,
13916
+ stack_region=stack_region,
13837
13917
  statistic=statistic,
13838
13918
  unit=unit,
13839
13919
  )
@@ -19290,6 +19370,8 @@ def _typecheckingstub__4f7884de76ff7cb0ba58cc48d1d7bc265a2e8da34c1f3bde4ea5a96e3
19290
19370
  label: typing.Optional[builtins.str] = None,
19291
19371
  period: typing.Optional[_Duration_4839e8c3] = None,
19292
19372
  region: typing.Optional[builtins.str] = None,
19373
+ stack_account: typing.Optional[builtins.str] = None,
19374
+ stack_region: typing.Optional[builtins.str] = None,
19293
19375
  statistic: typing.Optional[builtins.str] = None,
19294
19376
  unit: typing.Optional[_Unit_61bc6f70] = None,
19295
19377
  ) -> None:
@@ -19700,6 +19782,8 @@ def _typecheckingstub__685fd8fff031c8a93196b514789bd4f8ac1a27018ed911a6883d21b80
19700
19782
  label: typing.Optional[builtins.str] = None,
19701
19783
  period: typing.Optional[_Duration_4839e8c3] = None,
19702
19784
  region: typing.Optional[builtins.str] = None,
19785
+ stack_account: typing.Optional[builtins.str] = None,
19786
+ stack_region: typing.Optional[builtins.str] = None,
19703
19787
  statistic: typing.Optional[builtins.str] = None,
19704
19788
  unit: typing.Optional[_Unit_61bc6f70] = None,
19705
19789
  ) -> None: