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

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

Potentially problematic release.


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

Files changed (36) hide show
  1. aws_cdk/_jsii/__init__.py +1 -1
  2. aws_cdk/_jsii/{aws-cdk-lib@2.174.1.jsii.tgz → aws-cdk-lib@2.175.0.jsii.tgz} +0 -0
  3. aws_cdk/aws_apigateway/__init__.py +164 -0
  4. aws_cdk/aws_apigatewayv2/__init__.py +248 -0
  5. aws_cdk/aws_applicationautoscaling/__init__.py +6 -3
  6. aws_cdk/aws_autoscaling/__init__.py +8 -8
  7. aws_cdk/aws_certificatemanager/__init__.py +28 -0
  8. aws_cdk/aws_chatbot/__init__.py +28 -0
  9. aws_cdk/aws_cloudfront/__init__.py +92 -0
  10. aws_cdk/aws_cloudfront/experimental/__init__.py +32 -0
  11. aws_cdk/aws_cloudwatch/__init__.py +146 -0
  12. aws_cdk/aws_codebuild/__init__.py +84 -0
  13. aws_cdk/aws_dynamodb/__init__.py +300 -0
  14. aws_cdk/aws_ec2/__init__.py +97 -0
  15. aws_cdk/aws_ecs/__init__.py +351 -110
  16. aws_cdk/aws_ecs_patterns/__init__.py +77 -42
  17. aws_cdk/aws_elasticloadbalancing/__init__.py +3 -6
  18. aws_cdk/aws_elasticloadbalancingv2/__init__.py +732 -7
  19. aws_cdk/aws_elasticsearch/__init__.py +260 -0
  20. aws_cdk/aws_kinesis/__init__.py +324 -0
  21. aws_cdk/aws_kms/__init__.py +197 -0
  22. aws_cdk/aws_lambda/__init__.py +144 -0
  23. aws_cdk/aws_logs/__init__.py +58 -0
  24. aws_cdk/aws_opensearchservice/__init__.py +260 -0
  25. aws_cdk/aws_rds/__init__.py +384 -0
  26. aws_cdk/aws_sns/__init__.py +164 -0
  27. aws_cdk/aws_sqs/__init__.py +164 -0
  28. aws_cdk/aws_stepfunctions/__init__.py +288 -0
  29. aws_cdk/aws_synthetics/__init__.py +18 -0
  30. aws_cdk/cx_api/__init__.py +42 -0
  31. {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.0.dist-info}/METADATA +1 -1
  32. {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.0.dist-info}/RECORD +36 -36
  33. {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.0.dist-info}/LICENSE +0 -0
  34. {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.0.dist-info}/NOTICE +0 -0
  35. {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.0.dist-info}/WHEEL +0 -0
  36. {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.0.dist-info}/top_level.txt +0 -0
@@ -8159,6 +8159,8 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
8159
8159
  label: typing.Optional[builtins.str] = None,
8160
8160
  period: typing.Optional[_Duration_4839e8c3] = None,
8161
8161
  region: typing.Optional[builtins.str] = None,
8162
+ stack_account: typing.Optional[builtins.str] = None,
8163
+ stack_region: typing.Optional[builtins.str] = None,
8162
8164
  statistic: typing.Optional[builtins.str] = None,
8163
8165
  unit: typing.Optional[_Unit_61bc6f70] = None,
8164
8166
  ) -> _Metric_e396a4dc:
@@ -8171,6 +8173,8 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
8171
8173
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
8172
8174
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
8173
8175
  :param region: Region which this metric comes from. Default: - Deployment region.
8176
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
8177
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
8174
8178
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
8175
8179
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
8176
8180
  '''
@@ -8186,6 +8190,8 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
8186
8190
  label: typing.Optional[builtins.str] = None,
8187
8191
  period: typing.Optional[_Duration_4839e8c3] = None,
8188
8192
  region: typing.Optional[builtins.str] = None,
8193
+ stack_account: typing.Optional[builtins.str] = None,
8194
+ stack_region: typing.Optional[builtins.str] = None,
8189
8195
  statistic: typing.Optional[builtins.str] = None,
8190
8196
  unit: typing.Optional[_Unit_61bc6f70] = None,
8191
8197
  ) -> _Metric_e396a4dc:
@@ -8197,6 +8203,8 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
8197
8203
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
8198
8204
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
8199
8205
  :param region: Region which this metric comes from. Default: - Deployment region.
8206
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
8207
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
8200
8208
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
8201
8209
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
8202
8210
  '''
@@ -8212,6 +8220,8 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
8212
8220
  label: typing.Optional[builtins.str] = None,
8213
8221
  period: typing.Optional[_Duration_4839e8c3] = None,
8214
8222
  region: typing.Optional[builtins.str] = None,
8223
+ stack_account: typing.Optional[builtins.str] = None,
8224
+ stack_region: typing.Optional[builtins.str] = None,
8215
8225
  statistic: typing.Optional[builtins.str] = None,
8216
8226
  unit: typing.Optional[_Unit_61bc6f70] = None,
8217
8227
  ) -> _Metric_e396a4dc:
@@ -8223,6 +8233,8 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
8223
8233
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
8224
8234
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
8225
8235
  :param region: Region which this metric comes from. Default: - Deployment region.
8236
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
8237
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
8226
8238
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
8227
8239
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
8228
8240
  '''
@@ -8238,6 +8250,8 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
8238
8250
  label: typing.Optional[builtins.str] = None,
8239
8251
  period: typing.Optional[_Duration_4839e8c3] = None,
8240
8252
  region: typing.Optional[builtins.str] = None,
8253
+ stack_account: typing.Optional[builtins.str] = None,
8254
+ stack_region: typing.Optional[builtins.str] = None,
8241
8255
  statistic: typing.Optional[builtins.str] = None,
8242
8256
  unit: typing.Optional[_Unit_61bc6f70] = None,
8243
8257
  ) -> _Metric_e396a4dc:
@@ -8249,6 +8263,8 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
8249
8263
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
8250
8264
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
8251
8265
  :param region: Region which this metric comes from. Default: - Deployment region.
8266
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
8267
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
8252
8268
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
8253
8269
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
8254
8270
  '''
@@ -8264,6 +8280,8 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
8264
8280
  label: typing.Optional[builtins.str] = None,
8265
8281
  period: typing.Optional[_Duration_4839e8c3] = None,
8266
8282
  region: typing.Optional[builtins.str] = None,
8283
+ stack_account: typing.Optional[builtins.str] = None,
8284
+ stack_region: typing.Optional[builtins.str] = None,
8267
8285
  statistic: typing.Optional[builtins.str] = None,
8268
8286
  unit: typing.Optional[_Unit_61bc6f70] = None,
8269
8287
  ) -> _Metric_e396a4dc:
@@ -8275,6 +8293,8 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
8275
8293
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
8276
8294
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
8277
8295
  :param region: Region which this metric comes from. Default: - Deployment region.
8296
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
8297
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
8278
8298
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
8279
8299
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
8280
8300
  '''
@@ -8291,6 +8311,8 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
8291
8311
  label: typing.Optional[builtins.str] = None,
8292
8312
  period: typing.Optional[_Duration_4839e8c3] = None,
8293
8313
  region: typing.Optional[builtins.str] = None,
8314
+ stack_account: typing.Optional[builtins.str] = None,
8315
+ stack_region: typing.Optional[builtins.str] = None,
8294
8316
  statistic: typing.Optional[builtins.str] = None,
8295
8317
  unit: typing.Optional[_Unit_61bc6f70] = None,
8296
8318
  ) -> _IMetric_c7fd29de:
@@ -8303,6 +8325,8 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
8303
8325
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
8304
8326
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
8305
8327
  :param region: Region which this metric comes from. Default: - Deployment region.
8328
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
8329
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
8306
8330
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
8307
8331
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
8308
8332
  '''
@@ -8318,6 +8342,8 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
8318
8342
  label: typing.Optional[builtins.str] = None,
8319
8343
  period: typing.Optional[_Duration_4839e8c3] = None,
8320
8344
  region: typing.Optional[builtins.str] = None,
8345
+ stack_account: typing.Optional[builtins.str] = None,
8346
+ stack_region: typing.Optional[builtins.str] = None,
8321
8347
  statistic: typing.Optional[builtins.str] = None,
8322
8348
  unit: typing.Optional[_Unit_61bc6f70] = None,
8323
8349
  ) -> _Metric_e396a4dc:
@@ -8329,6 +8355,8 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
8329
8355
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
8330
8356
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
8331
8357
  :param region: Region which this metric comes from. Default: - Deployment region.
8358
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
8359
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
8332
8360
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
8333
8361
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
8334
8362
 
@@ -8349,6 +8377,8 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
8349
8377
  label: typing.Optional[builtins.str] = None,
8350
8378
  period: typing.Optional[_Duration_4839e8c3] = None,
8351
8379
  region: typing.Optional[builtins.str] = None,
8380
+ stack_account: typing.Optional[builtins.str] = None,
8381
+ stack_region: typing.Optional[builtins.str] = None,
8352
8382
  statistic: typing.Optional[builtins.str] = None,
8353
8383
  unit: typing.Optional[_Unit_61bc6f70] = None,
8354
8384
  ) -> _IMetric_c7fd29de:
@@ -8361,6 +8391,8 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
8361
8391
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
8362
8392
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
8363
8393
  :param region: Region which this metric comes from. Default: - Deployment region.
8394
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
8395
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
8364
8396
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
8365
8397
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
8366
8398
  '''
@@ -8376,6 +8408,8 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
8376
8408
  label: typing.Optional[builtins.str] = None,
8377
8409
  period: typing.Optional[_Duration_4839e8c3] = None,
8378
8410
  region: typing.Optional[builtins.str] = None,
8411
+ stack_account: typing.Optional[builtins.str] = None,
8412
+ stack_region: typing.Optional[builtins.str] = None,
8379
8413
  statistic: typing.Optional[builtins.str] = None,
8380
8414
  unit: typing.Optional[_Unit_61bc6f70] = None,
8381
8415
  ) -> _Metric_e396a4dc:
@@ -8387,6 +8421,8 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
8387
8421
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
8388
8422
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
8389
8423
  :param region: Region which this metric comes from. Default: - Deployment region.
8424
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
8425
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
8390
8426
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
8391
8427
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
8392
8428
  '''
@@ -8571,6 +8607,8 @@ class _ITableProxy(
8571
8607
  label: typing.Optional[builtins.str] = None,
8572
8608
  period: typing.Optional[_Duration_4839e8c3] = None,
8573
8609
  region: typing.Optional[builtins.str] = None,
8610
+ stack_account: typing.Optional[builtins.str] = None,
8611
+ stack_region: typing.Optional[builtins.str] = None,
8574
8612
  statistic: typing.Optional[builtins.str] = None,
8575
8613
  unit: typing.Optional[_Unit_61bc6f70] = None,
8576
8614
  ) -> _Metric_e396a4dc:
@@ -8583,6 +8621,8 @@ class _ITableProxy(
8583
8621
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
8584
8622
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
8585
8623
  :param region: Region which this metric comes from. Default: - Deployment region.
8624
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
8625
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
8586
8626
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
8587
8627
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
8588
8628
  '''
@@ -8596,6 +8636,8 @@ class _ITableProxy(
8596
8636
  label=label,
8597
8637
  period=period,
8598
8638
  region=region,
8639
+ stack_account=stack_account,
8640
+ stack_region=stack_region,
8599
8641
  statistic=statistic,
8600
8642
  unit=unit,
8601
8643
  )
@@ -8612,6 +8654,8 @@ class _ITableProxy(
8612
8654
  label: typing.Optional[builtins.str] = None,
8613
8655
  period: typing.Optional[_Duration_4839e8c3] = None,
8614
8656
  region: typing.Optional[builtins.str] = None,
8657
+ stack_account: typing.Optional[builtins.str] = None,
8658
+ stack_region: typing.Optional[builtins.str] = None,
8615
8659
  statistic: typing.Optional[builtins.str] = None,
8616
8660
  unit: typing.Optional[_Unit_61bc6f70] = None,
8617
8661
  ) -> _Metric_e396a4dc:
@@ -8623,6 +8667,8 @@ class _ITableProxy(
8623
8667
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
8624
8668
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
8625
8669
  :param region: Region which this metric comes from. Default: - Deployment region.
8670
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
8671
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
8626
8672
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
8627
8673
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
8628
8674
  '''
@@ -8633,6 +8679,8 @@ class _ITableProxy(
8633
8679
  label=label,
8634
8680
  period=period,
8635
8681
  region=region,
8682
+ stack_account=stack_account,
8683
+ stack_region=stack_region,
8636
8684
  statistic=statistic,
8637
8685
  unit=unit,
8638
8686
  )
@@ -8649,6 +8697,8 @@ class _ITableProxy(
8649
8697
  label: typing.Optional[builtins.str] = None,
8650
8698
  period: typing.Optional[_Duration_4839e8c3] = None,
8651
8699
  region: typing.Optional[builtins.str] = None,
8700
+ stack_account: typing.Optional[builtins.str] = None,
8701
+ stack_region: typing.Optional[builtins.str] = None,
8652
8702
  statistic: typing.Optional[builtins.str] = None,
8653
8703
  unit: typing.Optional[_Unit_61bc6f70] = None,
8654
8704
  ) -> _Metric_e396a4dc:
@@ -8660,6 +8710,8 @@ class _ITableProxy(
8660
8710
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
8661
8711
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
8662
8712
  :param region: Region which this metric comes from. Default: - Deployment region.
8713
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
8714
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
8663
8715
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
8664
8716
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
8665
8717
  '''
@@ -8670,6 +8722,8 @@ class _ITableProxy(
8670
8722
  label=label,
8671
8723
  period=period,
8672
8724
  region=region,
8725
+ stack_account=stack_account,
8726
+ stack_region=stack_region,
8673
8727
  statistic=statistic,
8674
8728
  unit=unit,
8675
8729
  )
@@ -8686,6 +8740,8 @@ class _ITableProxy(
8686
8740
  label: typing.Optional[builtins.str] = None,
8687
8741
  period: typing.Optional[_Duration_4839e8c3] = None,
8688
8742
  region: typing.Optional[builtins.str] = None,
8743
+ stack_account: typing.Optional[builtins.str] = None,
8744
+ stack_region: typing.Optional[builtins.str] = None,
8689
8745
  statistic: typing.Optional[builtins.str] = None,
8690
8746
  unit: typing.Optional[_Unit_61bc6f70] = None,
8691
8747
  ) -> _Metric_e396a4dc:
@@ -8697,6 +8753,8 @@ class _ITableProxy(
8697
8753
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
8698
8754
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
8699
8755
  :param region: Region which this metric comes from. Default: - Deployment region.
8756
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
8757
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
8700
8758
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
8701
8759
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
8702
8760
  '''
@@ -8707,6 +8765,8 @@ class _ITableProxy(
8707
8765
  label=label,
8708
8766
  period=period,
8709
8767
  region=region,
8768
+ stack_account=stack_account,
8769
+ stack_region=stack_region,
8710
8770
  statistic=statistic,
8711
8771
  unit=unit,
8712
8772
  )
@@ -8723,6 +8783,8 @@ class _ITableProxy(
8723
8783
  label: typing.Optional[builtins.str] = None,
8724
8784
  period: typing.Optional[_Duration_4839e8c3] = None,
8725
8785
  region: typing.Optional[builtins.str] = None,
8786
+ stack_account: typing.Optional[builtins.str] = None,
8787
+ stack_region: typing.Optional[builtins.str] = None,
8726
8788
  statistic: typing.Optional[builtins.str] = None,
8727
8789
  unit: typing.Optional[_Unit_61bc6f70] = None,
8728
8790
  ) -> _Metric_e396a4dc:
@@ -8734,6 +8796,8 @@ class _ITableProxy(
8734
8796
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
8735
8797
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
8736
8798
  :param region: Region which this metric comes from. Default: - Deployment region.
8799
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
8800
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
8737
8801
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
8738
8802
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
8739
8803
  '''
@@ -8744,6 +8808,8 @@ class _ITableProxy(
8744
8808
  label=label,
8745
8809
  period=period,
8746
8810
  region=region,
8811
+ stack_account=stack_account,
8812
+ stack_region=stack_region,
8747
8813
  statistic=statistic,
8748
8814
  unit=unit,
8749
8815
  )
@@ -8761,6 +8827,8 @@ class _ITableProxy(
8761
8827
  label: typing.Optional[builtins.str] = None,
8762
8828
  period: typing.Optional[_Duration_4839e8c3] = None,
8763
8829
  region: typing.Optional[builtins.str] = None,
8830
+ stack_account: typing.Optional[builtins.str] = None,
8831
+ stack_region: typing.Optional[builtins.str] = None,
8764
8832
  statistic: typing.Optional[builtins.str] = None,
8765
8833
  unit: typing.Optional[_Unit_61bc6f70] = None,
8766
8834
  ) -> _IMetric_c7fd29de:
@@ -8773,6 +8841,8 @@ class _ITableProxy(
8773
8841
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
8774
8842
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
8775
8843
  :param region: Region which this metric comes from. Default: - Deployment region.
8844
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
8845
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
8776
8846
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
8777
8847
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
8778
8848
  '''
@@ -8784,6 +8854,8 @@ class _ITableProxy(
8784
8854
  label=label,
8785
8855
  period=period,
8786
8856
  region=region,
8857
+ stack_account=stack_account,
8858
+ stack_region=stack_region,
8787
8859
  statistic=statistic,
8788
8860
  unit=unit,
8789
8861
  )
@@ -8800,6 +8872,8 @@ class _ITableProxy(
8800
8872
  label: typing.Optional[builtins.str] = None,
8801
8873
  period: typing.Optional[_Duration_4839e8c3] = None,
8802
8874
  region: typing.Optional[builtins.str] = None,
8875
+ stack_account: typing.Optional[builtins.str] = None,
8876
+ stack_region: typing.Optional[builtins.str] = None,
8803
8877
  statistic: typing.Optional[builtins.str] = None,
8804
8878
  unit: typing.Optional[_Unit_61bc6f70] = None,
8805
8879
  ) -> _Metric_e396a4dc:
@@ -8811,6 +8885,8 @@ class _ITableProxy(
8811
8885
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
8812
8886
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
8813
8887
  :param region: Region which this metric comes from. Default: - Deployment region.
8888
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
8889
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
8814
8890
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
8815
8891
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
8816
8892
 
@@ -8825,6 +8901,8 @@ class _ITableProxy(
8825
8901
  label=label,
8826
8902
  period=period,
8827
8903
  region=region,
8904
+ stack_account=stack_account,
8905
+ stack_region=stack_region,
8828
8906
  statistic=statistic,
8829
8907
  unit=unit,
8830
8908
  )
@@ -8842,6 +8920,8 @@ class _ITableProxy(
8842
8920
  label: typing.Optional[builtins.str] = None,
8843
8921
  period: typing.Optional[_Duration_4839e8c3] = None,
8844
8922
  region: typing.Optional[builtins.str] = None,
8923
+ stack_account: typing.Optional[builtins.str] = None,
8924
+ stack_region: typing.Optional[builtins.str] = None,
8845
8925
  statistic: typing.Optional[builtins.str] = None,
8846
8926
  unit: typing.Optional[_Unit_61bc6f70] = None,
8847
8927
  ) -> _IMetric_c7fd29de:
@@ -8854,6 +8934,8 @@ class _ITableProxy(
8854
8934
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
8855
8935
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
8856
8936
  :param region: Region which this metric comes from. Default: - Deployment region.
8937
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
8938
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
8857
8939
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
8858
8940
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
8859
8941
  '''
@@ -8865,6 +8947,8 @@ class _ITableProxy(
8865
8947
  label=label,
8866
8948
  period=period,
8867
8949
  region=region,
8950
+ stack_account=stack_account,
8951
+ stack_region=stack_region,
8868
8952
  statistic=statistic,
8869
8953
  unit=unit,
8870
8954
  )
@@ -8881,6 +8965,8 @@ class _ITableProxy(
8881
8965
  label: typing.Optional[builtins.str] = None,
8882
8966
  period: typing.Optional[_Duration_4839e8c3] = None,
8883
8967
  region: typing.Optional[builtins.str] = None,
8968
+ stack_account: typing.Optional[builtins.str] = None,
8969
+ stack_region: typing.Optional[builtins.str] = None,
8884
8970
  statistic: typing.Optional[builtins.str] = None,
8885
8971
  unit: typing.Optional[_Unit_61bc6f70] = None,
8886
8972
  ) -> _Metric_e396a4dc:
@@ -8892,6 +8978,8 @@ class _ITableProxy(
8892
8978
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
8893
8979
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
8894
8980
  :param region: Region which this metric comes from. Default: - Deployment region.
8981
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
8982
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
8895
8983
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
8896
8984
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
8897
8985
  '''
@@ -8902,6 +8990,8 @@ class _ITableProxy(
8902
8990
  label=label,
8903
8991
  period=period,
8904
8992
  region=region,
8993
+ stack_account=stack_account,
8994
+ stack_region=stack_region,
8905
8995
  statistic=statistic,
8906
8996
  unit=unit,
8907
8997
  )
@@ -9661,6 +9751,8 @@ class StreamViewType(enum.Enum):
9661
9751
  "label": "label",
9662
9752
  "period": "period",
9663
9753
  "region": "region",
9754
+ "stack_account": "stackAccount",
9755
+ "stack_region": "stackRegion",
9664
9756
  "statistic": "statistic",
9665
9757
  "unit": "unit",
9666
9758
  "operations": "operations",
@@ -9676,6 +9768,8 @@ class SystemErrorsForOperationsMetricOptions(_MetricOptions_1788b62f):
9676
9768
  label: typing.Optional[builtins.str] = None,
9677
9769
  period: typing.Optional[_Duration_4839e8c3] = None,
9678
9770
  region: typing.Optional[builtins.str] = None,
9771
+ stack_account: typing.Optional[builtins.str] = None,
9772
+ stack_region: typing.Optional[builtins.str] = None,
9679
9773
  statistic: typing.Optional[builtins.str] = None,
9680
9774
  unit: typing.Optional[_Unit_61bc6f70] = None,
9681
9775
  operations: typing.Optional[typing.Sequence[Operation]] = None,
@@ -9688,6 +9782,8 @@ class SystemErrorsForOperationsMetricOptions(_MetricOptions_1788b62f):
9688
9782
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
9689
9783
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
9690
9784
  :param region: Region which this metric comes from. Default: - Deployment region.
9785
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
9786
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
9691
9787
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
9692
9788
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
9693
9789
  :param operations: The operations to apply the metric to. Default: - All operations available by DynamoDB tables will be considered.
@@ -9712,6 +9808,8 @@ class SystemErrorsForOperationsMetricOptions(_MetricOptions_1788b62f):
9712
9808
  operations=[dynamodb.Operation.GET_ITEM],
9713
9809
  period=cdk.Duration.minutes(30),
9714
9810
  region="region",
9811
+ stack_account="stackAccount",
9812
+ stack_region="stackRegion",
9715
9813
  statistic="statistic",
9716
9814
  unit=cloudwatch.Unit.SECONDS
9717
9815
  )
@@ -9724,6 +9822,8 @@ class SystemErrorsForOperationsMetricOptions(_MetricOptions_1788b62f):
9724
9822
  check_type(argname="argument label", value=label, expected_type=type_hints["label"])
9725
9823
  check_type(argname="argument period", value=period, expected_type=type_hints["period"])
9726
9824
  check_type(argname="argument region", value=region, expected_type=type_hints["region"])
9825
+ check_type(argname="argument stack_account", value=stack_account, expected_type=type_hints["stack_account"])
9826
+ check_type(argname="argument stack_region", value=stack_region, expected_type=type_hints["stack_region"])
9727
9827
  check_type(argname="argument statistic", value=statistic, expected_type=type_hints["statistic"])
9728
9828
  check_type(argname="argument unit", value=unit, expected_type=type_hints["unit"])
9729
9829
  check_type(argname="argument operations", value=operations, expected_type=type_hints["operations"])
@@ -9740,6 +9840,10 @@ class SystemErrorsForOperationsMetricOptions(_MetricOptions_1788b62f):
9740
9840
  self._values["period"] = period
9741
9841
  if region is not None:
9742
9842
  self._values["region"] = region
9843
+ if stack_account is not None:
9844
+ self._values["stack_account"] = stack_account
9845
+ if stack_region is not None:
9846
+ self._values["stack_region"] = stack_region
9743
9847
  if statistic is not None:
9744
9848
  self._values["statistic"] = statistic
9745
9849
  if unit is not None:
@@ -9812,6 +9916,24 @@ class SystemErrorsForOperationsMetricOptions(_MetricOptions_1788b62f):
9812
9916
  result = self._values.get("region")
9813
9917
  return typing.cast(typing.Optional[builtins.str], result)
9814
9918
 
9919
+ @builtins.property
9920
+ def stack_account(self) -> typing.Optional[builtins.str]:
9921
+ '''Account of the stack this metric is attached to.
9922
+
9923
+ :default: - Deployment account.
9924
+ '''
9925
+ result = self._values.get("stack_account")
9926
+ return typing.cast(typing.Optional[builtins.str], result)
9927
+
9928
+ @builtins.property
9929
+ def stack_region(self) -> typing.Optional[builtins.str]:
9930
+ '''Region of the stack this metric is attached to.
9931
+
9932
+ :default: - Deployment region.
9933
+ '''
9934
+ result = self._values.get("stack_region")
9935
+ return typing.cast(typing.Optional[builtins.str], result)
9936
+
9815
9937
  @builtins.property
9816
9938
  def statistic(self) -> typing.Optional[builtins.str]:
9817
9939
  '''What function to use for aggregating.
@@ -10427,6 +10549,8 @@ class TableBase(
10427
10549
  label: typing.Optional[builtins.str] = None,
10428
10550
  period: typing.Optional[_Duration_4839e8c3] = None,
10429
10551
  region: typing.Optional[builtins.str] = None,
10552
+ stack_account: typing.Optional[builtins.str] = None,
10553
+ stack_region: typing.Optional[builtins.str] = None,
10430
10554
  statistic: typing.Optional[builtins.str] = None,
10431
10555
  unit: typing.Optional[_Unit_61bc6f70] = None,
10432
10556
  ) -> _Metric_e396a4dc:
@@ -10442,6 +10566,8 @@ class TableBase(
10442
10566
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
10443
10567
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
10444
10568
  :param region: Region which this metric comes from. Default: - Deployment region.
10569
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
10570
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
10445
10571
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
10446
10572
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
10447
10573
  '''
@@ -10455,6 +10581,8 @@ class TableBase(
10455
10581
  label=label,
10456
10582
  period=period,
10457
10583
  region=region,
10584
+ stack_account=stack_account,
10585
+ stack_region=stack_region,
10458
10586
  statistic=statistic,
10459
10587
  unit=unit,
10460
10588
  )
@@ -10471,6 +10599,8 @@ class TableBase(
10471
10599
  label: typing.Optional[builtins.str] = None,
10472
10600
  period: typing.Optional[_Duration_4839e8c3] = None,
10473
10601
  region: typing.Optional[builtins.str] = None,
10602
+ stack_account: typing.Optional[builtins.str] = None,
10603
+ stack_region: typing.Optional[builtins.str] = None,
10474
10604
  statistic: typing.Optional[builtins.str] = None,
10475
10605
  unit: typing.Optional[_Unit_61bc6f70] = None,
10476
10606
  ) -> _Metric_e396a4dc:
@@ -10485,6 +10615,8 @@ class TableBase(
10485
10615
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
10486
10616
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
10487
10617
  :param region: Region which this metric comes from. Default: - Deployment region.
10618
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
10619
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
10488
10620
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
10489
10621
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
10490
10622
  '''
@@ -10495,6 +10627,8 @@ class TableBase(
10495
10627
  label=label,
10496
10628
  period=period,
10497
10629
  region=region,
10630
+ stack_account=stack_account,
10631
+ stack_region=stack_region,
10498
10632
  statistic=statistic,
10499
10633
  unit=unit,
10500
10634
  )
@@ -10511,6 +10645,8 @@ class TableBase(
10511
10645
  label: typing.Optional[builtins.str] = None,
10512
10646
  period: typing.Optional[_Duration_4839e8c3] = None,
10513
10647
  region: typing.Optional[builtins.str] = None,
10648
+ stack_account: typing.Optional[builtins.str] = None,
10649
+ stack_region: typing.Optional[builtins.str] = None,
10514
10650
  statistic: typing.Optional[builtins.str] = None,
10515
10651
  unit: typing.Optional[_Unit_61bc6f70] = None,
10516
10652
  ) -> _Metric_e396a4dc:
@@ -10525,6 +10661,8 @@ class TableBase(
10525
10661
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
10526
10662
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
10527
10663
  :param region: Region which this metric comes from. Default: - Deployment region.
10664
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
10665
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
10528
10666
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
10529
10667
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
10530
10668
  '''
@@ -10535,6 +10673,8 @@ class TableBase(
10535
10673
  label=label,
10536
10674
  period=period,
10537
10675
  region=region,
10676
+ stack_account=stack_account,
10677
+ stack_region=stack_region,
10538
10678
  statistic=statistic,
10539
10679
  unit=unit,
10540
10680
  )
@@ -10551,6 +10691,8 @@ class TableBase(
10551
10691
  label: typing.Optional[builtins.str] = None,
10552
10692
  period: typing.Optional[_Duration_4839e8c3] = None,
10553
10693
  region: typing.Optional[builtins.str] = None,
10694
+ stack_account: typing.Optional[builtins.str] = None,
10695
+ stack_region: typing.Optional[builtins.str] = None,
10554
10696
  statistic: typing.Optional[builtins.str] = None,
10555
10697
  unit: typing.Optional[_Unit_61bc6f70] = None,
10556
10698
  ) -> _Metric_e396a4dc:
@@ -10565,6 +10707,8 @@ class TableBase(
10565
10707
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
10566
10708
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
10567
10709
  :param region: Region which this metric comes from. Default: - Deployment region.
10710
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
10711
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
10568
10712
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
10569
10713
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
10570
10714
  '''
@@ -10575,6 +10719,8 @@ class TableBase(
10575
10719
  label=label,
10576
10720
  period=period,
10577
10721
  region=region,
10722
+ stack_account=stack_account,
10723
+ stack_region=stack_region,
10578
10724
  statistic=statistic,
10579
10725
  unit=unit,
10580
10726
  )
@@ -10591,6 +10737,8 @@ class TableBase(
10591
10737
  label: typing.Optional[builtins.str] = None,
10592
10738
  period: typing.Optional[_Duration_4839e8c3] = None,
10593
10739
  region: typing.Optional[builtins.str] = None,
10740
+ stack_account: typing.Optional[builtins.str] = None,
10741
+ stack_region: typing.Optional[builtins.str] = None,
10594
10742
  statistic: typing.Optional[builtins.str] = None,
10595
10743
  unit: typing.Optional[_Unit_61bc6f70] = None,
10596
10744
  ) -> _Metric_e396a4dc:
@@ -10605,6 +10753,8 @@ class TableBase(
10605
10753
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
10606
10754
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
10607
10755
  :param region: Region which this metric comes from. Default: - Deployment region.
10756
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
10757
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
10608
10758
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
10609
10759
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
10610
10760
  '''
@@ -10615,6 +10765,8 @@ class TableBase(
10615
10765
  label=label,
10616
10766
  period=period,
10617
10767
  region=region,
10768
+ stack_account=stack_account,
10769
+ stack_region=stack_region,
10618
10770
  statistic=statistic,
10619
10771
  unit=unit,
10620
10772
  )
@@ -10631,6 +10783,8 @@ class TableBase(
10631
10783
  label: typing.Optional[builtins.str] = None,
10632
10784
  period: typing.Optional[_Duration_4839e8c3] = None,
10633
10785
  region: typing.Optional[builtins.str] = None,
10786
+ stack_account: typing.Optional[builtins.str] = None,
10787
+ stack_region: typing.Optional[builtins.str] = None,
10634
10788
  statistic: typing.Optional[builtins.str] = None,
10635
10789
  unit: typing.Optional[_Unit_61bc6f70] = None,
10636
10790
  ) -> _Metric_e396a4dc:
@@ -10642,6 +10796,8 @@ class TableBase(
10642
10796
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
10643
10797
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
10644
10798
  :param region: Region which this metric comes from. Default: - Deployment region.
10799
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
10800
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
10645
10801
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
10646
10802
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
10647
10803
 
@@ -10656,6 +10812,8 @@ class TableBase(
10656
10812
  label=label,
10657
10813
  period=period,
10658
10814
  region=region,
10815
+ stack_account=stack_account,
10816
+ stack_region=stack_region,
10659
10817
  statistic=statistic,
10660
10818
  unit=unit,
10661
10819
  )
@@ -10673,6 +10831,8 @@ class TableBase(
10673
10831
  label: typing.Optional[builtins.str] = None,
10674
10832
  period: typing.Optional[_Duration_4839e8c3] = None,
10675
10833
  region: typing.Optional[builtins.str] = None,
10834
+ stack_account: typing.Optional[builtins.str] = None,
10835
+ stack_region: typing.Optional[builtins.str] = None,
10676
10836
  statistic: typing.Optional[builtins.str] = None,
10677
10837
  unit: typing.Optional[_Unit_61bc6f70] = None,
10678
10838
  ) -> _IMetric_c7fd29de:
@@ -10689,6 +10849,8 @@ class TableBase(
10689
10849
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
10690
10850
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
10691
10851
  :param region: Region which this metric comes from. Default: - Deployment region.
10852
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
10853
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
10692
10854
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
10693
10855
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
10694
10856
  '''
@@ -10700,6 +10862,8 @@ class TableBase(
10700
10862
  label=label,
10701
10863
  period=period,
10702
10864
  region=region,
10865
+ stack_account=stack_account,
10866
+ stack_region=stack_region,
10703
10867
  statistic=statistic,
10704
10868
  unit=unit,
10705
10869
  )
@@ -10716,6 +10880,8 @@ class TableBase(
10716
10880
  label: typing.Optional[builtins.str] = None,
10717
10881
  period: typing.Optional[_Duration_4839e8c3] = None,
10718
10882
  region: typing.Optional[builtins.str] = None,
10883
+ stack_account: typing.Optional[builtins.str] = None,
10884
+ stack_region: typing.Optional[builtins.str] = None,
10719
10885
  statistic: typing.Optional[builtins.str] = None,
10720
10886
  unit: typing.Optional[_Unit_61bc6f70] = None,
10721
10887
  ) -> _Metric_e396a4dc:
@@ -10729,6 +10895,8 @@ class TableBase(
10729
10895
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
10730
10896
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
10731
10897
  :param region: Region which this metric comes from. Default: - Deployment region.
10898
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
10899
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
10732
10900
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
10733
10901
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
10734
10902
 
@@ -10743,6 +10911,8 @@ class TableBase(
10743
10911
  label=label,
10744
10912
  period=period,
10745
10913
  region=region,
10914
+ stack_account=stack_account,
10915
+ stack_region=stack_region,
10746
10916
  statistic=statistic,
10747
10917
  unit=unit,
10748
10918
  )
@@ -10760,6 +10930,8 @@ class TableBase(
10760
10930
  label: typing.Optional[builtins.str] = None,
10761
10931
  period: typing.Optional[_Duration_4839e8c3] = None,
10762
10932
  region: typing.Optional[builtins.str] = None,
10933
+ stack_account: typing.Optional[builtins.str] = None,
10934
+ stack_region: typing.Optional[builtins.str] = None,
10763
10935
  statistic: typing.Optional[builtins.str] = None,
10764
10936
  unit: typing.Optional[_Unit_61bc6f70] = None,
10765
10937
  ) -> _Metric_e396a4dc:
@@ -10774,6 +10946,8 @@ class TableBase(
10774
10946
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
10775
10947
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
10776
10948
  :param region: Region which this metric comes from. Default: - Deployment region.
10949
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
10950
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
10777
10951
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
10778
10952
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
10779
10953
  '''
@@ -10787,6 +10961,8 @@ class TableBase(
10787
10961
  label=label,
10788
10962
  period=period,
10789
10963
  region=region,
10964
+ stack_account=stack_account,
10965
+ stack_region=stack_region,
10790
10966
  statistic=statistic,
10791
10967
  unit=unit,
10792
10968
  )
@@ -10804,6 +10980,8 @@ class TableBase(
10804
10980
  label: typing.Optional[builtins.str] = None,
10805
10981
  period: typing.Optional[_Duration_4839e8c3] = None,
10806
10982
  region: typing.Optional[builtins.str] = None,
10983
+ stack_account: typing.Optional[builtins.str] = None,
10984
+ stack_region: typing.Optional[builtins.str] = None,
10807
10985
  statistic: typing.Optional[builtins.str] = None,
10808
10986
  unit: typing.Optional[_Unit_61bc6f70] = None,
10809
10987
  ) -> _IMetric_c7fd29de:
@@ -10820,6 +10998,8 @@ class TableBase(
10820
10998
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
10821
10999
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
10822
11000
  :param region: Region which this metric comes from. Default: - Deployment region.
11001
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
11002
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
10823
11003
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
10824
11004
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
10825
11005
  '''
@@ -10831,6 +11011,8 @@ class TableBase(
10831
11011
  label=label,
10832
11012
  period=period,
10833
11013
  region=region,
11014
+ stack_account=stack_account,
11015
+ stack_region=stack_region,
10834
11016
  statistic=statistic,
10835
11017
  unit=unit,
10836
11018
  )
@@ -10847,6 +11029,8 @@ class TableBase(
10847
11029
  label: typing.Optional[builtins.str] = None,
10848
11030
  period: typing.Optional[_Duration_4839e8c3] = None,
10849
11031
  region: typing.Optional[builtins.str] = None,
11032
+ stack_account: typing.Optional[builtins.str] = None,
11033
+ stack_region: typing.Optional[builtins.str] = None,
10850
11034
  statistic: typing.Optional[builtins.str] = None,
10851
11035
  unit: typing.Optional[_Unit_61bc6f70] = None,
10852
11036
  ) -> _Metric_e396a4dc:
@@ -10864,6 +11048,8 @@ class TableBase(
10864
11048
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
10865
11049
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
10866
11050
  :param region: Region which this metric comes from. Default: - Deployment region.
11051
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
11052
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
10867
11053
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
10868
11054
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
10869
11055
  '''
@@ -10874,6 +11060,8 @@ class TableBase(
10874
11060
  label=label,
10875
11061
  period=period,
10876
11062
  region=region,
11063
+ stack_account=stack_account,
11064
+ stack_region=stack_region,
10877
11065
  statistic=statistic,
10878
11066
  unit=unit,
10879
11067
  )
@@ -11207,6 +11395,8 @@ class TableBaseV2(
11207
11395
  label: typing.Optional[builtins.str] = None,
11208
11396
  period: typing.Optional[_Duration_4839e8c3] = None,
11209
11397
  region: typing.Optional[builtins.str] = None,
11398
+ stack_account: typing.Optional[builtins.str] = None,
11399
+ stack_region: typing.Optional[builtins.str] = None,
11210
11400
  statistic: typing.Optional[builtins.str] = None,
11211
11401
  unit: typing.Optional[_Unit_61bc6f70] = None,
11212
11402
  ) -> _Metric_e396a4dc:
@@ -11222,6 +11412,8 @@ class TableBaseV2(
11222
11412
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
11223
11413
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
11224
11414
  :param region: Region which this metric comes from. Default: - Deployment region.
11415
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
11416
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
11225
11417
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
11226
11418
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
11227
11419
  '''
@@ -11235,6 +11427,8 @@ class TableBaseV2(
11235
11427
  label=label,
11236
11428
  period=period,
11237
11429
  region=region,
11430
+ stack_account=stack_account,
11431
+ stack_region=stack_region,
11238
11432
  statistic=statistic,
11239
11433
  unit=unit,
11240
11434
  )
@@ -11251,6 +11445,8 @@ class TableBaseV2(
11251
11445
  label: typing.Optional[builtins.str] = None,
11252
11446
  period: typing.Optional[_Duration_4839e8c3] = None,
11253
11447
  region: typing.Optional[builtins.str] = None,
11448
+ stack_account: typing.Optional[builtins.str] = None,
11449
+ stack_region: typing.Optional[builtins.str] = None,
11254
11450
  statistic: typing.Optional[builtins.str] = None,
11255
11451
  unit: typing.Optional[_Unit_61bc6f70] = None,
11256
11452
  ) -> _Metric_e396a4dc:
@@ -11265,6 +11461,8 @@ class TableBaseV2(
11265
11461
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
11266
11462
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
11267
11463
  :param region: Region which this metric comes from. Default: - Deployment region.
11464
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
11465
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
11268
11466
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
11269
11467
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
11270
11468
  '''
@@ -11275,6 +11473,8 @@ class TableBaseV2(
11275
11473
  label=label,
11276
11474
  period=period,
11277
11475
  region=region,
11476
+ stack_account=stack_account,
11477
+ stack_region=stack_region,
11278
11478
  statistic=statistic,
11279
11479
  unit=unit,
11280
11480
  )
@@ -11291,6 +11491,8 @@ class TableBaseV2(
11291
11491
  label: typing.Optional[builtins.str] = None,
11292
11492
  period: typing.Optional[_Duration_4839e8c3] = None,
11293
11493
  region: typing.Optional[builtins.str] = None,
11494
+ stack_account: typing.Optional[builtins.str] = None,
11495
+ stack_region: typing.Optional[builtins.str] = None,
11294
11496
  statistic: typing.Optional[builtins.str] = None,
11295
11497
  unit: typing.Optional[_Unit_61bc6f70] = None,
11296
11498
  ) -> _Metric_e396a4dc:
@@ -11305,6 +11507,8 @@ class TableBaseV2(
11305
11507
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
11306
11508
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
11307
11509
  :param region: Region which this metric comes from. Default: - Deployment region.
11510
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
11511
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
11308
11512
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
11309
11513
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
11310
11514
  '''
@@ -11315,6 +11519,8 @@ class TableBaseV2(
11315
11519
  label=label,
11316
11520
  period=period,
11317
11521
  region=region,
11522
+ stack_account=stack_account,
11523
+ stack_region=stack_region,
11318
11524
  statistic=statistic,
11319
11525
  unit=unit,
11320
11526
  )
@@ -11331,6 +11537,8 @@ class TableBaseV2(
11331
11537
  label: typing.Optional[builtins.str] = None,
11332
11538
  period: typing.Optional[_Duration_4839e8c3] = None,
11333
11539
  region: typing.Optional[builtins.str] = None,
11540
+ stack_account: typing.Optional[builtins.str] = None,
11541
+ stack_region: typing.Optional[builtins.str] = None,
11334
11542
  statistic: typing.Optional[builtins.str] = None,
11335
11543
  unit: typing.Optional[_Unit_61bc6f70] = None,
11336
11544
  ) -> _Metric_e396a4dc:
@@ -11345,6 +11553,8 @@ class TableBaseV2(
11345
11553
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
11346
11554
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
11347
11555
  :param region: Region which this metric comes from. Default: - Deployment region.
11556
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
11557
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
11348
11558
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
11349
11559
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
11350
11560
  '''
@@ -11355,6 +11565,8 @@ class TableBaseV2(
11355
11565
  label=label,
11356
11566
  period=period,
11357
11567
  region=region,
11568
+ stack_account=stack_account,
11569
+ stack_region=stack_region,
11358
11570
  statistic=statistic,
11359
11571
  unit=unit,
11360
11572
  )
@@ -11371,6 +11583,8 @@ class TableBaseV2(
11371
11583
  label: typing.Optional[builtins.str] = None,
11372
11584
  period: typing.Optional[_Duration_4839e8c3] = None,
11373
11585
  region: typing.Optional[builtins.str] = None,
11586
+ stack_account: typing.Optional[builtins.str] = None,
11587
+ stack_region: typing.Optional[builtins.str] = None,
11374
11588
  statistic: typing.Optional[builtins.str] = None,
11375
11589
  unit: typing.Optional[_Unit_61bc6f70] = None,
11376
11590
  ) -> _Metric_e396a4dc:
@@ -11385,6 +11599,8 @@ class TableBaseV2(
11385
11599
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
11386
11600
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
11387
11601
  :param region: Region which this metric comes from. Default: - Deployment region.
11602
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
11603
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
11388
11604
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
11389
11605
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
11390
11606
  '''
@@ -11395,6 +11611,8 @@ class TableBaseV2(
11395
11611
  label=label,
11396
11612
  period=period,
11397
11613
  region=region,
11614
+ stack_account=stack_account,
11615
+ stack_region=stack_region,
11398
11616
  statistic=statistic,
11399
11617
  unit=unit,
11400
11618
  )
@@ -11411,6 +11629,8 @@ class TableBaseV2(
11411
11629
  label: typing.Optional[builtins.str] = None,
11412
11630
  period: typing.Optional[_Duration_4839e8c3] = None,
11413
11631
  region: typing.Optional[builtins.str] = None,
11632
+ stack_account: typing.Optional[builtins.str] = None,
11633
+ stack_region: typing.Optional[builtins.str] = None,
11414
11634
  statistic: typing.Optional[builtins.str] = None,
11415
11635
  unit: typing.Optional[_Unit_61bc6f70] = None,
11416
11636
  ) -> _Metric_e396a4dc:
@@ -11422,6 +11642,8 @@ class TableBaseV2(
11422
11642
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
11423
11643
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
11424
11644
  :param region: Region which this metric comes from. Default: - Deployment region.
11645
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
11646
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
11425
11647
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
11426
11648
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
11427
11649
 
@@ -11436,6 +11658,8 @@ class TableBaseV2(
11436
11658
  label=label,
11437
11659
  period=period,
11438
11660
  region=region,
11661
+ stack_account=stack_account,
11662
+ stack_region=stack_region,
11439
11663
  statistic=statistic,
11440
11664
  unit=unit,
11441
11665
  )
@@ -11453,6 +11677,8 @@ class TableBaseV2(
11453
11677
  label: typing.Optional[builtins.str] = None,
11454
11678
  period: typing.Optional[_Duration_4839e8c3] = None,
11455
11679
  region: typing.Optional[builtins.str] = None,
11680
+ stack_account: typing.Optional[builtins.str] = None,
11681
+ stack_region: typing.Optional[builtins.str] = None,
11456
11682
  statistic: typing.Optional[builtins.str] = None,
11457
11683
  unit: typing.Optional[_Unit_61bc6f70] = None,
11458
11684
  ) -> _IMetric_c7fd29de:
@@ -11468,6 +11694,8 @@ class TableBaseV2(
11468
11694
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
11469
11695
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
11470
11696
  :param region: Region which this metric comes from. Default: - Deployment region.
11697
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
11698
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
11471
11699
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
11472
11700
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
11473
11701
  '''
@@ -11479,6 +11707,8 @@ class TableBaseV2(
11479
11707
  label=label,
11480
11708
  period=period,
11481
11709
  region=region,
11710
+ stack_account=stack_account,
11711
+ stack_region=stack_region,
11482
11712
  statistic=statistic,
11483
11713
  unit=unit,
11484
11714
  )
@@ -11495,6 +11725,8 @@ class TableBaseV2(
11495
11725
  label: typing.Optional[builtins.str] = None,
11496
11726
  period: typing.Optional[_Duration_4839e8c3] = None,
11497
11727
  region: typing.Optional[builtins.str] = None,
11728
+ stack_account: typing.Optional[builtins.str] = None,
11729
+ stack_region: typing.Optional[builtins.str] = None,
11498
11730
  statistic: typing.Optional[builtins.str] = None,
11499
11731
  unit: typing.Optional[_Unit_61bc6f70] = None,
11500
11732
  ) -> _Metric_e396a4dc:
@@ -11509,6 +11741,8 @@ class TableBaseV2(
11509
11741
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
11510
11742
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
11511
11743
  :param region: Region which this metric comes from. Default: - Deployment region.
11744
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
11745
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
11512
11746
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
11513
11747
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
11514
11748
 
@@ -11523,6 +11757,8 @@ class TableBaseV2(
11523
11757
  label=label,
11524
11758
  period=period,
11525
11759
  region=region,
11760
+ stack_account=stack_account,
11761
+ stack_region=stack_region,
11526
11762
  statistic=statistic,
11527
11763
  unit=unit,
11528
11764
  )
@@ -11541,6 +11777,8 @@ class TableBaseV2(
11541
11777
  label: typing.Optional[builtins.str] = None,
11542
11778
  period: typing.Optional[_Duration_4839e8c3] = None,
11543
11779
  region: typing.Optional[builtins.str] = None,
11780
+ stack_account: typing.Optional[builtins.str] = None,
11781
+ stack_region: typing.Optional[builtins.str] = None,
11544
11782
  statistic: typing.Optional[builtins.str] = None,
11545
11783
  unit: typing.Optional[_Unit_61bc6f70] = None,
11546
11784
  ) -> _IMetric_c7fd29de:
@@ -11557,6 +11795,8 @@ class TableBaseV2(
11557
11795
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
11558
11796
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
11559
11797
  :param region: Region which this metric comes from. Default: - Deployment region.
11798
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
11799
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
11560
11800
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
11561
11801
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
11562
11802
  '''
@@ -11571,6 +11811,8 @@ class TableBaseV2(
11571
11811
  label=label,
11572
11812
  period=period,
11573
11813
  region=region,
11814
+ stack_account=stack_account,
11815
+ stack_region=stack_region,
11574
11816
  statistic=statistic,
11575
11817
  unit=unit,
11576
11818
  )
@@ -11588,6 +11830,8 @@ class TableBaseV2(
11588
11830
  label: typing.Optional[builtins.str] = None,
11589
11831
  period: typing.Optional[_Duration_4839e8c3] = None,
11590
11832
  region: typing.Optional[builtins.str] = None,
11833
+ stack_account: typing.Optional[builtins.str] = None,
11834
+ stack_region: typing.Optional[builtins.str] = None,
11591
11835
  statistic: typing.Optional[builtins.str] = None,
11592
11836
  unit: typing.Optional[_Unit_61bc6f70] = None,
11593
11837
  ) -> _IMetric_c7fd29de:
@@ -11603,6 +11847,8 @@ class TableBaseV2(
11603
11847
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
11604
11848
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
11605
11849
  :param region: Region which this metric comes from. Default: - Deployment region.
11850
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
11851
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
11606
11852
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
11607
11853
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
11608
11854
  '''
@@ -11614,6 +11860,8 @@ class TableBaseV2(
11614
11860
  label=label,
11615
11861
  period=period,
11616
11862
  region=region,
11863
+ stack_account=stack_account,
11864
+ stack_region=stack_region,
11617
11865
  statistic=statistic,
11618
11866
  unit=unit,
11619
11867
  )
@@ -11630,6 +11878,8 @@ class TableBaseV2(
11630
11878
  label: typing.Optional[builtins.str] = None,
11631
11879
  period: typing.Optional[_Duration_4839e8c3] = None,
11632
11880
  region: typing.Optional[builtins.str] = None,
11881
+ stack_account: typing.Optional[builtins.str] = None,
11882
+ stack_region: typing.Optional[builtins.str] = None,
11633
11883
  statistic: typing.Optional[builtins.str] = None,
11634
11884
  unit: typing.Optional[_Unit_61bc6f70] = None,
11635
11885
  ) -> _Metric_e396a4dc:
@@ -11647,6 +11897,8 @@ class TableBaseV2(
11647
11897
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
11648
11898
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
11649
11899
  :param region: Region which this metric comes from. Default: - Deployment region.
11900
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
11901
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
11650
11902
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
11651
11903
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
11652
11904
  '''
@@ -11657,6 +11909,8 @@ class TableBaseV2(
11657
11909
  label=label,
11658
11910
  period=period,
11659
11911
  region=region,
11912
+ stack_account=stack_account,
11913
+ stack_region=stack_region,
11660
11914
  statistic=statistic,
11661
11915
  unit=unit,
11662
11916
  )
@@ -14669,6 +14923,8 @@ class LocalSecondaryIndexProps(SecondaryIndexProps):
14669
14923
  "label": "label",
14670
14924
  "period": "period",
14671
14925
  "region": "region",
14926
+ "stack_account": "stackAccount",
14927
+ "stack_region": "stackRegion",
14672
14928
  "statistic": "statistic",
14673
14929
  "unit": "unit",
14674
14930
  "operations": "operations",
@@ -14684,6 +14940,8 @@ class OperationsMetricOptions(SystemErrorsForOperationsMetricOptions):
14684
14940
  label: typing.Optional[builtins.str] = None,
14685
14941
  period: typing.Optional[_Duration_4839e8c3] = None,
14686
14942
  region: typing.Optional[builtins.str] = None,
14943
+ stack_account: typing.Optional[builtins.str] = None,
14944
+ stack_region: typing.Optional[builtins.str] = None,
14687
14945
  statistic: typing.Optional[builtins.str] = None,
14688
14946
  unit: typing.Optional[_Unit_61bc6f70] = None,
14689
14947
  operations: typing.Optional[typing.Sequence[Operation]] = None,
@@ -14696,6 +14954,8 @@ class OperationsMetricOptions(SystemErrorsForOperationsMetricOptions):
14696
14954
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
14697
14955
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
14698
14956
  :param region: Region which this metric comes from. Default: - Deployment region.
14957
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
14958
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
14699
14959
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
14700
14960
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
14701
14961
  :param operations: The operations to apply the metric to. Default: - All operations available by DynamoDB tables will be considered.
@@ -14720,6 +14980,8 @@ class OperationsMetricOptions(SystemErrorsForOperationsMetricOptions):
14720
14980
  operations=[dynamodb.Operation.GET_ITEM],
14721
14981
  period=cdk.Duration.minutes(30),
14722
14982
  region="region",
14983
+ stack_account="stackAccount",
14984
+ stack_region="stackRegion",
14723
14985
  statistic="statistic",
14724
14986
  unit=cloudwatch.Unit.SECONDS
14725
14987
  )
@@ -14732,6 +14994,8 @@ class OperationsMetricOptions(SystemErrorsForOperationsMetricOptions):
14732
14994
  check_type(argname="argument label", value=label, expected_type=type_hints["label"])
14733
14995
  check_type(argname="argument period", value=period, expected_type=type_hints["period"])
14734
14996
  check_type(argname="argument region", value=region, expected_type=type_hints["region"])
14997
+ check_type(argname="argument stack_account", value=stack_account, expected_type=type_hints["stack_account"])
14998
+ check_type(argname="argument stack_region", value=stack_region, expected_type=type_hints["stack_region"])
14735
14999
  check_type(argname="argument statistic", value=statistic, expected_type=type_hints["statistic"])
14736
15000
  check_type(argname="argument unit", value=unit, expected_type=type_hints["unit"])
14737
15001
  check_type(argname="argument operations", value=operations, expected_type=type_hints["operations"])
@@ -14748,6 +15012,10 @@ class OperationsMetricOptions(SystemErrorsForOperationsMetricOptions):
14748
15012
  self._values["period"] = period
14749
15013
  if region is not None:
14750
15014
  self._values["region"] = region
15015
+ if stack_account is not None:
15016
+ self._values["stack_account"] = stack_account
15017
+ if stack_region is not None:
15018
+ self._values["stack_region"] = stack_region
14751
15019
  if statistic is not None:
14752
15020
  self._values["statistic"] = statistic
14753
15021
  if unit is not None:
@@ -14820,6 +15088,24 @@ class OperationsMetricOptions(SystemErrorsForOperationsMetricOptions):
14820
15088
  result = self._values.get("region")
14821
15089
  return typing.cast(typing.Optional[builtins.str], result)
14822
15090
 
15091
+ @builtins.property
15092
+ def stack_account(self) -> typing.Optional[builtins.str]:
15093
+ '''Account of the stack this metric is attached to.
15094
+
15095
+ :default: - Deployment account.
15096
+ '''
15097
+ result = self._values.get("stack_account")
15098
+ return typing.cast(typing.Optional[builtins.str], result)
15099
+
15100
+ @builtins.property
15101
+ def stack_region(self) -> typing.Optional[builtins.str]:
15102
+ '''Region of the stack this metric is attached to.
15103
+
15104
+ :default: - Deployment region.
15105
+ '''
15106
+ result = self._values.get("stack_region")
15107
+ return typing.cast(typing.Optional[builtins.str], result)
15108
+
14823
15109
  @builtins.property
14824
15110
  def statistic(self) -> typing.Optional[builtins.str]:
14825
15111
  '''What function to use for aggregating.
@@ -16393,6 +16679,8 @@ def _typecheckingstub__44aae7bfccb81f7147f788917765a21288aff5fe772bb7c0c84ceb7a7
16393
16679
  label: typing.Optional[builtins.str] = None,
16394
16680
  period: typing.Optional[_Duration_4839e8c3] = None,
16395
16681
  region: typing.Optional[builtins.str] = None,
16682
+ stack_account: typing.Optional[builtins.str] = None,
16683
+ stack_region: typing.Optional[builtins.str] = None,
16396
16684
  statistic: typing.Optional[builtins.str] = None,
16397
16685
  unit: typing.Optional[_Unit_61bc6f70] = None,
16398
16686
  ) -> None:
@@ -16452,6 +16740,8 @@ def _typecheckingstub__cdad33b4389e90fa83c3fbfb70fd12ef2e9a72ee375dc3e96dcbef610
16452
16740
  label: typing.Optional[builtins.str] = None,
16453
16741
  period: typing.Optional[_Duration_4839e8c3] = None,
16454
16742
  region: typing.Optional[builtins.str] = None,
16743
+ stack_account: typing.Optional[builtins.str] = None,
16744
+ stack_region: typing.Optional[builtins.str] = None,
16455
16745
  statistic: typing.Optional[builtins.str] = None,
16456
16746
  unit: typing.Optional[_Unit_61bc6f70] = None,
16457
16747
  operations: typing.Optional[typing.Sequence[Operation]] = None,
@@ -16563,6 +16853,8 @@ def _typecheckingstub__1b1ff6b5154d6682d8764a47052a06d5305d9f6a41c79c8c293c19949
16563
16853
  label: typing.Optional[builtins.str] = None,
16564
16854
  period: typing.Optional[_Duration_4839e8c3] = None,
16565
16855
  region: typing.Optional[builtins.str] = None,
16856
+ stack_account: typing.Optional[builtins.str] = None,
16857
+ stack_region: typing.Optional[builtins.str] = None,
16566
16858
  statistic: typing.Optional[builtins.str] = None,
16567
16859
  unit: typing.Optional[_Unit_61bc6f70] = None,
16568
16860
  ) -> None:
@@ -16578,6 +16870,8 @@ def _typecheckingstub__95d33a70a83403322cdc035963638859f588f5d47bae922a6083d3acd
16578
16870
  label: typing.Optional[builtins.str] = None,
16579
16871
  period: typing.Optional[_Duration_4839e8c3] = None,
16580
16872
  region: typing.Optional[builtins.str] = None,
16873
+ stack_account: typing.Optional[builtins.str] = None,
16874
+ stack_region: typing.Optional[builtins.str] = None,
16581
16875
  statistic: typing.Optional[builtins.str] = None,
16582
16876
  unit: typing.Optional[_Unit_61bc6f70] = None,
16583
16877
  ) -> None:
@@ -16667,6 +16961,8 @@ def _typecheckingstub__b9d12f99f3c2bb32f060be7bea286ff36b58ea207a391685b9ca44957
16667
16961
  label: typing.Optional[builtins.str] = None,
16668
16962
  period: typing.Optional[_Duration_4839e8c3] = None,
16669
16963
  region: typing.Optional[builtins.str] = None,
16964
+ stack_account: typing.Optional[builtins.str] = None,
16965
+ stack_region: typing.Optional[builtins.str] = None,
16670
16966
  statistic: typing.Optional[builtins.str] = None,
16671
16967
  unit: typing.Optional[_Unit_61bc6f70] = None,
16672
16968
  ) -> None:
@@ -16683,6 +16979,8 @@ def _typecheckingstub__77d4ef5bc85980ee36c06595f45b530b92a1b51437a40ca9dc19d75ed
16683
16979
  label: typing.Optional[builtins.str] = None,
16684
16980
  period: typing.Optional[_Duration_4839e8c3] = None,
16685
16981
  region: typing.Optional[builtins.str] = None,
16982
+ stack_account: typing.Optional[builtins.str] = None,
16983
+ stack_region: typing.Optional[builtins.str] = None,
16686
16984
  statistic: typing.Optional[builtins.str] = None,
16687
16985
  unit: typing.Optional[_Unit_61bc6f70] = None,
16688
16986
  ) -> None:
@@ -16948,6 +17246,8 @@ def _typecheckingstub__323fc564f2052282a189a09de9130b5d9a855212d7bd5a514ddb98a52
16948
17246
  label: typing.Optional[builtins.str] = None,
16949
17247
  period: typing.Optional[_Duration_4839e8c3] = None,
16950
17248
  region: typing.Optional[builtins.str] = None,
17249
+ stack_account: typing.Optional[builtins.str] = None,
17250
+ stack_region: typing.Optional[builtins.str] = None,
16951
17251
  statistic: typing.Optional[builtins.str] = None,
16952
17252
  unit: typing.Optional[_Unit_61bc6f70] = None,
16953
17253
  operations: typing.Optional[typing.Sequence[Operation]] = None,