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
@@ -1358,6 +1358,8 @@ class IStream(_IResource_c80c4260, typing_extensions.Protocol):
1358
1358
  label: typing.Optional[builtins.str] = None,
1359
1359
  period: typing.Optional[_Duration_4839e8c3] = None,
1360
1360
  region: typing.Optional[builtins.str] = None,
1361
+ stack_account: typing.Optional[builtins.str] = None,
1362
+ stack_region: typing.Optional[builtins.str] = None,
1361
1363
  statistic: typing.Optional[builtins.str] = None,
1362
1364
  unit: typing.Optional[_Unit_61bc6f70] = None,
1363
1365
  ) -> _Metric_e396a4dc:
@@ -1370,6 +1372,8 @@ class IStream(_IResource_c80c4260, typing_extensions.Protocol):
1370
1372
  :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
1371
1373
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1372
1374
  :param region: Region which this metric comes from. Default: - Deployment region.
1375
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1376
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1373
1377
  :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
1374
1378
  :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
1375
1379
  '''
@@ -1385,6 +1389,8 @@ class IStream(_IResource_c80c4260, typing_extensions.Protocol):
1385
1389
  label: typing.Optional[builtins.str] = None,
1386
1390
  period: typing.Optional[_Duration_4839e8c3] = None,
1387
1391
  region: typing.Optional[builtins.str] = None,
1392
+ stack_account: typing.Optional[builtins.str] = None,
1393
+ stack_region: typing.Optional[builtins.str] = None,
1388
1394
  statistic: typing.Optional[builtins.str] = None,
1389
1395
  unit: typing.Optional[_Unit_61bc6f70] = None,
1390
1396
  ) -> _Metric_e396a4dc:
@@ -1402,6 +1408,8 @@ class IStream(_IResource_c80c4260, typing_extensions.Protocol):
1402
1408
  :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
1403
1409
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1404
1410
  :param region: Region which this metric comes from. Default: - Deployment region.
1411
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1412
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1405
1413
  :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
1406
1414
  :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
1407
1415
  '''
@@ -1417,6 +1425,8 @@ class IStream(_IResource_c80c4260, typing_extensions.Protocol):
1417
1425
  label: typing.Optional[builtins.str] = None,
1418
1426
  period: typing.Optional[_Duration_4839e8c3] = None,
1419
1427
  region: typing.Optional[builtins.str] = None,
1428
+ stack_account: typing.Optional[builtins.str] = None,
1429
+ stack_region: typing.Optional[builtins.str] = None,
1420
1430
  statistic: typing.Optional[builtins.str] = None,
1421
1431
  unit: typing.Optional[_Unit_61bc6f70] = None,
1422
1432
  ) -> _Metric_e396a4dc:
@@ -1434,6 +1444,8 @@ class IStream(_IResource_c80c4260, typing_extensions.Protocol):
1434
1444
  :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
1435
1445
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1436
1446
  :param region: Region which this metric comes from. Default: - Deployment region.
1447
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1448
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1437
1449
  :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
1438
1450
  :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
1439
1451
  '''
@@ -1449,6 +1461,8 @@ class IStream(_IResource_c80c4260, typing_extensions.Protocol):
1449
1461
  label: typing.Optional[builtins.str] = None,
1450
1462
  period: typing.Optional[_Duration_4839e8c3] = None,
1451
1463
  region: typing.Optional[builtins.str] = None,
1464
+ stack_account: typing.Optional[builtins.str] = None,
1465
+ stack_region: typing.Optional[builtins.str] = None,
1452
1466
  statistic: typing.Optional[builtins.str] = None,
1453
1467
  unit: typing.Optional[_Unit_61bc6f70] = None,
1454
1468
  ) -> _Metric_e396a4dc:
@@ -1466,6 +1480,8 @@ class IStream(_IResource_c80c4260, typing_extensions.Protocol):
1466
1480
  :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
1467
1481
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1468
1482
  :param region: Region which this metric comes from. Default: - Deployment region.
1483
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1484
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1469
1485
  :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
1470
1486
  :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
1471
1487
  '''
@@ -1481,6 +1497,8 @@ class IStream(_IResource_c80c4260, typing_extensions.Protocol):
1481
1497
  label: typing.Optional[builtins.str] = None,
1482
1498
  period: typing.Optional[_Duration_4839e8c3] = None,
1483
1499
  region: typing.Optional[builtins.str] = None,
1500
+ stack_account: typing.Optional[builtins.str] = None,
1501
+ stack_region: typing.Optional[builtins.str] = None,
1484
1502
  statistic: typing.Optional[builtins.str] = None,
1485
1503
  unit: typing.Optional[_Unit_61bc6f70] = None,
1486
1504
  ) -> _Metric_e396a4dc:
@@ -1494,6 +1512,8 @@ class IStream(_IResource_c80c4260, typing_extensions.Protocol):
1494
1512
  :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
1495
1513
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1496
1514
  :param region: Region which this metric comes from. Default: - Deployment region.
1515
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1516
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1497
1517
  :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
1498
1518
  :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
1499
1519
  '''
@@ -1509,6 +1529,8 @@ class IStream(_IResource_c80c4260, typing_extensions.Protocol):
1509
1529
  label: typing.Optional[builtins.str] = None,
1510
1530
  period: typing.Optional[_Duration_4839e8c3] = None,
1511
1531
  region: typing.Optional[builtins.str] = None,
1532
+ stack_account: typing.Optional[builtins.str] = None,
1533
+ stack_region: typing.Optional[builtins.str] = None,
1512
1534
  statistic: typing.Optional[builtins.str] = None,
1513
1535
  unit: typing.Optional[_Unit_61bc6f70] = None,
1514
1536
  ) -> _Metric_e396a4dc:
@@ -1522,6 +1544,8 @@ class IStream(_IResource_c80c4260, typing_extensions.Protocol):
1522
1544
  :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
1523
1545
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1524
1546
  :param region: Region which this metric comes from. Default: - Deployment region.
1547
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1548
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1525
1549
  :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
1526
1550
  :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
1527
1551
  '''
@@ -1537,6 +1561,8 @@ class IStream(_IResource_c80c4260, typing_extensions.Protocol):
1537
1561
  label: typing.Optional[builtins.str] = None,
1538
1562
  period: typing.Optional[_Duration_4839e8c3] = None,
1539
1563
  region: typing.Optional[builtins.str] = None,
1564
+ stack_account: typing.Optional[builtins.str] = None,
1565
+ stack_region: typing.Optional[builtins.str] = None,
1540
1566
  statistic: typing.Optional[builtins.str] = None,
1541
1567
  unit: typing.Optional[_Unit_61bc6f70] = None,
1542
1568
  ) -> _Metric_e396a4dc:
@@ -1554,6 +1580,8 @@ class IStream(_IResource_c80c4260, typing_extensions.Protocol):
1554
1580
  :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
1555
1581
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1556
1582
  :param region: Region which this metric comes from. Default: - Deployment region.
1583
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1584
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1557
1585
  :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
1558
1586
  :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
1559
1587
  '''
@@ -1569,6 +1597,8 @@ class IStream(_IResource_c80c4260, typing_extensions.Protocol):
1569
1597
  label: typing.Optional[builtins.str] = None,
1570
1598
  period: typing.Optional[_Duration_4839e8c3] = None,
1571
1599
  region: typing.Optional[builtins.str] = None,
1600
+ stack_account: typing.Optional[builtins.str] = None,
1601
+ stack_region: typing.Optional[builtins.str] = None,
1572
1602
  statistic: typing.Optional[builtins.str] = None,
1573
1603
  unit: typing.Optional[_Unit_61bc6f70] = None,
1574
1604
  ) -> _Metric_e396a4dc:
@@ -1586,6 +1616,8 @@ class IStream(_IResource_c80c4260, typing_extensions.Protocol):
1586
1616
  :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
1587
1617
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1588
1618
  :param region: Region which this metric comes from. Default: - Deployment region.
1619
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1620
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1589
1621
  :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
1590
1622
  :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
1591
1623
  '''
@@ -1601,6 +1633,8 @@ class IStream(_IResource_c80c4260, typing_extensions.Protocol):
1601
1633
  label: typing.Optional[builtins.str] = None,
1602
1634
  period: typing.Optional[_Duration_4839e8c3] = None,
1603
1635
  region: typing.Optional[builtins.str] = None,
1636
+ stack_account: typing.Optional[builtins.str] = None,
1637
+ stack_region: typing.Optional[builtins.str] = None,
1604
1638
  statistic: typing.Optional[builtins.str] = None,
1605
1639
  unit: typing.Optional[_Unit_61bc6f70] = None,
1606
1640
  ) -> _Metric_e396a4dc:
@@ -1614,6 +1648,8 @@ class IStream(_IResource_c80c4260, typing_extensions.Protocol):
1614
1648
  :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
1615
1649
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1616
1650
  :param region: Region which this metric comes from. Default: - Deployment region.
1651
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1652
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1617
1653
  :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
1618
1654
  :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
1619
1655
  '''
@@ -1629,6 +1665,8 @@ class IStream(_IResource_c80c4260, typing_extensions.Protocol):
1629
1665
  label: typing.Optional[builtins.str] = None,
1630
1666
  period: typing.Optional[_Duration_4839e8c3] = None,
1631
1667
  region: typing.Optional[builtins.str] = None,
1668
+ stack_account: typing.Optional[builtins.str] = None,
1669
+ stack_region: typing.Optional[builtins.str] = None,
1632
1670
  statistic: typing.Optional[builtins.str] = None,
1633
1671
  unit: typing.Optional[_Unit_61bc6f70] = None,
1634
1672
  ) -> _Metric_e396a4dc:
@@ -1642,6 +1680,8 @@ class IStream(_IResource_c80c4260, typing_extensions.Protocol):
1642
1680
  :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
1643
1681
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1644
1682
  :param region: Region which this metric comes from. Default: - Deployment region.
1683
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1684
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1645
1685
  :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
1646
1686
  :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
1647
1687
  '''
@@ -1657,6 +1697,8 @@ class IStream(_IResource_c80c4260, typing_extensions.Protocol):
1657
1697
  label: typing.Optional[builtins.str] = None,
1658
1698
  period: typing.Optional[_Duration_4839e8c3] = None,
1659
1699
  region: typing.Optional[builtins.str] = None,
1700
+ stack_account: typing.Optional[builtins.str] = None,
1701
+ stack_region: typing.Optional[builtins.str] = None,
1660
1702
  statistic: typing.Optional[builtins.str] = None,
1661
1703
  unit: typing.Optional[_Unit_61bc6f70] = None,
1662
1704
  ) -> _Metric_e396a4dc:
@@ -1670,6 +1712,8 @@ class IStream(_IResource_c80c4260, typing_extensions.Protocol):
1670
1712
  :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
1671
1713
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1672
1714
  :param region: Region which this metric comes from. Default: - Deployment region.
1715
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1716
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1673
1717
  :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
1674
1718
  :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
1675
1719
  '''
@@ -1685,6 +1729,8 @@ class IStream(_IResource_c80c4260, typing_extensions.Protocol):
1685
1729
  label: typing.Optional[builtins.str] = None,
1686
1730
  period: typing.Optional[_Duration_4839e8c3] = None,
1687
1731
  region: typing.Optional[builtins.str] = None,
1732
+ stack_account: typing.Optional[builtins.str] = None,
1733
+ stack_region: typing.Optional[builtins.str] = None,
1688
1734
  statistic: typing.Optional[builtins.str] = None,
1689
1735
  unit: typing.Optional[_Unit_61bc6f70] = None,
1690
1736
  ) -> _Metric_e396a4dc:
@@ -1700,6 +1746,8 @@ class IStream(_IResource_c80c4260, typing_extensions.Protocol):
1700
1746
  :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
1701
1747
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1702
1748
  :param region: Region which this metric comes from. Default: - Deployment region.
1749
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1750
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1703
1751
  :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
1704
1752
  :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
1705
1753
  '''
@@ -1715,6 +1763,8 @@ class IStream(_IResource_c80c4260, typing_extensions.Protocol):
1715
1763
  label: typing.Optional[builtins.str] = None,
1716
1764
  period: typing.Optional[_Duration_4839e8c3] = None,
1717
1765
  region: typing.Optional[builtins.str] = None,
1766
+ stack_account: typing.Optional[builtins.str] = None,
1767
+ stack_region: typing.Optional[builtins.str] = None,
1718
1768
  statistic: typing.Optional[builtins.str] = None,
1719
1769
  unit: typing.Optional[_Unit_61bc6f70] = None,
1720
1770
  ) -> _Metric_e396a4dc:
@@ -1728,6 +1778,8 @@ class IStream(_IResource_c80c4260, typing_extensions.Protocol):
1728
1778
  :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
1729
1779
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1730
1780
  :param region: Region which this metric comes from. Default: - Deployment region.
1781
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1782
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1731
1783
  :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
1732
1784
  :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
1733
1785
  '''
@@ -1743,6 +1795,8 @@ class IStream(_IResource_c80c4260, typing_extensions.Protocol):
1743
1795
  label: typing.Optional[builtins.str] = None,
1744
1796
  period: typing.Optional[_Duration_4839e8c3] = None,
1745
1797
  region: typing.Optional[builtins.str] = None,
1798
+ stack_account: typing.Optional[builtins.str] = None,
1799
+ stack_region: typing.Optional[builtins.str] = None,
1746
1800
  statistic: typing.Optional[builtins.str] = None,
1747
1801
  unit: typing.Optional[_Unit_61bc6f70] = None,
1748
1802
  ) -> _Metric_e396a4dc:
@@ -1756,6 +1810,8 @@ class IStream(_IResource_c80c4260, typing_extensions.Protocol):
1756
1810
  :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
1757
1811
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1758
1812
  :param region: Region which this metric comes from. Default: - Deployment region.
1813
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1814
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1759
1815
  :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
1760
1816
  :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
1761
1817
  '''
@@ -1771,6 +1827,8 @@ class IStream(_IResource_c80c4260, typing_extensions.Protocol):
1771
1827
  label: typing.Optional[builtins.str] = None,
1772
1828
  period: typing.Optional[_Duration_4839e8c3] = None,
1773
1829
  region: typing.Optional[builtins.str] = None,
1830
+ stack_account: typing.Optional[builtins.str] = None,
1831
+ stack_region: typing.Optional[builtins.str] = None,
1774
1832
  statistic: typing.Optional[builtins.str] = None,
1775
1833
  unit: typing.Optional[_Unit_61bc6f70] = None,
1776
1834
  ) -> _Metric_e396a4dc:
@@ -1784,6 +1842,8 @@ class IStream(_IResource_c80c4260, typing_extensions.Protocol):
1784
1842
  :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
1785
1843
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1786
1844
  :param region: Region which this metric comes from. Default: - Deployment region.
1845
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1846
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1787
1847
  :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
1788
1848
  :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
1789
1849
  '''
@@ -1799,6 +1859,8 @@ class IStream(_IResource_c80c4260, typing_extensions.Protocol):
1799
1859
  label: typing.Optional[builtins.str] = None,
1800
1860
  period: typing.Optional[_Duration_4839e8c3] = None,
1801
1861
  region: typing.Optional[builtins.str] = None,
1862
+ stack_account: typing.Optional[builtins.str] = None,
1863
+ stack_region: typing.Optional[builtins.str] = None,
1802
1864
  statistic: typing.Optional[builtins.str] = None,
1803
1865
  unit: typing.Optional[_Unit_61bc6f70] = None,
1804
1866
  ) -> _Metric_e396a4dc:
@@ -1812,6 +1874,8 @@ class IStream(_IResource_c80c4260, typing_extensions.Protocol):
1812
1874
  :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
1813
1875
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1814
1876
  :param region: Region which this metric comes from. Default: - Deployment region.
1877
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1878
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1815
1879
  :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
1816
1880
  :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
1817
1881
  '''
@@ -1827,6 +1891,8 @@ class IStream(_IResource_c80c4260, typing_extensions.Protocol):
1827
1891
  label: typing.Optional[builtins.str] = None,
1828
1892
  period: typing.Optional[_Duration_4839e8c3] = None,
1829
1893
  region: typing.Optional[builtins.str] = None,
1894
+ stack_account: typing.Optional[builtins.str] = None,
1895
+ stack_region: typing.Optional[builtins.str] = None,
1830
1896
  statistic: typing.Optional[builtins.str] = None,
1831
1897
  unit: typing.Optional[_Unit_61bc6f70] = None,
1832
1898
  ) -> _Metric_e396a4dc:
@@ -1840,6 +1906,8 @@ class IStream(_IResource_c80c4260, typing_extensions.Protocol):
1840
1906
  :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
1841
1907
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1842
1908
  :param region: Region which this metric comes from. Default: - Deployment region.
1909
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1910
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1843
1911
  :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
1844
1912
  :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
1845
1913
  '''
@@ -1855,6 +1923,8 @@ class IStream(_IResource_c80c4260, typing_extensions.Protocol):
1855
1923
  label: typing.Optional[builtins.str] = None,
1856
1924
  period: typing.Optional[_Duration_4839e8c3] = None,
1857
1925
  region: typing.Optional[builtins.str] = None,
1926
+ stack_account: typing.Optional[builtins.str] = None,
1927
+ stack_region: typing.Optional[builtins.str] = None,
1858
1928
  statistic: typing.Optional[builtins.str] = None,
1859
1929
  unit: typing.Optional[_Unit_61bc6f70] = None,
1860
1930
  ) -> _Metric_e396a4dc:
@@ -1871,6 +1941,8 @@ class IStream(_IResource_c80c4260, typing_extensions.Protocol):
1871
1941
  :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
1872
1942
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1873
1943
  :param region: Region which this metric comes from. Default: - Deployment region.
1944
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1945
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1874
1946
  :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
1875
1947
  :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
1876
1948
  '''
@@ -1886,6 +1958,8 @@ class IStream(_IResource_c80c4260, typing_extensions.Protocol):
1886
1958
  label: typing.Optional[builtins.str] = None,
1887
1959
  period: typing.Optional[_Duration_4839e8c3] = None,
1888
1960
  region: typing.Optional[builtins.str] = None,
1961
+ stack_account: typing.Optional[builtins.str] = None,
1962
+ stack_region: typing.Optional[builtins.str] = None,
1889
1963
  statistic: typing.Optional[builtins.str] = None,
1890
1964
  unit: typing.Optional[_Unit_61bc6f70] = None,
1891
1965
  ) -> _Metric_e396a4dc:
@@ -1908,6 +1982,8 @@ class IStream(_IResource_c80c4260, typing_extensions.Protocol):
1908
1982
  :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
1909
1983
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1910
1984
  :param region: Region which this metric comes from. Default: - Deployment region.
1985
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1986
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1911
1987
  :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
1912
1988
  :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
1913
1989
  '''
@@ -1923,6 +1999,8 @@ class IStream(_IResource_c80c4260, typing_extensions.Protocol):
1923
1999
  label: typing.Optional[builtins.str] = None,
1924
2000
  period: typing.Optional[_Duration_4839e8c3] = None,
1925
2001
  region: typing.Optional[builtins.str] = None,
2002
+ stack_account: typing.Optional[builtins.str] = None,
2003
+ stack_region: typing.Optional[builtins.str] = None,
1926
2004
  statistic: typing.Optional[builtins.str] = None,
1927
2005
  unit: typing.Optional[_Unit_61bc6f70] = None,
1928
2006
  ) -> _Metric_e396a4dc:
@@ -1945,6 +2023,8 @@ class IStream(_IResource_c80c4260, typing_extensions.Protocol):
1945
2023
  :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
1946
2024
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1947
2025
  :param region: Region which this metric comes from. Default: - Deployment region.
2026
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2027
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1948
2028
  :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
1949
2029
  :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
1950
2030
  '''
@@ -2070,6 +2150,8 @@ class _IStreamProxy(
2070
2150
  label: typing.Optional[builtins.str] = None,
2071
2151
  period: typing.Optional[_Duration_4839e8c3] = None,
2072
2152
  region: typing.Optional[builtins.str] = None,
2153
+ stack_account: typing.Optional[builtins.str] = None,
2154
+ stack_region: typing.Optional[builtins.str] = None,
2073
2155
  statistic: typing.Optional[builtins.str] = None,
2074
2156
  unit: typing.Optional[_Unit_61bc6f70] = None,
2075
2157
  ) -> _Metric_e396a4dc:
@@ -2082,6 +2164,8 @@ class _IStreamProxy(
2082
2164
  :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
2083
2165
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2084
2166
  :param region: Region which this metric comes from. Default: - Deployment region.
2167
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2168
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2085
2169
  :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
2086
2170
  :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
2087
2171
  '''
@@ -2095,6 +2179,8 @@ class _IStreamProxy(
2095
2179
  label=label,
2096
2180
  period=period,
2097
2181
  region=region,
2182
+ stack_account=stack_account,
2183
+ stack_region=stack_region,
2098
2184
  statistic=statistic,
2099
2185
  unit=unit,
2100
2186
  )
@@ -2111,6 +2197,8 @@ class _IStreamProxy(
2111
2197
  label: typing.Optional[builtins.str] = None,
2112
2198
  period: typing.Optional[_Duration_4839e8c3] = None,
2113
2199
  region: typing.Optional[builtins.str] = None,
2200
+ stack_account: typing.Optional[builtins.str] = None,
2201
+ stack_region: typing.Optional[builtins.str] = None,
2114
2202
  statistic: typing.Optional[builtins.str] = None,
2115
2203
  unit: typing.Optional[_Unit_61bc6f70] = None,
2116
2204
  ) -> _Metric_e396a4dc:
@@ -2128,6 +2216,8 @@ class _IStreamProxy(
2128
2216
  :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
2129
2217
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2130
2218
  :param region: Region which this metric comes from. Default: - Deployment region.
2219
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2220
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2131
2221
  :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
2132
2222
  :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
2133
2223
  '''
@@ -2138,6 +2228,8 @@ class _IStreamProxy(
2138
2228
  label=label,
2139
2229
  period=period,
2140
2230
  region=region,
2231
+ stack_account=stack_account,
2232
+ stack_region=stack_region,
2141
2233
  statistic=statistic,
2142
2234
  unit=unit,
2143
2235
  )
@@ -2154,6 +2246,8 @@ class _IStreamProxy(
2154
2246
  label: typing.Optional[builtins.str] = None,
2155
2247
  period: typing.Optional[_Duration_4839e8c3] = None,
2156
2248
  region: typing.Optional[builtins.str] = None,
2249
+ stack_account: typing.Optional[builtins.str] = None,
2250
+ stack_region: typing.Optional[builtins.str] = None,
2157
2251
  statistic: typing.Optional[builtins.str] = None,
2158
2252
  unit: typing.Optional[_Unit_61bc6f70] = None,
2159
2253
  ) -> _Metric_e396a4dc:
@@ -2171,6 +2265,8 @@ class _IStreamProxy(
2171
2265
  :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
2172
2266
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2173
2267
  :param region: Region which this metric comes from. Default: - Deployment region.
2268
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2269
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2174
2270
  :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
2175
2271
  :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
2176
2272
  '''
@@ -2181,6 +2277,8 @@ class _IStreamProxy(
2181
2277
  label=label,
2182
2278
  period=period,
2183
2279
  region=region,
2280
+ stack_account=stack_account,
2281
+ stack_region=stack_region,
2184
2282
  statistic=statistic,
2185
2283
  unit=unit,
2186
2284
  )
@@ -2197,6 +2295,8 @@ class _IStreamProxy(
2197
2295
  label: typing.Optional[builtins.str] = None,
2198
2296
  period: typing.Optional[_Duration_4839e8c3] = None,
2199
2297
  region: typing.Optional[builtins.str] = None,
2298
+ stack_account: typing.Optional[builtins.str] = None,
2299
+ stack_region: typing.Optional[builtins.str] = None,
2200
2300
  statistic: typing.Optional[builtins.str] = None,
2201
2301
  unit: typing.Optional[_Unit_61bc6f70] = None,
2202
2302
  ) -> _Metric_e396a4dc:
@@ -2214,6 +2314,8 @@ class _IStreamProxy(
2214
2314
  :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
2215
2315
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2216
2316
  :param region: Region which this metric comes from. Default: - Deployment region.
2317
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2318
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2217
2319
  :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
2218
2320
  :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
2219
2321
  '''
@@ -2224,6 +2326,8 @@ class _IStreamProxy(
2224
2326
  label=label,
2225
2327
  period=period,
2226
2328
  region=region,
2329
+ stack_account=stack_account,
2330
+ stack_region=stack_region,
2227
2331
  statistic=statistic,
2228
2332
  unit=unit,
2229
2333
  )
@@ -2240,6 +2344,8 @@ class _IStreamProxy(
2240
2344
  label: typing.Optional[builtins.str] = None,
2241
2345
  period: typing.Optional[_Duration_4839e8c3] = None,
2242
2346
  region: typing.Optional[builtins.str] = None,
2347
+ stack_account: typing.Optional[builtins.str] = None,
2348
+ stack_region: typing.Optional[builtins.str] = None,
2243
2349
  statistic: typing.Optional[builtins.str] = None,
2244
2350
  unit: typing.Optional[_Unit_61bc6f70] = None,
2245
2351
  ) -> _Metric_e396a4dc:
@@ -2253,6 +2359,8 @@ class _IStreamProxy(
2253
2359
  :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
2254
2360
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2255
2361
  :param region: Region which this metric comes from. Default: - Deployment region.
2362
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2363
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2256
2364
  :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
2257
2365
  :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
2258
2366
  '''
@@ -2263,6 +2371,8 @@ class _IStreamProxy(
2263
2371
  label=label,
2264
2372
  period=period,
2265
2373
  region=region,
2374
+ stack_account=stack_account,
2375
+ stack_region=stack_region,
2266
2376
  statistic=statistic,
2267
2377
  unit=unit,
2268
2378
  )
@@ -2279,6 +2389,8 @@ class _IStreamProxy(
2279
2389
  label: typing.Optional[builtins.str] = None,
2280
2390
  period: typing.Optional[_Duration_4839e8c3] = None,
2281
2391
  region: typing.Optional[builtins.str] = None,
2392
+ stack_account: typing.Optional[builtins.str] = None,
2393
+ stack_region: typing.Optional[builtins.str] = None,
2282
2394
  statistic: typing.Optional[builtins.str] = None,
2283
2395
  unit: typing.Optional[_Unit_61bc6f70] = None,
2284
2396
  ) -> _Metric_e396a4dc:
@@ -2292,6 +2404,8 @@ class _IStreamProxy(
2292
2404
  :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
2293
2405
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2294
2406
  :param region: Region which this metric comes from. Default: - Deployment region.
2407
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2408
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2295
2409
  :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
2296
2410
  :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
2297
2411
  '''
@@ -2302,6 +2416,8 @@ class _IStreamProxy(
2302
2416
  label=label,
2303
2417
  period=period,
2304
2418
  region=region,
2419
+ stack_account=stack_account,
2420
+ stack_region=stack_region,
2305
2421
  statistic=statistic,
2306
2422
  unit=unit,
2307
2423
  )
@@ -2318,6 +2434,8 @@ class _IStreamProxy(
2318
2434
  label: typing.Optional[builtins.str] = None,
2319
2435
  period: typing.Optional[_Duration_4839e8c3] = None,
2320
2436
  region: typing.Optional[builtins.str] = None,
2437
+ stack_account: typing.Optional[builtins.str] = None,
2438
+ stack_region: typing.Optional[builtins.str] = None,
2321
2439
  statistic: typing.Optional[builtins.str] = None,
2322
2440
  unit: typing.Optional[_Unit_61bc6f70] = None,
2323
2441
  ) -> _Metric_e396a4dc:
@@ -2335,6 +2453,8 @@ class _IStreamProxy(
2335
2453
  :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
2336
2454
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2337
2455
  :param region: Region which this metric comes from. Default: - Deployment region.
2456
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2457
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2338
2458
  :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
2339
2459
  :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
2340
2460
  '''
@@ -2345,6 +2465,8 @@ class _IStreamProxy(
2345
2465
  label=label,
2346
2466
  period=period,
2347
2467
  region=region,
2468
+ stack_account=stack_account,
2469
+ stack_region=stack_region,
2348
2470
  statistic=statistic,
2349
2471
  unit=unit,
2350
2472
  )
@@ -2361,6 +2483,8 @@ class _IStreamProxy(
2361
2483
  label: typing.Optional[builtins.str] = None,
2362
2484
  period: typing.Optional[_Duration_4839e8c3] = None,
2363
2485
  region: typing.Optional[builtins.str] = None,
2486
+ stack_account: typing.Optional[builtins.str] = None,
2487
+ stack_region: typing.Optional[builtins.str] = None,
2364
2488
  statistic: typing.Optional[builtins.str] = None,
2365
2489
  unit: typing.Optional[_Unit_61bc6f70] = None,
2366
2490
  ) -> _Metric_e396a4dc:
@@ -2378,6 +2502,8 @@ class _IStreamProxy(
2378
2502
  :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
2379
2503
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2380
2504
  :param region: Region which this metric comes from. Default: - Deployment region.
2505
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2506
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2381
2507
  :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
2382
2508
  :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
2383
2509
  '''
@@ -2388,6 +2514,8 @@ class _IStreamProxy(
2388
2514
  label=label,
2389
2515
  period=period,
2390
2516
  region=region,
2517
+ stack_account=stack_account,
2518
+ stack_region=stack_region,
2391
2519
  statistic=statistic,
2392
2520
  unit=unit,
2393
2521
  )
@@ -2404,6 +2532,8 @@ class _IStreamProxy(
2404
2532
  label: typing.Optional[builtins.str] = None,
2405
2533
  period: typing.Optional[_Duration_4839e8c3] = None,
2406
2534
  region: typing.Optional[builtins.str] = None,
2535
+ stack_account: typing.Optional[builtins.str] = None,
2536
+ stack_region: typing.Optional[builtins.str] = None,
2407
2537
  statistic: typing.Optional[builtins.str] = None,
2408
2538
  unit: typing.Optional[_Unit_61bc6f70] = None,
2409
2539
  ) -> _Metric_e396a4dc:
@@ -2417,6 +2547,8 @@ class _IStreamProxy(
2417
2547
  :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
2418
2548
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2419
2549
  :param region: Region which this metric comes from. Default: - Deployment region.
2550
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2551
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2420
2552
  :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
2421
2553
  :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
2422
2554
  '''
@@ -2427,6 +2559,8 @@ class _IStreamProxy(
2427
2559
  label=label,
2428
2560
  period=period,
2429
2561
  region=region,
2562
+ stack_account=stack_account,
2563
+ stack_region=stack_region,
2430
2564
  statistic=statistic,
2431
2565
  unit=unit,
2432
2566
  )
@@ -2443,6 +2577,8 @@ class _IStreamProxy(
2443
2577
  label: typing.Optional[builtins.str] = None,
2444
2578
  period: typing.Optional[_Duration_4839e8c3] = None,
2445
2579
  region: typing.Optional[builtins.str] = None,
2580
+ stack_account: typing.Optional[builtins.str] = None,
2581
+ stack_region: typing.Optional[builtins.str] = None,
2446
2582
  statistic: typing.Optional[builtins.str] = None,
2447
2583
  unit: typing.Optional[_Unit_61bc6f70] = None,
2448
2584
  ) -> _Metric_e396a4dc:
@@ -2456,6 +2592,8 @@ class _IStreamProxy(
2456
2592
  :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
2457
2593
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2458
2594
  :param region: Region which this metric comes from. Default: - Deployment region.
2595
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2596
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2459
2597
  :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
2460
2598
  :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
2461
2599
  '''
@@ -2466,6 +2604,8 @@ class _IStreamProxy(
2466
2604
  label=label,
2467
2605
  period=period,
2468
2606
  region=region,
2607
+ stack_account=stack_account,
2608
+ stack_region=stack_region,
2469
2609
  statistic=statistic,
2470
2610
  unit=unit,
2471
2611
  )
@@ -2482,6 +2622,8 @@ class _IStreamProxy(
2482
2622
  label: typing.Optional[builtins.str] = None,
2483
2623
  period: typing.Optional[_Duration_4839e8c3] = None,
2484
2624
  region: typing.Optional[builtins.str] = None,
2625
+ stack_account: typing.Optional[builtins.str] = None,
2626
+ stack_region: typing.Optional[builtins.str] = None,
2485
2627
  statistic: typing.Optional[builtins.str] = None,
2486
2628
  unit: typing.Optional[_Unit_61bc6f70] = None,
2487
2629
  ) -> _Metric_e396a4dc:
@@ -2495,6 +2637,8 @@ class _IStreamProxy(
2495
2637
  :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
2496
2638
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2497
2639
  :param region: Region which this metric comes from. Default: - Deployment region.
2640
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2641
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2498
2642
  :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
2499
2643
  :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
2500
2644
  '''
@@ -2505,6 +2649,8 @@ class _IStreamProxy(
2505
2649
  label=label,
2506
2650
  period=period,
2507
2651
  region=region,
2652
+ stack_account=stack_account,
2653
+ stack_region=stack_region,
2508
2654
  statistic=statistic,
2509
2655
  unit=unit,
2510
2656
  )
@@ -2521,6 +2667,8 @@ class _IStreamProxy(
2521
2667
  label: typing.Optional[builtins.str] = None,
2522
2668
  period: typing.Optional[_Duration_4839e8c3] = None,
2523
2669
  region: typing.Optional[builtins.str] = None,
2670
+ stack_account: typing.Optional[builtins.str] = None,
2671
+ stack_region: typing.Optional[builtins.str] = None,
2524
2672
  statistic: typing.Optional[builtins.str] = None,
2525
2673
  unit: typing.Optional[_Unit_61bc6f70] = None,
2526
2674
  ) -> _Metric_e396a4dc:
@@ -2536,6 +2684,8 @@ class _IStreamProxy(
2536
2684
  :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
2537
2685
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2538
2686
  :param region: Region which this metric comes from. Default: - Deployment region.
2687
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2688
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2539
2689
  :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
2540
2690
  :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
2541
2691
  '''
@@ -2546,6 +2696,8 @@ class _IStreamProxy(
2546
2696
  label=label,
2547
2697
  period=period,
2548
2698
  region=region,
2699
+ stack_account=stack_account,
2700
+ stack_region=stack_region,
2549
2701
  statistic=statistic,
2550
2702
  unit=unit,
2551
2703
  )
@@ -2562,6 +2714,8 @@ class _IStreamProxy(
2562
2714
  label: typing.Optional[builtins.str] = None,
2563
2715
  period: typing.Optional[_Duration_4839e8c3] = None,
2564
2716
  region: typing.Optional[builtins.str] = None,
2717
+ stack_account: typing.Optional[builtins.str] = None,
2718
+ stack_region: typing.Optional[builtins.str] = None,
2565
2719
  statistic: typing.Optional[builtins.str] = None,
2566
2720
  unit: typing.Optional[_Unit_61bc6f70] = None,
2567
2721
  ) -> _Metric_e396a4dc:
@@ -2575,6 +2729,8 @@ class _IStreamProxy(
2575
2729
  :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
2576
2730
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2577
2731
  :param region: Region which this metric comes from. Default: - Deployment region.
2732
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2733
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2578
2734
  :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
2579
2735
  :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
2580
2736
  '''
@@ -2585,6 +2741,8 @@ class _IStreamProxy(
2585
2741
  label=label,
2586
2742
  period=period,
2587
2743
  region=region,
2744
+ stack_account=stack_account,
2745
+ stack_region=stack_region,
2588
2746
  statistic=statistic,
2589
2747
  unit=unit,
2590
2748
  )
@@ -2601,6 +2759,8 @@ class _IStreamProxy(
2601
2759
  label: typing.Optional[builtins.str] = None,
2602
2760
  period: typing.Optional[_Duration_4839e8c3] = None,
2603
2761
  region: typing.Optional[builtins.str] = None,
2762
+ stack_account: typing.Optional[builtins.str] = None,
2763
+ stack_region: typing.Optional[builtins.str] = None,
2604
2764
  statistic: typing.Optional[builtins.str] = None,
2605
2765
  unit: typing.Optional[_Unit_61bc6f70] = None,
2606
2766
  ) -> _Metric_e396a4dc:
@@ -2614,6 +2774,8 @@ class _IStreamProxy(
2614
2774
  :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
2615
2775
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2616
2776
  :param region: Region which this metric comes from. Default: - Deployment region.
2777
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2778
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2617
2779
  :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
2618
2780
  :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
2619
2781
  '''
@@ -2624,6 +2786,8 @@ class _IStreamProxy(
2624
2786
  label=label,
2625
2787
  period=period,
2626
2788
  region=region,
2789
+ stack_account=stack_account,
2790
+ stack_region=stack_region,
2627
2791
  statistic=statistic,
2628
2792
  unit=unit,
2629
2793
  )
@@ -2640,6 +2804,8 @@ class _IStreamProxy(
2640
2804
  label: typing.Optional[builtins.str] = None,
2641
2805
  period: typing.Optional[_Duration_4839e8c3] = None,
2642
2806
  region: typing.Optional[builtins.str] = None,
2807
+ stack_account: typing.Optional[builtins.str] = None,
2808
+ stack_region: typing.Optional[builtins.str] = None,
2643
2809
  statistic: typing.Optional[builtins.str] = None,
2644
2810
  unit: typing.Optional[_Unit_61bc6f70] = None,
2645
2811
  ) -> _Metric_e396a4dc:
@@ -2653,6 +2819,8 @@ class _IStreamProxy(
2653
2819
  :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
2654
2820
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2655
2821
  :param region: Region which this metric comes from. Default: - Deployment region.
2822
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2823
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2656
2824
  :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
2657
2825
  :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
2658
2826
  '''
@@ -2663,6 +2831,8 @@ class _IStreamProxy(
2663
2831
  label=label,
2664
2832
  period=period,
2665
2833
  region=region,
2834
+ stack_account=stack_account,
2835
+ stack_region=stack_region,
2666
2836
  statistic=statistic,
2667
2837
  unit=unit,
2668
2838
  )
@@ -2679,6 +2849,8 @@ class _IStreamProxy(
2679
2849
  label: typing.Optional[builtins.str] = None,
2680
2850
  period: typing.Optional[_Duration_4839e8c3] = None,
2681
2851
  region: typing.Optional[builtins.str] = None,
2852
+ stack_account: typing.Optional[builtins.str] = None,
2853
+ stack_region: typing.Optional[builtins.str] = None,
2682
2854
  statistic: typing.Optional[builtins.str] = None,
2683
2855
  unit: typing.Optional[_Unit_61bc6f70] = None,
2684
2856
  ) -> _Metric_e396a4dc:
@@ -2692,6 +2864,8 @@ class _IStreamProxy(
2692
2864
  :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
2693
2865
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2694
2866
  :param region: Region which this metric comes from. Default: - Deployment region.
2867
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2868
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2695
2869
  :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
2696
2870
  :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
2697
2871
  '''
@@ -2702,6 +2876,8 @@ class _IStreamProxy(
2702
2876
  label=label,
2703
2877
  period=period,
2704
2878
  region=region,
2879
+ stack_account=stack_account,
2880
+ stack_region=stack_region,
2705
2881
  statistic=statistic,
2706
2882
  unit=unit,
2707
2883
  )
@@ -2718,6 +2894,8 @@ class _IStreamProxy(
2718
2894
  label: typing.Optional[builtins.str] = None,
2719
2895
  period: typing.Optional[_Duration_4839e8c3] = None,
2720
2896
  region: typing.Optional[builtins.str] = None,
2897
+ stack_account: typing.Optional[builtins.str] = None,
2898
+ stack_region: typing.Optional[builtins.str] = None,
2721
2899
  statistic: typing.Optional[builtins.str] = None,
2722
2900
  unit: typing.Optional[_Unit_61bc6f70] = None,
2723
2901
  ) -> _Metric_e396a4dc:
@@ -2731,6 +2909,8 @@ class _IStreamProxy(
2731
2909
  :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
2732
2910
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2733
2911
  :param region: Region which this metric comes from. Default: - Deployment region.
2912
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2913
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2734
2914
  :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
2735
2915
  :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
2736
2916
  '''
@@ -2741,6 +2921,8 @@ class _IStreamProxy(
2741
2921
  label=label,
2742
2922
  period=period,
2743
2923
  region=region,
2924
+ stack_account=stack_account,
2925
+ stack_region=stack_region,
2744
2926
  statistic=statistic,
2745
2927
  unit=unit,
2746
2928
  )
@@ -2757,6 +2939,8 @@ class _IStreamProxy(
2757
2939
  label: typing.Optional[builtins.str] = None,
2758
2940
  period: typing.Optional[_Duration_4839e8c3] = None,
2759
2941
  region: typing.Optional[builtins.str] = None,
2942
+ stack_account: typing.Optional[builtins.str] = None,
2943
+ stack_region: typing.Optional[builtins.str] = None,
2760
2944
  statistic: typing.Optional[builtins.str] = None,
2761
2945
  unit: typing.Optional[_Unit_61bc6f70] = None,
2762
2946
  ) -> _Metric_e396a4dc:
@@ -2773,6 +2957,8 @@ class _IStreamProxy(
2773
2957
  :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
2774
2958
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2775
2959
  :param region: Region which this metric comes from. Default: - Deployment region.
2960
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2961
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2776
2962
  :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
2777
2963
  :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
2778
2964
  '''
@@ -2783,6 +2969,8 @@ class _IStreamProxy(
2783
2969
  label=label,
2784
2970
  period=period,
2785
2971
  region=region,
2972
+ stack_account=stack_account,
2973
+ stack_region=stack_region,
2786
2974
  statistic=statistic,
2787
2975
  unit=unit,
2788
2976
  )
@@ -2799,6 +2987,8 @@ class _IStreamProxy(
2799
2987
  label: typing.Optional[builtins.str] = None,
2800
2988
  period: typing.Optional[_Duration_4839e8c3] = None,
2801
2989
  region: typing.Optional[builtins.str] = None,
2990
+ stack_account: typing.Optional[builtins.str] = None,
2991
+ stack_region: typing.Optional[builtins.str] = None,
2802
2992
  statistic: typing.Optional[builtins.str] = None,
2803
2993
  unit: typing.Optional[_Unit_61bc6f70] = None,
2804
2994
  ) -> _Metric_e396a4dc:
@@ -2821,6 +3011,8 @@ class _IStreamProxy(
2821
3011
  :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
2822
3012
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2823
3013
  :param region: Region which this metric comes from. Default: - Deployment region.
3014
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
3015
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2824
3016
  :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
2825
3017
  :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
2826
3018
  '''
@@ -2831,6 +3023,8 @@ class _IStreamProxy(
2831
3023
  label=label,
2832
3024
  period=period,
2833
3025
  region=region,
3026
+ stack_account=stack_account,
3027
+ stack_region=stack_region,
2834
3028
  statistic=statistic,
2835
3029
  unit=unit,
2836
3030
  )
@@ -2847,6 +3041,8 @@ class _IStreamProxy(
2847
3041
  label: typing.Optional[builtins.str] = None,
2848
3042
  period: typing.Optional[_Duration_4839e8c3] = None,
2849
3043
  region: typing.Optional[builtins.str] = None,
3044
+ stack_account: typing.Optional[builtins.str] = None,
3045
+ stack_region: typing.Optional[builtins.str] = None,
2850
3046
  statistic: typing.Optional[builtins.str] = None,
2851
3047
  unit: typing.Optional[_Unit_61bc6f70] = None,
2852
3048
  ) -> _Metric_e396a4dc:
@@ -2869,6 +3065,8 @@ class _IStreamProxy(
2869
3065
  :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
2870
3066
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2871
3067
  :param region: Region which this metric comes from. Default: - Deployment region.
3068
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
3069
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2872
3070
  :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
2873
3071
  :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
2874
3072
  '''
@@ -2879,6 +3077,8 @@ class _IStreamProxy(
2879
3077
  label=label,
2880
3078
  period=period,
2881
3079
  region=region,
3080
+ stack_account=stack_account,
3081
+ stack_region=stack_region,
2882
3082
  statistic=statistic,
2883
3083
  unit=unit,
2884
3084
  )
@@ -3236,6 +3436,8 @@ class Stream(
3236
3436
  label: typing.Optional[builtins.str] = None,
3237
3437
  period: typing.Optional[_Duration_4839e8c3] = None,
3238
3438
  region: typing.Optional[builtins.str] = None,
3439
+ stack_account: typing.Optional[builtins.str] = None,
3440
+ stack_region: typing.Optional[builtins.str] = None,
3239
3441
  statistic: typing.Optional[builtins.str] = None,
3240
3442
  unit: typing.Optional[_Unit_61bc6f70] = None,
3241
3443
  ) -> _Metric_e396a4dc:
@@ -3248,6 +3450,8 @@ class Stream(
3248
3450
  :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
3249
3451
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
3250
3452
  :param region: Region which this metric comes from. Default: - Deployment region.
3453
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
3454
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
3251
3455
  :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
3252
3456
  :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
3253
3457
  '''
@@ -3261,6 +3465,8 @@ class Stream(
3261
3465
  label=label,
3262
3466
  period=period,
3263
3467
  region=region,
3468
+ stack_account=stack_account,
3469
+ stack_region=stack_region,
3264
3470
  statistic=statistic,
3265
3471
  unit=unit,
3266
3472
  )
@@ -3277,6 +3483,8 @@ class Stream(
3277
3483
  label: typing.Optional[builtins.str] = None,
3278
3484
  period: typing.Optional[_Duration_4839e8c3] = None,
3279
3485
  region: typing.Optional[builtins.str] = None,
3486
+ stack_account: typing.Optional[builtins.str] = None,
3487
+ stack_region: typing.Optional[builtins.str] = None,
3280
3488
  statistic: typing.Optional[builtins.str] = None,
3281
3489
  unit: typing.Optional[_Unit_61bc6f70] = None,
3282
3490
  ) -> _Metric_e396a4dc:
@@ -3295,6 +3503,8 @@ class Stream(
3295
3503
  :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
3296
3504
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
3297
3505
  :param region: Region which this metric comes from. Default: - Deployment region.
3506
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
3507
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
3298
3508
  :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
3299
3509
  :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
3300
3510
  '''
@@ -3305,6 +3515,8 @@ class Stream(
3305
3515
  label=label,
3306
3516
  period=period,
3307
3517
  region=region,
3518
+ stack_account=stack_account,
3519
+ stack_region=stack_region,
3308
3520
  statistic=statistic,
3309
3521
  unit=unit,
3310
3522
  )
@@ -3321,6 +3533,8 @@ class Stream(
3321
3533
  label: typing.Optional[builtins.str] = None,
3322
3534
  period: typing.Optional[_Duration_4839e8c3] = None,
3323
3535
  region: typing.Optional[builtins.str] = None,
3536
+ stack_account: typing.Optional[builtins.str] = None,
3537
+ stack_region: typing.Optional[builtins.str] = None,
3324
3538
  statistic: typing.Optional[builtins.str] = None,
3325
3539
  unit: typing.Optional[_Unit_61bc6f70] = None,
3326
3540
  ) -> _Metric_e396a4dc:
@@ -3338,6 +3552,8 @@ class Stream(
3338
3552
  :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
3339
3553
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
3340
3554
  :param region: Region which this metric comes from. Default: - Deployment region.
3555
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
3556
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
3341
3557
  :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
3342
3558
  :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
3343
3559
  '''
@@ -3348,6 +3564,8 @@ class Stream(
3348
3564
  label=label,
3349
3565
  period=period,
3350
3566
  region=region,
3567
+ stack_account=stack_account,
3568
+ stack_region=stack_region,
3351
3569
  statistic=statistic,
3352
3570
  unit=unit,
3353
3571
  )
@@ -3364,6 +3582,8 @@ class Stream(
3364
3582
  label: typing.Optional[builtins.str] = None,
3365
3583
  period: typing.Optional[_Duration_4839e8c3] = None,
3366
3584
  region: typing.Optional[builtins.str] = None,
3585
+ stack_account: typing.Optional[builtins.str] = None,
3586
+ stack_region: typing.Optional[builtins.str] = None,
3367
3587
  statistic: typing.Optional[builtins.str] = None,
3368
3588
  unit: typing.Optional[_Unit_61bc6f70] = None,
3369
3589
  ) -> _Metric_e396a4dc:
@@ -3381,6 +3601,8 @@ class Stream(
3381
3601
  :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
3382
3602
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
3383
3603
  :param region: Region which this metric comes from. Default: - Deployment region.
3604
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
3605
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
3384
3606
  :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
3385
3607
  :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
3386
3608
  '''
@@ -3391,6 +3613,8 @@ class Stream(
3391
3613
  label=label,
3392
3614
  period=period,
3393
3615
  region=region,
3616
+ stack_account=stack_account,
3617
+ stack_region=stack_region,
3394
3618
  statistic=statistic,
3395
3619
  unit=unit,
3396
3620
  )
@@ -3407,6 +3631,8 @@ class Stream(
3407
3631
  label: typing.Optional[builtins.str] = None,
3408
3632
  period: typing.Optional[_Duration_4839e8c3] = None,
3409
3633
  region: typing.Optional[builtins.str] = None,
3634
+ stack_account: typing.Optional[builtins.str] = None,
3635
+ stack_region: typing.Optional[builtins.str] = None,
3410
3636
  statistic: typing.Optional[builtins.str] = None,
3411
3637
  unit: typing.Optional[_Unit_61bc6f70] = None,
3412
3638
  ) -> _Metric_e396a4dc:
@@ -3420,6 +3646,8 @@ class Stream(
3420
3646
  :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
3421
3647
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
3422
3648
  :param region: Region which this metric comes from. Default: - Deployment region.
3649
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
3650
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
3423
3651
  :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
3424
3652
  :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
3425
3653
  '''
@@ -3430,6 +3658,8 @@ class Stream(
3430
3658
  label=label,
3431
3659
  period=period,
3432
3660
  region=region,
3661
+ stack_account=stack_account,
3662
+ stack_region=stack_region,
3433
3663
  statistic=statistic,
3434
3664
  unit=unit,
3435
3665
  )
@@ -3446,6 +3676,8 @@ class Stream(
3446
3676
  label: typing.Optional[builtins.str] = None,
3447
3677
  period: typing.Optional[_Duration_4839e8c3] = None,
3448
3678
  region: typing.Optional[builtins.str] = None,
3679
+ stack_account: typing.Optional[builtins.str] = None,
3680
+ stack_region: typing.Optional[builtins.str] = None,
3449
3681
  statistic: typing.Optional[builtins.str] = None,
3450
3682
  unit: typing.Optional[_Unit_61bc6f70] = None,
3451
3683
  ) -> _Metric_e396a4dc:
@@ -3459,6 +3691,8 @@ class Stream(
3459
3691
  :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
3460
3692
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
3461
3693
  :param region: Region which this metric comes from. Default: - Deployment region.
3694
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
3695
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
3462
3696
  :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
3463
3697
  :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
3464
3698
  '''
@@ -3469,6 +3703,8 @@ class Stream(
3469
3703
  label=label,
3470
3704
  period=period,
3471
3705
  region=region,
3706
+ stack_account=stack_account,
3707
+ stack_region=stack_region,
3472
3708
  statistic=statistic,
3473
3709
  unit=unit,
3474
3710
  )
@@ -3485,6 +3721,8 @@ class Stream(
3485
3721
  label: typing.Optional[builtins.str] = None,
3486
3722
  period: typing.Optional[_Duration_4839e8c3] = None,
3487
3723
  region: typing.Optional[builtins.str] = None,
3724
+ stack_account: typing.Optional[builtins.str] = None,
3725
+ stack_region: typing.Optional[builtins.str] = None,
3488
3726
  statistic: typing.Optional[builtins.str] = None,
3489
3727
  unit: typing.Optional[_Unit_61bc6f70] = None,
3490
3728
  ) -> _Metric_e396a4dc:
@@ -3502,6 +3740,8 @@ class Stream(
3502
3740
  :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
3503
3741
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
3504
3742
  :param region: Region which this metric comes from. Default: - Deployment region.
3743
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
3744
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
3505
3745
  :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
3506
3746
  :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
3507
3747
  '''
@@ -3512,6 +3752,8 @@ class Stream(
3512
3752
  label=label,
3513
3753
  period=period,
3514
3754
  region=region,
3755
+ stack_account=stack_account,
3756
+ stack_region=stack_region,
3515
3757
  statistic=statistic,
3516
3758
  unit=unit,
3517
3759
  )
@@ -3528,6 +3770,8 @@ class Stream(
3528
3770
  label: typing.Optional[builtins.str] = None,
3529
3771
  period: typing.Optional[_Duration_4839e8c3] = None,
3530
3772
  region: typing.Optional[builtins.str] = None,
3773
+ stack_account: typing.Optional[builtins.str] = None,
3774
+ stack_region: typing.Optional[builtins.str] = None,
3531
3775
  statistic: typing.Optional[builtins.str] = None,
3532
3776
  unit: typing.Optional[_Unit_61bc6f70] = None,
3533
3777
  ) -> _Metric_e396a4dc:
@@ -3545,6 +3789,8 @@ class Stream(
3545
3789
  :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
3546
3790
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
3547
3791
  :param region: Region which this metric comes from. Default: - Deployment region.
3792
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
3793
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
3548
3794
  :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
3549
3795
  :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
3550
3796
  '''
@@ -3555,6 +3801,8 @@ class Stream(
3555
3801
  label=label,
3556
3802
  period=period,
3557
3803
  region=region,
3804
+ stack_account=stack_account,
3805
+ stack_region=stack_region,
3558
3806
  statistic=statistic,
3559
3807
  unit=unit,
3560
3808
  )
@@ -3571,6 +3819,8 @@ class Stream(
3571
3819
  label: typing.Optional[builtins.str] = None,
3572
3820
  period: typing.Optional[_Duration_4839e8c3] = None,
3573
3821
  region: typing.Optional[builtins.str] = None,
3822
+ stack_account: typing.Optional[builtins.str] = None,
3823
+ stack_region: typing.Optional[builtins.str] = None,
3574
3824
  statistic: typing.Optional[builtins.str] = None,
3575
3825
  unit: typing.Optional[_Unit_61bc6f70] = None,
3576
3826
  ) -> _Metric_e396a4dc:
@@ -3584,6 +3834,8 @@ class Stream(
3584
3834
  :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
3585
3835
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
3586
3836
  :param region: Region which this metric comes from. Default: - Deployment region.
3837
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
3838
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
3587
3839
  :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
3588
3840
  :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
3589
3841
  '''
@@ -3594,6 +3846,8 @@ class Stream(
3594
3846
  label=label,
3595
3847
  period=period,
3596
3848
  region=region,
3849
+ stack_account=stack_account,
3850
+ stack_region=stack_region,
3597
3851
  statistic=statistic,
3598
3852
  unit=unit,
3599
3853
  )
@@ -3610,6 +3864,8 @@ class Stream(
3610
3864
  label: typing.Optional[builtins.str] = None,
3611
3865
  period: typing.Optional[_Duration_4839e8c3] = None,
3612
3866
  region: typing.Optional[builtins.str] = None,
3867
+ stack_account: typing.Optional[builtins.str] = None,
3868
+ stack_region: typing.Optional[builtins.str] = None,
3613
3869
  statistic: typing.Optional[builtins.str] = None,
3614
3870
  unit: typing.Optional[_Unit_61bc6f70] = None,
3615
3871
  ) -> _Metric_e396a4dc:
@@ -3623,6 +3879,8 @@ class Stream(
3623
3879
  :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
3624
3880
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
3625
3881
  :param region: Region which this metric comes from. Default: - Deployment region.
3882
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
3883
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
3626
3884
  :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
3627
3885
  :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
3628
3886
  '''
@@ -3633,6 +3891,8 @@ class Stream(
3633
3891
  label=label,
3634
3892
  period=period,
3635
3893
  region=region,
3894
+ stack_account=stack_account,
3895
+ stack_region=stack_region,
3636
3896
  statistic=statistic,
3637
3897
  unit=unit,
3638
3898
  )
@@ -3649,6 +3909,8 @@ class Stream(
3649
3909
  label: typing.Optional[builtins.str] = None,
3650
3910
  period: typing.Optional[_Duration_4839e8c3] = None,
3651
3911
  region: typing.Optional[builtins.str] = None,
3912
+ stack_account: typing.Optional[builtins.str] = None,
3913
+ stack_region: typing.Optional[builtins.str] = None,
3652
3914
  statistic: typing.Optional[builtins.str] = None,
3653
3915
  unit: typing.Optional[_Unit_61bc6f70] = None,
3654
3916
  ) -> _Metric_e396a4dc:
@@ -3662,6 +3924,8 @@ class Stream(
3662
3924
  :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
3663
3925
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
3664
3926
  :param region: Region which this metric comes from. Default: - Deployment region.
3927
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
3928
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
3665
3929
  :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
3666
3930
  :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
3667
3931
  '''
@@ -3672,6 +3936,8 @@ class Stream(
3672
3936
  label=label,
3673
3937
  period=period,
3674
3938
  region=region,
3939
+ stack_account=stack_account,
3940
+ stack_region=stack_region,
3675
3941
  statistic=statistic,
3676
3942
  unit=unit,
3677
3943
  )
@@ -3688,6 +3954,8 @@ class Stream(
3688
3954
  label: typing.Optional[builtins.str] = None,
3689
3955
  period: typing.Optional[_Duration_4839e8c3] = None,
3690
3956
  region: typing.Optional[builtins.str] = None,
3957
+ stack_account: typing.Optional[builtins.str] = None,
3958
+ stack_region: typing.Optional[builtins.str] = None,
3691
3959
  statistic: typing.Optional[builtins.str] = None,
3692
3960
  unit: typing.Optional[_Unit_61bc6f70] = None,
3693
3961
  ) -> _Metric_e396a4dc:
@@ -3703,6 +3971,8 @@ class Stream(
3703
3971
  :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
3704
3972
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
3705
3973
  :param region: Region which this metric comes from. Default: - Deployment region.
3974
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
3975
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
3706
3976
  :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
3707
3977
  :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
3708
3978
  '''
@@ -3713,6 +3983,8 @@ class Stream(
3713
3983
  label=label,
3714
3984
  period=period,
3715
3985
  region=region,
3986
+ stack_account=stack_account,
3987
+ stack_region=stack_region,
3716
3988
  statistic=statistic,
3717
3989
  unit=unit,
3718
3990
  )
@@ -3729,6 +4001,8 @@ class Stream(
3729
4001
  label: typing.Optional[builtins.str] = None,
3730
4002
  period: typing.Optional[_Duration_4839e8c3] = None,
3731
4003
  region: typing.Optional[builtins.str] = None,
4004
+ stack_account: typing.Optional[builtins.str] = None,
4005
+ stack_region: typing.Optional[builtins.str] = None,
3732
4006
  statistic: typing.Optional[builtins.str] = None,
3733
4007
  unit: typing.Optional[_Unit_61bc6f70] = None,
3734
4008
  ) -> _Metric_e396a4dc:
@@ -3742,6 +4016,8 @@ class Stream(
3742
4016
  :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
3743
4017
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
3744
4018
  :param region: Region which this metric comes from. Default: - Deployment region.
4019
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
4020
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
3745
4021
  :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
3746
4022
  :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
3747
4023
  '''
@@ -3752,6 +4028,8 @@ class Stream(
3752
4028
  label=label,
3753
4029
  period=period,
3754
4030
  region=region,
4031
+ stack_account=stack_account,
4032
+ stack_region=stack_region,
3755
4033
  statistic=statistic,
3756
4034
  unit=unit,
3757
4035
  )
@@ -3768,6 +4046,8 @@ class Stream(
3768
4046
  label: typing.Optional[builtins.str] = None,
3769
4047
  period: typing.Optional[_Duration_4839e8c3] = None,
3770
4048
  region: typing.Optional[builtins.str] = None,
4049
+ stack_account: typing.Optional[builtins.str] = None,
4050
+ stack_region: typing.Optional[builtins.str] = None,
3771
4051
  statistic: typing.Optional[builtins.str] = None,
3772
4052
  unit: typing.Optional[_Unit_61bc6f70] = None,
3773
4053
  ) -> _Metric_e396a4dc:
@@ -3781,6 +4061,8 @@ class Stream(
3781
4061
  :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
3782
4062
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
3783
4063
  :param region: Region which this metric comes from. Default: - Deployment region.
4064
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
4065
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
3784
4066
  :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
3785
4067
  :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
3786
4068
  '''
@@ -3791,6 +4073,8 @@ class Stream(
3791
4073
  label=label,
3792
4074
  period=period,
3793
4075
  region=region,
4076
+ stack_account=stack_account,
4077
+ stack_region=stack_region,
3794
4078
  statistic=statistic,
3795
4079
  unit=unit,
3796
4080
  )
@@ -3807,6 +4091,8 @@ class Stream(
3807
4091
  label: typing.Optional[builtins.str] = None,
3808
4092
  period: typing.Optional[_Duration_4839e8c3] = None,
3809
4093
  region: typing.Optional[builtins.str] = None,
4094
+ stack_account: typing.Optional[builtins.str] = None,
4095
+ stack_region: typing.Optional[builtins.str] = None,
3810
4096
  statistic: typing.Optional[builtins.str] = None,
3811
4097
  unit: typing.Optional[_Unit_61bc6f70] = None,
3812
4098
  ) -> _Metric_e396a4dc:
@@ -3820,6 +4106,8 @@ class Stream(
3820
4106
  :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
3821
4107
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
3822
4108
  :param region: Region which this metric comes from. Default: - Deployment region.
4109
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
4110
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
3823
4111
  :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
3824
4112
  :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
3825
4113
  '''
@@ -3830,6 +4118,8 @@ class Stream(
3830
4118
  label=label,
3831
4119
  period=period,
3832
4120
  region=region,
4121
+ stack_account=stack_account,
4122
+ stack_region=stack_region,
3833
4123
  statistic=statistic,
3834
4124
  unit=unit,
3835
4125
  )
@@ -3846,6 +4136,8 @@ class Stream(
3846
4136
  label: typing.Optional[builtins.str] = None,
3847
4137
  period: typing.Optional[_Duration_4839e8c3] = None,
3848
4138
  region: typing.Optional[builtins.str] = None,
4139
+ stack_account: typing.Optional[builtins.str] = None,
4140
+ stack_region: typing.Optional[builtins.str] = None,
3849
4141
  statistic: typing.Optional[builtins.str] = None,
3850
4142
  unit: typing.Optional[_Unit_61bc6f70] = None,
3851
4143
  ) -> _Metric_e396a4dc:
@@ -3859,6 +4151,8 @@ class Stream(
3859
4151
  :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
3860
4152
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
3861
4153
  :param region: Region which this metric comes from. Default: - Deployment region.
4154
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
4155
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
3862
4156
  :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
3863
4157
  :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
3864
4158
  '''
@@ -3869,6 +4163,8 @@ class Stream(
3869
4163
  label=label,
3870
4164
  period=period,
3871
4165
  region=region,
4166
+ stack_account=stack_account,
4167
+ stack_region=stack_region,
3872
4168
  statistic=statistic,
3873
4169
  unit=unit,
3874
4170
  )
@@ -3885,6 +4181,8 @@ class Stream(
3885
4181
  label: typing.Optional[builtins.str] = None,
3886
4182
  period: typing.Optional[_Duration_4839e8c3] = None,
3887
4183
  region: typing.Optional[builtins.str] = None,
4184
+ stack_account: typing.Optional[builtins.str] = None,
4185
+ stack_region: typing.Optional[builtins.str] = None,
3888
4186
  statistic: typing.Optional[builtins.str] = None,
3889
4187
  unit: typing.Optional[_Unit_61bc6f70] = None,
3890
4188
  ) -> _Metric_e396a4dc:
@@ -3898,6 +4196,8 @@ class Stream(
3898
4196
  :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
3899
4197
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
3900
4198
  :param region: Region which this metric comes from. Default: - Deployment region.
4199
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
4200
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
3901
4201
  :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
3902
4202
  :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
3903
4203
  '''
@@ -3908,6 +4208,8 @@ class Stream(
3908
4208
  label=label,
3909
4209
  period=period,
3910
4210
  region=region,
4211
+ stack_account=stack_account,
4212
+ stack_region=stack_region,
3911
4213
  statistic=statistic,
3912
4214
  unit=unit,
3913
4215
  )
@@ -3924,6 +4226,8 @@ class Stream(
3924
4226
  label: typing.Optional[builtins.str] = None,
3925
4227
  period: typing.Optional[_Duration_4839e8c3] = None,
3926
4228
  region: typing.Optional[builtins.str] = None,
4229
+ stack_account: typing.Optional[builtins.str] = None,
4230
+ stack_region: typing.Optional[builtins.str] = None,
3927
4231
  statistic: typing.Optional[builtins.str] = None,
3928
4232
  unit: typing.Optional[_Unit_61bc6f70] = None,
3929
4233
  ) -> _Metric_e396a4dc:
@@ -3940,6 +4244,8 @@ class Stream(
3940
4244
  :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
3941
4245
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
3942
4246
  :param region: Region which this metric comes from. Default: - Deployment region.
4247
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
4248
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
3943
4249
  :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
3944
4250
  :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
3945
4251
  '''
@@ -3950,6 +4256,8 @@ class Stream(
3950
4256
  label=label,
3951
4257
  period=period,
3952
4258
  region=region,
4259
+ stack_account=stack_account,
4260
+ stack_region=stack_region,
3953
4261
  statistic=statistic,
3954
4262
  unit=unit,
3955
4263
  )
@@ -3966,6 +4274,8 @@ class Stream(
3966
4274
  label: typing.Optional[builtins.str] = None,
3967
4275
  period: typing.Optional[_Duration_4839e8c3] = None,
3968
4276
  region: typing.Optional[builtins.str] = None,
4277
+ stack_account: typing.Optional[builtins.str] = None,
4278
+ stack_region: typing.Optional[builtins.str] = None,
3969
4279
  statistic: typing.Optional[builtins.str] = None,
3970
4280
  unit: typing.Optional[_Unit_61bc6f70] = None,
3971
4281
  ) -> _Metric_e396a4dc:
@@ -3988,6 +4298,8 @@ class Stream(
3988
4298
  :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
3989
4299
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
3990
4300
  :param region: Region which this metric comes from. Default: - Deployment region.
4301
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
4302
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
3991
4303
  :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
3992
4304
  :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
3993
4305
  '''
@@ -3998,6 +4310,8 @@ class Stream(
3998
4310
  label=label,
3999
4311
  period=period,
4000
4312
  region=region,
4313
+ stack_account=stack_account,
4314
+ stack_region=stack_region,
4001
4315
  statistic=statistic,
4002
4316
  unit=unit,
4003
4317
  )
@@ -4014,6 +4328,8 @@ class Stream(
4014
4328
  label: typing.Optional[builtins.str] = None,
4015
4329
  period: typing.Optional[_Duration_4839e8c3] = None,
4016
4330
  region: typing.Optional[builtins.str] = None,
4331
+ stack_account: typing.Optional[builtins.str] = None,
4332
+ stack_region: typing.Optional[builtins.str] = None,
4017
4333
  statistic: typing.Optional[builtins.str] = None,
4018
4334
  unit: typing.Optional[_Unit_61bc6f70] = None,
4019
4335
  ) -> _Metric_e396a4dc:
@@ -4036,6 +4352,8 @@ class Stream(
4036
4352
  :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
4037
4353
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4038
4354
  :param region: Region which this metric comes from. Default: - Deployment region.
4355
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
4356
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4039
4357
  :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
4040
4358
  :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
4041
4359
  '''
@@ -4046,6 +4364,8 @@ class Stream(
4046
4364
  label=label,
4047
4365
  period=period,
4048
4366
  region=region,
4367
+ stack_account=stack_account,
4368
+ stack_region=stack_region,
4049
4369
  statistic=statistic,
4050
4370
  unit=unit,
4051
4371
  )
@@ -4586,6 +4906,8 @@ def _typecheckingstub__bd578f4ca8facd0463f7e56d3d2cea7e56ba9ad274338af8f84fa661d
4586
4906
  label: typing.Optional[builtins.str] = None,
4587
4907
  period: typing.Optional[_Duration_4839e8c3] = None,
4588
4908
  region: typing.Optional[builtins.str] = None,
4909
+ stack_account: typing.Optional[builtins.str] = None,
4910
+ stack_region: typing.Optional[builtins.str] = None,
4589
4911
  statistic: typing.Optional[builtins.str] = None,
4590
4912
  unit: typing.Optional[_Unit_61bc6f70] = None,
4591
4913
  ) -> None:
@@ -4683,6 +5005,8 @@ def _typecheckingstub__c2a600a35f466b97cb6589291e1c140f381da66a0d5026de6030101a8
4683
5005
  label: typing.Optional[builtins.str] = None,
4684
5006
  period: typing.Optional[_Duration_4839e8c3] = None,
4685
5007
  region: typing.Optional[builtins.str] = None,
5008
+ stack_account: typing.Optional[builtins.str] = None,
5009
+ stack_region: typing.Optional[builtins.str] = None,
4686
5010
  statistic: typing.Optional[builtins.str] = None,
4687
5011
  unit: typing.Optional[_Unit_61bc6f70] = None,
4688
5012
  ) -> None: