aws-cdk-lib 2.174.0__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 (45) hide show
  1. aws_cdk/_jsii/__init__.py +1 -1
  2. aws_cdk/_jsii/{aws-cdk-lib@2.174.0.jsii.tgz → aws-cdk-lib@2.175.0.jsii.tgz} +0 -0
  3. aws_cdk/aws_amazonmq/__init__.py +18 -0
  4. aws_cdk/aws_apigateway/__init__.py +164 -0
  5. aws_cdk/aws_apigatewayv2/__init__.py +248 -0
  6. aws_cdk/aws_applicationautoscaling/__init__.py +6 -3
  7. aws_cdk/aws_autoscaling/__init__.py +8 -8
  8. aws_cdk/aws_batch/__init__.py +32 -458
  9. aws_cdk/aws_bedrock/__init__.py +7 -4
  10. aws_cdk/aws_certificatemanager/__init__.py +28 -0
  11. aws_cdk/aws_chatbot/__init__.py +28 -0
  12. aws_cdk/aws_cleanrooms/__init__.py +683 -2
  13. aws_cdk/aws_cloudfront/__init__.py +92 -0
  14. aws_cdk/aws_cloudfront/experimental/__init__.py +32 -0
  15. aws_cdk/aws_cloudwatch/__init__.py +146 -0
  16. aws_cdk/aws_codebuild/__init__.py +84 -0
  17. aws_cdk/aws_dms/__init__.py +49 -27
  18. aws_cdk/aws_docdb/__init__.py +134 -0
  19. aws_cdk/aws_dynamodb/__init__.py +300 -0
  20. aws_cdk/aws_ec2/__init__.py +97 -0
  21. aws_cdk/aws_ecs/__init__.py +351 -110
  22. aws_cdk/aws_ecs_patterns/__init__.py +77 -42
  23. aws_cdk/aws_elasticloadbalancing/__init__.py +3 -6
  24. aws_cdk/aws_elasticloadbalancingv2/__init__.py +732 -7
  25. aws_cdk/aws_elasticsearch/__init__.py +260 -0
  26. aws_cdk/aws_kinesis/__init__.py +324 -0
  27. aws_cdk/aws_kms/__init__.py +197 -0
  28. aws_cdk/aws_lambda/__init__.py +144 -0
  29. aws_cdk/aws_logs/__init__.py +58 -0
  30. aws_cdk/aws_mediaconvert/__init__.py +39 -0
  31. aws_cdk/aws_opensearchservice/__init__.py +260 -0
  32. aws_cdk/aws_quicksight/__init__.py +1422 -859
  33. aws_cdk/aws_rds/__init__.py +386 -7
  34. aws_cdk/aws_sagemaker/__init__.py +6 -6
  35. aws_cdk/aws_sns/__init__.py +164 -0
  36. aws_cdk/aws_sqs/__init__.py +164 -0
  37. aws_cdk/aws_stepfunctions/__init__.py +288 -0
  38. aws_cdk/aws_synthetics/__init__.py +18 -0
  39. aws_cdk/cx_api/__init__.py +42 -0
  40. {aws_cdk_lib-2.174.0.dist-info → aws_cdk_lib-2.175.0.dist-info}/METADATA +1 -1
  41. {aws_cdk_lib-2.174.0.dist-info → aws_cdk_lib-2.175.0.dist-info}/RECORD +45 -45
  42. {aws_cdk_lib-2.174.0.dist-info → aws_cdk_lib-2.175.0.dist-info}/LICENSE +0 -0
  43. {aws_cdk_lib-2.174.0.dist-info → aws_cdk_lib-2.175.0.dist-info}/NOTICE +0 -0
  44. {aws_cdk_lib-2.174.0.dist-info → aws_cdk_lib-2.175.0.dist-info}/WHEEL +0 -0
  45. {aws_cdk_lib-2.174.0.dist-info → aws_cdk_lib-2.175.0.dist-info}/top_level.txt +0 -0
@@ -73348,6 +73348,8 @@ class IVpnConnection(_IResource_c80c4260, typing_extensions.Protocol):
73348
73348
  label: typing.Optional[builtins.str] = None,
73349
73349
  period: typing.Optional[_Duration_4839e8c3] = None,
73350
73350
  region: typing.Optional[builtins.str] = None,
73351
+ stack_account: typing.Optional[builtins.str] = None,
73352
+ stack_region: typing.Optional[builtins.str] = None,
73351
73353
  statistic: typing.Optional[builtins.str] = None,
73352
73354
  unit: typing.Optional[_Unit_61bc6f70] = None,
73353
73355
  ) -> _Metric_e396a4dc:
@@ -73360,6 +73362,8 @@ class IVpnConnection(_IResource_c80c4260, typing_extensions.Protocol):
73360
73362
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
73361
73363
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
73362
73364
  :param region: Region which this metric comes from. Default: - Deployment region.
73365
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
73366
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
73363
73367
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
73364
73368
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
73365
73369
  '''
@@ -73375,6 +73379,8 @@ class IVpnConnection(_IResource_c80c4260, typing_extensions.Protocol):
73375
73379
  label: typing.Optional[builtins.str] = None,
73376
73380
  period: typing.Optional[_Duration_4839e8c3] = None,
73377
73381
  region: typing.Optional[builtins.str] = None,
73382
+ stack_account: typing.Optional[builtins.str] = None,
73383
+ stack_region: typing.Optional[builtins.str] = None,
73378
73384
  statistic: typing.Optional[builtins.str] = None,
73379
73385
  unit: typing.Optional[_Unit_61bc6f70] = None,
73380
73386
  ) -> _Metric_e396a4dc:
@@ -73388,6 +73394,8 @@ class IVpnConnection(_IResource_c80c4260, typing_extensions.Protocol):
73388
73394
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
73389
73395
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
73390
73396
  :param region: Region which this metric comes from. Default: - Deployment region.
73397
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
73398
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
73391
73399
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
73392
73400
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
73393
73401
  '''
@@ -73403,6 +73411,8 @@ class IVpnConnection(_IResource_c80c4260, typing_extensions.Protocol):
73403
73411
  label: typing.Optional[builtins.str] = None,
73404
73412
  period: typing.Optional[_Duration_4839e8c3] = None,
73405
73413
  region: typing.Optional[builtins.str] = None,
73414
+ stack_account: typing.Optional[builtins.str] = None,
73415
+ stack_region: typing.Optional[builtins.str] = None,
73406
73416
  statistic: typing.Optional[builtins.str] = None,
73407
73417
  unit: typing.Optional[_Unit_61bc6f70] = None,
73408
73418
  ) -> _Metric_e396a4dc:
@@ -73416,6 +73426,8 @@ class IVpnConnection(_IResource_c80c4260, typing_extensions.Protocol):
73416
73426
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
73417
73427
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
73418
73428
  :param region: Region which this metric comes from. Default: - Deployment region.
73429
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
73430
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
73419
73431
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
73420
73432
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
73421
73433
  '''
@@ -73431,6 +73443,8 @@ class IVpnConnection(_IResource_c80c4260, typing_extensions.Protocol):
73431
73443
  label: typing.Optional[builtins.str] = None,
73432
73444
  period: typing.Optional[_Duration_4839e8c3] = None,
73433
73445
  region: typing.Optional[builtins.str] = None,
73446
+ stack_account: typing.Optional[builtins.str] = None,
73447
+ stack_region: typing.Optional[builtins.str] = None,
73434
73448
  statistic: typing.Optional[builtins.str] = None,
73435
73449
  unit: typing.Optional[_Unit_61bc6f70] = None,
73436
73450
  ) -> _Metric_e396a4dc:
@@ -73444,6 +73458,8 @@ class IVpnConnection(_IResource_c80c4260, typing_extensions.Protocol):
73444
73458
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
73445
73459
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
73446
73460
  :param region: Region which this metric comes from. Default: - Deployment region.
73461
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
73462
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
73447
73463
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
73448
73464
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
73449
73465
  '''
@@ -73493,6 +73509,8 @@ class _IVpnConnectionProxy(
73493
73509
  label: typing.Optional[builtins.str] = None,
73494
73510
  period: typing.Optional[_Duration_4839e8c3] = None,
73495
73511
  region: typing.Optional[builtins.str] = None,
73512
+ stack_account: typing.Optional[builtins.str] = None,
73513
+ stack_region: typing.Optional[builtins.str] = None,
73496
73514
  statistic: typing.Optional[builtins.str] = None,
73497
73515
  unit: typing.Optional[_Unit_61bc6f70] = None,
73498
73516
  ) -> _Metric_e396a4dc:
@@ -73505,6 +73523,8 @@ class _IVpnConnectionProxy(
73505
73523
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
73506
73524
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
73507
73525
  :param region: Region which this metric comes from. Default: - Deployment region.
73526
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
73527
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
73508
73528
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
73509
73529
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
73510
73530
  '''
@@ -73518,6 +73538,8 @@ class _IVpnConnectionProxy(
73518
73538
  label=label,
73519
73539
  period=period,
73520
73540
  region=region,
73541
+ stack_account=stack_account,
73542
+ stack_region=stack_region,
73521
73543
  statistic=statistic,
73522
73544
  unit=unit,
73523
73545
  )
@@ -73534,6 +73556,8 @@ class _IVpnConnectionProxy(
73534
73556
  label: typing.Optional[builtins.str] = None,
73535
73557
  period: typing.Optional[_Duration_4839e8c3] = None,
73536
73558
  region: typing.Optional[builtins.str] = None,
73559
+ stack_account: typing.Optional[builtins.str] = None,
73560
+ stack_region: typing.Optional[builtins.str] = None,
73537
73561
  statistic: typing.Optional[builtins.str] = None,
73538
73562
  unit: typing.Optional[_Unit_61bc6f70] = None,
73539
73563
  ) -> _Metric_e396a4dc:
@@ -73547,6 +73571,8 @@ class _IVpnConnectionProxy(
73547
73571
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
73548
73572
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
73549
73573
  :param region: Region which this metric comes from. Default: - Deployment region.
73574
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
73575
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
73550
73576
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
73551
73577
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
73552
73578
  '''
@@ -73557,6 +73583,8 @@ class _IVpnConnectionProxy(
73557
73583
  label=label,
73558
73584
  period=period,
73559
73585
  region=region,
73586
+ stack_account=stack_account,
73587
+ stack_region=stack_region,
73560
73588
  statistic=statistic,
73561
73589
  unit=unit,
73562
73590
  )
@@ -73573,6 +73601,8 @@ class _IVpnConnectionProxy(
73573
73601
  label: typing.Optional[builtins.str] = None,
73574
73602
  period: typing.Optional[_Duration_4839e8c3] = None,
73575
73603
  region: typing.Optional[builtins.str] = None,
73604
+ stack_account: typing.Optional[builtins.str] = None,
73605
+ stack_region: typing.Optional[builtins.str] = None,
73576
73606
  statistic: typing.Optional[builtins.str] = None,
73577
73607
  unit: typing.Optional[_Unit_61bc6f70] = None,
73578
73608
  ) -> _Metric_e396a4dc:
@@ -73586,6 +73616,8 @@ class _IVpnConnectionProxy(
73586
73616
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
73587
73617
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
73588
73618
  :param region: Region which this metric comes from. Default: - Deployment region.
73619
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
73620
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
73589
73621
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
73590
73622
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
73591
73623
  '''
@@ -73596,6 +73628,8 @@ class _IVpnConnectionProxy(
73596
73628
  label=label,
73597
73629
  period=period,
73598
73630
  region=region,
73631
+ stack_account=stack_account,
73632
+ stack_region=stack_region,
73599
73633
  statistic=statistic,
73600
73634
  unit=unit,
73601
73635
  )
@@ -73612,6 +73646,8 @@ class _IVpnConnectionProxy(
73612
73646
  label: typing.Optional[builtins.str] = None,
73613
73647
  period: typing.Optional[_Duration_4839e8c3] = None,
73614
73648
  region: typing.Optional[builtins.str] = None,
73649
+ stack_account: typing.Optional[builtins.str] = None,
73650
+ stack_region: typing.Optional[builtins.str] = None,
73615
73651
  statistic: typing.Optional[builtins.str] = None,
73616
73652
  unit: typing.Optional[_Unit_61bc6f70] = None,
73617
73653
  ) -> _Metric_e396a4dc:
@@ -73625,6 +73661,8 @@ class _IVpnConnectionProxy(
73625
73661
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
73626
73662
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
73627
73663
  :param region: Region which this metric comes from. Default: - Deployment region.
73664
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
73665
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
73628
73666
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
73629
73667
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
73630
73668
  '''
@@ -73635,6 +73673,8 @@ class _IVpnConnectionProxy(
73635
73673
  label=label,
73636
73674
  period=period,
73637
73675
  region=region,
73676
+ stack_account=stack_account,
73677
+ stack_region=stack_region,
73638
73678
  statistic=statistic,
73639
73679
  unit=unit,
73640
73680
  )
@@ -80239,6 +80279,7 @@ class IpProtocol(enum.Enum):
80239
80279
  task_image_options=ecsPatterns.ApplicationLoadBalancedTaskImageOptions(
80240
80280
  image=ecs.ContainerImage.from_registry("amazon/amazon-ecs-sample")
80241
80281
  ),
80282
+ min_healthy_percent=100,
80242
80283
  ip_address_type=elbv2.IpAddressType.DUAL_STACK
80243
80284
  )
80244
80285
 
@@ -80247,6 +80288,7 @@ class IpProtocol(enum.Enum):
80247
80288
  task_image_options=ecsPatterns.ApplicationLoadBalancedTaskImageOptions(
80248
80289
  image=ecs.ContainerImage.from_registry("amazon/amazon-ecs-sample")
80249
80290
  ),
80291
+ min_healthy_percent=100,
80250
80292
  ip_address_type=elbv2.IpAddressType.DUAL_STACK
80251
80293
  )
80252
80294
  '''
@@ -87335,6 +87377,7 @@ class Subnet(
87335
87377
  task_image_options=ecsPatterns.ApplicationLoadBalancedTaskImageOptions(
87336
87378
  image=ecs.ContainerImage.from_registry("amazon/amazon-ecs-sample")
87337
87379
  ),
87380
+ min_healthy_percent=100,
87338
87381
  task_subnets=ec2.SubnetSelection(
87339
87382
  subnets=[ec2.Subnet.from_subnet_id(self, "subnet", "VpcISOLATEDSubnet1Subnet80F07FA0")]
87340
87383
  )
@@ -92068,6 +92111,8 @@ class VpnConnectionBase(
92068
92111
  label: typing.Optional[builtins.str] = None,
92069
92112
  period: typing.Optional[_Duration_4839e8c3] = None,
92070
92113
  region: typing.Optional[builtins.str] = None,
92114
+ stack_account: typing.Optional[builtins.str] = None,
92115
+ stack_region: typing.Optional[builtins.str] = None,
92071
92116
  statistic: typing.Optional[builtins.str] = None,
92072
92117
  unit: typing.Optional[_Unit_61bc6f70] = None,
92073
92118
  ) -> _Metric_e396a4dc:
@@ -92080,6 +92125,8 @@ class VpnConnectionBase(
92080
92125
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
92081
92126
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
92082
92127
  :param region: Region which this metric comes from. Default: - Deployment region.
92128
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
92129
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
92083
92130
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
92084
92131
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
92085
92132
  '''
@@ -92093,6 +92140,8 @@ class VpnConnectionBase(
92093
92140
  label=label,
92094
92141
  period=period,
92095
92142
  region=region,
92143
+ stack_account=stack_account,
92144
+ stack_region=stack_region,
92096
92145
  statistic=statistic,
92097
92146
  unit=unit,
92098
92147
  )
@@ -92109,6 +92158,8 @@ class VpnConnectionBase(
92109
92158
  label: typing.Optional[builtins.str] = None,
92110
92159
  period: typing.Optional[_Duration_4839e8c3] = None,
92111
92160
  region: typing.Optional[builtins.str] = None,
92161
+ stack_account: typing.Optional[builtins.str] = None,
92162
+ stack_region: typing.Optional[builtins.str] = None,
92112
92163
  statistic: typing.Optional[builtins.str] = None,
92113
92164
  unit: typing.Optional[_Unit_61bc6f70] = None,
92114
92165
  ) -> _Metric_e396a4dc:
@@ -92122,6 +92173,8 @@ class VpnConnectionBase(
92122
92173
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
92123
92174
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
92124
92175
  :param region: Region which this metric comes from. Default: - Deployment region.
92176
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
92177
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
92125
92178
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
92126
92179
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
92127
92180
  '''
@@ -92132,6 +92185,8 @@ class VpnConnectionBase(
92132
92185
  label=label,
92133
92186
  period=period,
92134
92187
  region=region,
92188
+ stack_account=stack_account,
92189
+ stack_region=stack_region,
92135
92190
  statistic=statistic,
92136
92191
  unit=unit,
92137
92192
  )
@@ -92148,6 +92203,8 @@ class VpnConnectionBase(
92148
92203
  label: typing.Optional[builtins.str] = None,
92149
92204
  period: typing.Optional[_Duration_4839e8c3] = None,
92150
92205
  region: typing.Optional[builtins.str] = None,
92206
+ stack_account: typing.Optional[builtins.str] = None,
92207
+ stack_region: typing.Optional[builtins.str] = None,
92151
92208
  statistic: typing.Optional[builtins.str] = None,
92152
92209
  unit: typing.Optional[_Unit_61bc6f70] = None,
92153
92210
  ) -> _Metric_e396a4dc:
@@ -92161,6 +92218,8 @@ class VpnConnectionBase(
92161
92218
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
92162
92219
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
92163
92220
  :param region: Region which this metric comes from. Default: - Deployment region.
92221
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
92222
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
92164
92223
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
92165
92224
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
92166
92225
  '''
@@ -92171,6 +92230,8 @@ class VpnConnectionBase(
92171
92230
  label=label,
92172
92231
  period=period,
92173
92232
  region=region,
92233
+ stack_account=stack_account,
92234
+ stack_region=stack_region,
92174
92235
  statistic=statistic,
92175
92236
  unit=unit,
92176
92237
  )
@@ -92187,6 +92248,8 @@ class VpnConnectionBase(
92187
92248
  label: typing.Optional[builtins.str] = None,
92188
92249
  period: typing.Optional[_Duration_4839e8c3] = None,
92189
92250
  region: typing.Optional[builtins.str] = None,
92251
+ stack_account: typing.Optional[builtins.str] = None,
92252
+ stack_region: typing.Optional[builtins.str] = None,
92190
92253
  statistic: typing.Optional[builtins.str] = None,
92191
92254
  unit: typing.Optional[_Unit_61bc6f70] = None,
92192
92255
  ) -> _Metric_e396a4dc:
@@ -92200,6 +92263,8 @@ class VpnConnectionBase(
92200
92263
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
92201
92264
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
92202
92265
  :param region: Region which this metric comes from. Default: - Deployment region.
92266
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
92267
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
92203
92268
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
92204
92269
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
92205
92270
  '''
@@ -92210,6 +92275,8 @@ class VpnConnectionBase(
92210
92275
  label=label,
92211
92276
  period=period,
92212
92277
  region=region,
92278
+ stack_account=stack_account,
92279
+ stack_region=stack_region,
92213
92280
  statistic=statistic,
92214
92281
  unit=unit,
92215
92282
  )
@@ -97500,6 +97567,8 @@ class VpnConnection(
97500
97567
  label: typing.Optional[builtins.str] = None,
97501
97568
  period: typing.Optional[_Duration_4839e8c3] = None,
97502
97569
  region: typing.Optional[builtins.str] = None,
97570
+ stack_account: typing.Optional[builtins.str] = None,
97571
+ stack_region: typing.Optional[builtins.str] = None,
97503
97572
  statistic: typing.Optional[builtins.str] = None,
97504
97573
  unit: typing.Optional[_Unit_61bc6f70] = None,
97505
97574
  ) -> _Metric_e396a4dc:
@@ -97512,6 +97581,8 @@ class VpnConnection(
97512
97581
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
97513
97582
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
97514
97583
  :param region: Region which this metric comes from. Default: - Deployment region.
97584
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
97585
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
97515
97586
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
97516
97587
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
97517
97588
  '''
@@ -97525,6 +97596,8 @@ class VpnConnection(
97525
97596
  label=label,
97526
97597
  period=period,
97527
97598
  region=region,
97599
+ stack_account=stack_account,
97600
+ stack_region=stack_region,
97528
97601
  statistic=statistic,
97529
97602
  unit=unit,
97530
97603
  )
@@ -97542,6 +97615,8 @@ class VpnConnection(
97542
97615
  label: typing.Optional[builtins.str] = None,
97543
97616
  period: typing.Optional[_Duration_4839e8c3] = None,
97544
97617
  region: typing.Optional[builtins.str] = None,
97618
+ stack_account: typing.Optional[builtins.str] = None,
97619
+ stack_region: typing.Optional[builtins.str] = None,
97545
97620
  statistic: typing.Optional[builtins.str] = None,
97546
97621
  unit: typing.Optional[_Unit_61bc6f70] = None,
97547
97622
  ) -> _Metric_e396a4dc:
@@ -97553,6 +97628,8 @@ class VpnConnection(
97553
97628
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
97554
97629
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
97555
97630
  :param region: Region which this metric comes from. Default: - Deployment region.
97631
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
97632
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
97556
97633
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
97557
97634
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
97558
97635
 
@@ -97565,6 +97642,8 @@ class VpnConnection(
97565
97642
  label=label,
97566
97643
  period=period,
97567
97644
  region=region,
97645
+ stack_account=stack_account,
97646
+ stack_region=stack_region,
97568
97647
  statistic=statistic,
97569
97648
  unit=unit,
97570
97649
  )
@@ -97582,6 +97661,8 @@ class VpnConnection(
97582
97661
  label: typing.Optional[builtins.str] = None,
97583
97662
  period: typing.Optional[_Duration_4839e8c3] = None,
97584
97663
  region: typing.Optional[builtins.str] = None,
97664
+ stack_account: typing.Optional[builtins.str] = None,
97665
+ stack_region: typing.Optional[builtins.str] = None,
97585
97666
  statistic: typing.Optional[builtins.str] = None,
97586
97667
  unit: typing.Optional[_Unit_61bc6f70] = None,
97587
97668
  ) -> _Metric_e396a4dc:
@@ -97593,6 +97674,8 @@ class VpnConnection(
97593
97674
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
97594
97675
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
97595
97676
  :param region: Region which this metric comes from. Default: - Deployment region.
97677
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
97678
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
97596
97679
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
97597
97680
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
97598
97681
 
@@ -97605,6 +97688,8 @@ class VpnConnection(
97605
97688
  label=label,
97606
97689
  period=period,
97607
97690
  region=region,
97691
+ stack_account=stack_account,
97692
+ stack_region=stack_region,
97608
97693
  statistic=statistic,
97609
97694
  unit=unit,
97610
97695
  )
@@ -97622,6 +97707,8 @@ class VpnConnection(
97622
97707
  label: typing.Optional[builtins.str] = None,
97623
97708
  period: typing.Optional[_Duration_4839e8c3] = None,
97624
97709
  region: typing.Optional[builtins.str] = None,
97710
+ stack_account: typing.Optional[builtins.str] = None,
97711
+ stack_region: typing.Optional[builtins.str] = None,
97625
97712
  statistic: typing.Optional[builtins.str] = None,
97626
97713
  unit: typing.Optional[_Unit_61bc6f70] = None,
97627
97714
  ) -> _Metric_e396a4dc:
@@ -97633,6 +97720,8 @@ class VpnConnection(
97633
97720
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
97634
97721
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
97635
97722
  :param region: Region which this metric comes from. Default: - Deployment region.
97723
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
97724
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
97636
97725
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
97637
97726
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
97638
97727
 
@@ -97645,6 +97734,8 @@ class VpnConnection(
97645
97734
  label=label,
97646
97735
  period=period,
97647
97736
  region=region,
97737
+ stack_account=stack_account,
97738
+ stack_region=stack_region,
97648
97739
  statistic=statistic,
97649
97740
  unit=unit,
97650
97741
  )
@@ -108883,6 +108974,8 @@ def _typecheckingstub__a2c1c58afbc5e81e1af61d18f3f4b2f840465db1e0e780c358e83b3a1
108883
108974
  label: typing.Optional[builtins.str] = None,
108884
108975
  period: typing.Optional[_Duration_4839e8c3] = None,
108885
108976
  region: typing.Optional[builtins.str] = None,
108977
+ stack_account: typing.Optional[builtins.str] = None,
108978
+ stack_region: typing.Optional[builtins.str] = None,
108886
108979
  statistic: typing.Optional[builtins.str] = None,
108887
108980
  unit: typing.Optional[_Unit_61bc6f70] = None,
108888
108981
  ) -> None:
@@ -110873,6 +110966,8 @@ def _typecheckingstub__1f244e2fd0db7fcc2c7468799c9a19c8b2a0a6f87bbe53904f9e9cf45
110873
110966
  label: typing.Optional[builtins.str] = None,
110874
110967
  period: typing.Optional[_Duration_4839e8c3] = None,
110875
110968
  region: typing.Optional[builtins.str] = None,
110969
+ stack_account: typing.Optional[builtins.str] = None,
110970
+ stack_region: typing.Optional[builtins.str] = None,
110876
110971
  statistic: typing.Optional[builtins.str] = None,
110877
110972
  unit: typing.Optional[_Unit_61bc6f70] = None,
110878
110973
  ) -> None:
@@ -111475,6 +111570,8 @@ def _typecheckingstub__bae7a2df51c395d1a24d11925c809c17449294a288dc41db5331ecdee
111475
111570
  label: typing.Optional[builtins.str] = None,
111476
111571
  period: typing.Optional[_Duration_4839e8c3] = None,
111477
111572
  region: typing.Optional[builtins.str] = None,
111573
+ stack_account: typing.Optional[builtins.str] = None,
111574
+ stack_region: typing.Optional[builtins.str] = None,
111478
111575
  statistic: typing.Optional[builtins.str] = None,
111479
111576
  unit: typing.Optional[_Unit_61bc6f70] = None,
111480
111577
  ) -> None: