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.
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.174.1.jsii.tgz → aws-cdk-lib@2.175.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigateway/__init__.py +164 -0
- aws_cdk/aws_apigatewayv2/__init__.py +248 -0
- aws_cdk/aws_applicationautoscaling/__init__.py +6 -3
- aws_cdk/aws_autoscaling/__init__.py +8 -8
- aws_cdk/aws_certificatemanager/__init__.py +28 -0
- aws_cdk/aws_chatbot/__init__.py +28 -0
- aws_cdk/aws_cloudfront/__init__.py +92 -0
- aws_cdk/aws_cloudfront/experimental/__init__.py +32 -0
- aws_cdk/aws_cloudwatch/__init__.py +146 -0
- aws_cdk/aws_codebuild/__init__.py +84 -0
- aws_cdk/aws_dynamodb/__init__.py +300 -0
- aws_cdk/aws_ec2/__init__.py +97 -0
- aws_cdk/aws_ecs/__init__.py +351 -110
- aws_cdk/aws_ecs_patterns/__init__.py +77 -42
- aws_cdk/aws_elasticloadbalancing/__init__.py +3 -6
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +732 -7
- aws_cdk/aws_elasticsearch/__init__.py +260 -0
- aws_cdk/aws_kinesis/__init__.py +324 -0
- aws_cdk/aws_kms/__init__.py +197 -0
- aws_cdk/aws_lambda/__init__.py +144 -0
- aws_cdk/aws_logs/__init__.py +58 -0
- aws_cdk/aws_opensearchservice/__init__.py +260 -0
- aws_cdk/aws_rds/__init__.py +384 -0
- aws_cdk/aws_sns/__init__.py +164 -0
- aws_cdk/aws_sqs/__init__.py +164 -0
- aws_cdk/aws_stepfunctions/__init__.py +288 -0
- aws_cdk/aws_synthetics/__init__.py +18 -0
- aws_cdk/cx_api/__init__.py +42 -0
- {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.0.dist-info}/RECORD +36 -36
- {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.174.1.dist-info → aws_cdk_lib-2.175.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_rds/__init__.py
CHANGED
|
@@ -27216,6 +27216,8 @@ class IDatabaseCluster(
|
|
|
27216
27216
|
label: typing.Optional[builtins.str] = None,
|
|
27217
27217
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
27218
27218
|
region: typing.Optional[builtins.str] = None,
|
|
27219
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
27220
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
27219
27221
|
statistic: typing.Optional[builtins.str] = None,
|
|
27220
27222
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
27221
27223
|
) -> _Metric_e396a4dc:
|
|
@@ -27228,6 +27230,8 @@ class IDatabaseCluster(
|
|
|
27228
27230
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
27229
27231
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
27230
27232
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
27233
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
27234
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
27231
27235
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
27232
27236
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
27233
27237
|
'''
|
|
@@ -27243,6 +27247,8 @@ class IDatabaseCluster(
|
|
|
27243
27247
|
label: typing.Optional[builtins.str] = None,
|
|
27244
27248
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
27245
27249
|
region: typing.Optional[builtins.str] = None,
|
|
27250
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
27251
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
27246
27252
|
statistic: typing.Optional[builtins.str] = None,
|
|
27247
27253
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
27248
27254
|
) -> _Metric_e396a4dc:
|
|
@@ -27256,6 +27262,8 @@ class IDatabaseCluster(
|
|
|
27256
27262
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
27257
27263
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
27258
27264
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
27265
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
27266
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
27259
27267
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
27260
27268
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
27261
27269
|
'''
|
|
@@ -27271,6 +27279,8 @@ class IDatabaseCluster(
|
|
|
27271
27279
|
label: typing.Optional[builtins.str] = None,
|
|
27272
27280
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
27273
27281
|
region: typing.Optional[builtins.str] = None,
|
|
27282
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
27283
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
27274
27284
|
statistic: typing.Optional[builtins.str] = None,
|
|
27275
27285
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
27276
27286
|
) -> _Metric_e396a4dc:
|
|
@@ -27284,6 +27294,8 @@ class IDatabaseCluster(
|
|
|
27284
27294
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
27285
27295
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
27286
27296
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
27297
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
27298
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
27287
27299
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
27288
27300
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
27289
27301
|
'''
|
|
@@ -27299,6 +27311,8 @@ class IDatabaseCluster(
|
|
|
27299
27311
|
label: typing.Optional[builtins.str] = None,
|
|
27300
27312
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
27301
27313
|
region: typing.Optional[builtins.str] = None,
|
|
27314
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
27315
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
27302
27316
|
statistic: typing.Optional[builtins.str] = None,
|
|
27303
27317
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
27304
27318
|
) -> _Metric_e396a4dc:
|
|
@@ -27312,6 +27326,8 @@ class IDatabaseCluster(
|
|
|
27312
27326
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
27313
27327
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
27314
27328
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
27329
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
27330
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
27315
27331
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
27316
27332
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
27317
27333
|
'''
|
|
@@ -27327,6 +27343,8 @@ class IDatabaseCluster(
|
|
|
27327
27343
|
label: typing.Optional[builtins.str] = None,
|
|
27328
27344
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
27329
27345
|
region: typing.Optional[builtins.str] = None,
|
|
27346
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
27347
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
27330
27348
|
statistic: typing.Optional[builtins.str] = None,
|
|
27331
27349
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
27332
27350
|
) -> _Metric_e396a4dc:
|
|
@@ -27340,6 +27358,8 @@ class IDatabaseCluster(
|
|
|
27340
27358
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
27341
27359
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
27342
27360
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
27361
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
27362
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
27343
27363
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
27344
27364
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
27345
27365
|
'''
|
|
@@ -27355,6 +27375,8 @@ class IDatabaseCluster(
|
|
|
27355
27375
|
label: typing.Optional[builtins.str] = None,
|
|
27356
27376
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
27357
27377
|
region: typing.Optional[builtins.str] = None,
|
|
27378
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
27379
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
27358
27380
|
statistic: typing.Optional[builtins.str] = None,
|
|
27359
27381
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
27360
27382
|
) -> _Metric_e396a4dc:
|
|
@@ -27368,6 +27390,8 @@ class IDatabaseCluster(
|
|
|
27368
27390
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
27369
27391
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
27370
27392
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
27393
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
27394
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
27371
27395
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
27372
27396
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
27373
27397
|
'''
|
|
@@ -27383,6 +27407,8 @@ class IDatabaseCluster(
|
|
|
27383
27407
|
label: typing.Optional[builtins.str] = None,
|
|
27384
27408
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
27385
27409
|
region: typing.Optional[builtins.str] = None,
|
|
27410
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
27411
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
27386
27412
|
statistic: typing.Optional[builtins.str] = None,
|
|
27387
27413
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
27388
27414
|
) -> _Metric_e396a4dc:
|
|
@@ -27396,6 +27422,8 @@ class IDatabaseCluster(
|
|
|
27396
27422
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
27397
27423
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
27398
27424
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
27425
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
27426
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
27399
27427
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
27400
27428
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
27401
27429
|
'''
|
|
@@ -27411,6 +27439,8 @@ class IDatabaseCluster(
|
|
|
27411
27439
|
label: typing.Optional[builtins.str] = None,
|
|
27412
27440
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
27413
27441
|
region: typing.Optional[builtins.str] = None,
|
|
27442
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
27443
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
27414
27444
|
statistic: typing.Optional[builtins.str] = None,
|
|
27415
27445
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
27416
27446
|
) -> _Metric_e396a4dc:
|
|
@@ -27424,6 +27454,8 @@ class IDatabaseCluster(
|
|
|
27424
27454
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
27425
27455
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
27426
27456
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
27457
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
27458
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
27427
27459
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
27428
27460
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
27429
27461
|
'''
|
|
@@ -27439,6 +27471,8 @@ class IDatabaseCluster(
|
|
|
27439
27471
|
label: typing.Optional[builtins.str] = None,
|
|
27440
27472
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
27441
27473
|
region: typing.Optional[builtins.str] = None,
|
|
27474
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
27475
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
27442
27476
|
statistic: typing.Optional[builtins.str] = None,
|
|
27443
27477
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
27444
27478
|
) -> _Metric_e396a4dc:
|
|
@@ -27452,6 +27486,8 @@ class IDatabaseCluster(
|
|
|
27452
27486
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
27453
27487
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
27454
27488
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
27489
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
27490
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
27455
27491
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
27456
27492
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
27457
27493
|
'''
|
|
@@ -27467,6 +27503,8 @@ class IDatabaseCluster(
|
|
|
27467
27503
|
label: typing.Optional[builtins.str] = None,
|
|
27468
27504
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
27469
27505
|
region: typing.Optional[builtins.str] = None,
|
|
27506
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
27507
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
27470
27508
|
statistic: typing.Optional[builtins.str] = None,
|
|
27471
27509
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
27472
27510
|
) -> _Metric_e396a4dc:
|
|
@@ -27480,6 +27518,8 @@ class IDatabaseCluster(
|
|
|
27480
27518
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
27481
27519
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
27482
27520
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
27521
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
27522
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
27483
27523
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
27484
27524
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
27485
27525
|
'''
|
|
@@ -27495,6 +27535,8 @@ class IDatabaseCluster(
|
|
|
27495
27535
|
label: typing.Optional[builtins.str] = None,
|
|
27496
27536
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
27497
27537
|
region: typing.Optional[builtins.str] = None,
|
|
27538
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
27539
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
27498
27540
|
statistic: typing.Optional[builtins.str] = None,
|
|
27499
27541
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
27500
27542
|
) -> _Metric_e396a4dc:
|
|
@@ -27508,6 +27550,8 @@ class IDatabaseCluster(
|
|
|
27508
27550
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
27509
27551
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
27510
27552
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
27553
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
27554
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
27511
27555
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
27512
27556
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
27513
27557
|
'''
|
|
@@ -27523,6 +27567,8 @@ class IDatabaseCluster(
|
|
|
27523
27567
|
label: typing.Optional[builtins.str] = None,
|
|
27524
27568
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
27525
27569
|
region: typing.Optional[builtins.str] = None,
|
|
27570
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
27571
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
27526
27572
|
statistic: typing.Optional[builtins.str] = None,
|
|
27527
27573
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
27528
27574
|
) -> _Metric_e396a4dc:
|
|
@@ -27536,6 +27582,8 @@ class IDatabaseCluster(
|
|
|
27536
27582
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
27537
27583
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
27538
27584
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
27585
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
27586
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
27539
27587
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
27540
27588
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
27541
27589
|
'''
|
|
@@ -27551,6 +27599,8 @@ class IDatabaseCluster(
|
|
|
27551
27599
|
label: typing.Optional[builtins.str] = None,
|
|
27552
27600
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
27553
27601
|
region: typing.Optional[builtins.str] = None,
|
|
27602
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
27603
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
27554
27604
|
statistic: typing.Optional[builtins.str] = None,
|
|
27555
27605
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
27556
27606
|
) -> _Metric_e396a4dc:
|
|
@@ -27564,6 +27614,8 @@ class IDatabaseCluster(
|
|
|
27564
27614
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
27565
27615
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
27566
27616
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
27617
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
27618
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
27567
27619
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
27568
27620
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
27569
27621
|
'''
|
|
@@ -27579,6 +27631,8 @@ class IDatabaseCluster(
|
|
|
27579
27631
|
label: typing.Optional[builtins.str] = None,
|
|
27580
27632
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
27581
27633
|
region: typing.Optional[builtins.str] = None,
|
|
27634
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
27635
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
27582
27636
|
statistic: typing.Optional[builtins.str] = None,
|
|
27583
27637
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
27584
27638
|
) -> _Metric_e396a4dc:
|
|
@@ -27592,6 +27646,8 @@ class IDatabaseCluster(
|
|
|
27592
27646
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
27593
27647
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
27594
27648
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
27649
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
27650
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
27595
27651
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
27596
27652
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
27597
27653
|
'''
|
|
@@ -27607,6 +27663,8 @@ class IDatabaseCluster(
|
|
|
27607
27663
|
label: typing.Optional[builtins.str] = None,
|
|
27608
27664
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
27609
27665
|
region: typing.Optional[builtins.str] = None,
|
|
27666
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
27667
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
27610
27668
|
statistic: typing.Optional[builtins.str] = None,
|
|
27611
27669
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
27612
27670
|
) -> _Metric_e396a4dc:
|
|
@@ -27620,6 +27678,8 @@ class IDatabaseCluster(
|
|
|
27620
27678
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
27621
27679
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
27622
27680
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
27681
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
27682
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
27623
27683
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
27624
27684
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
27625
27685
|
'''
|
|
@@ -27800,6 +27860,8 @@ class _IDatabaseClusterProxy(
|
|
|
27800
27860
|
label: typing.Optional[builtins.str] = None,
|
|
27801
27861
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
27802
27862
|
region: typing.Optional[builtins.str] = None,
|
|
27863
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
27864
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
27803
27865
|
statistic: typing.Optional[builtins.str] = None,
|
|
27804
27866
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
27805
27867
|
) -> _Metric_e396a4dc:
|
|
@@ -27812,6 +27874,8 @@ class _IDatabaseClusterProxy(
|
|
|
27812
27874
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
27813
27875
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
27814
27876
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
27877
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
27878
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
27815
27879
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
27816
27880
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
27817
27881
|
'''
|
|
@@ -27825,6 +27889,8 @@ class _IDatabaseClusterProxy(
|
|
|
27825
27889
|
label=label,
|
|
27826
27890
|
period=period,
|
|
27827
27891
|
region=region,
|
|
27892
|
+
stack_account=stack_account,
|
|
27893
|
+
stack_region=stack_region,
|
|
27828
27894
|
statistic=statistic,
|
|
27829
27895
|
unit=unit,
|
|
27830
27896
|
)
|
|
@@ -27841,6 +27907,8 @@ class _IDatabaseClusterProxy(
|
|
|
27841
27907
|
label: typing.Optional[builtins.str] = None,
|
|
27842
27908
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
27843
27909
|
region: typing.Optional[builtins.str] = None,
|
|
27910
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
27911
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
27844
27912
|
statistic: typing.Optional[builtins.str] = None,
|
|
27845
27913
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
27846
27914
|
) -> _Metric_e396a4dc:
|
|
@@ -27854,6 +27922,8 @@ class _IDatabaseClusterProxy(
|
|
|
27854
27922
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
27855
27923
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
27856
27924
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
27925
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
27926
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
27857
27927
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
27858
27928
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
27859
27929
|
'''
|
|
@@ -27864,6 +27934,8 @@ class _IDatabaseClusterProxy(
|
|
|
27864
27934
|
label=label,
|
|
27865
27935
|
period=period,
|
|
27866
27936
|
region=region,
|
|
27937
|
+
stack_account=stack_account,
|
|
27938
|
+
stack_region=stack_region,
|
|
27867
27939
|
statistic=statistic,
|
|
27868
27940
|
unit=unit,
|
|
27869
27941
|
)
|
|
@@ -27880,6 +27952,8 @@ class _IDatabaseClusterProxy(
|
|
|
27880
27952
|
label: typing.Optional[builtins.str] = None,
|
|
27881
27953
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
27882
27954
|
region: typing.Optional[builtins.str] = None,
|
|
27955
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
27956
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
27883
27957
|
statistic: typing.Optional[builtins.str] = None,
|
|
27884
27958
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
27885
27959
|
) -> _Metric_e396a4dc:
|
|
@@ -27893,6 +27967,8 @@ class _IDatabaseClusterProxy(
|
|
|
27893
27967
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
27894
27968
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
27895
27969
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
27970
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
27971
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
27896
27972
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
27897
27973
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
27898
27974
|
'''
|
|
@@ -27903,6 +27979,8 @@ class _IDatabaseClusterProxy(
|
|
|
27903
27979
|
label=label,
|
|
27904
27980
|
period=period,
|
|
27905
27981
|
region=region,
|
|
27982
|
+
stack_account=stack_account,
|
|
27983
|
+
stack_region=stack_region,
|
|
27906
27984
|
statistic=statistic,
|
|
27907
27985
|
unit=unit,
|
|
27908
27986
|
)
|
|
@@ -27919,6 +27997,8 @@ class _IDatabaseClusterProxy(
|
|
|
27919
27997
|
label: typing.Optional[builtins.str] = None,
|
|
27920
27998
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
27921
27999
|
region: typing.Optional[builtins.str] = None,
|
|
28000
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28001
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
27922
28002
|
statistic: typing.Optional[builtins.str] = None,
|
|
27923
28003
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
27924
28004
|
) -> _Metric_e396a4dc:
|
|
@@ -27932,6 +28012,8 @@ class _IDatabaseClusterProxy(
|
|
|
27932
28012
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
27933
28013
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
27934
28014
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28015
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28016
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
27935
28017
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
27936
28018
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
27937
28019
|
'''
|
|
@@ -27942,6 +28024,8 @@ class _IDatabaseClusterProxy(
|
|
|
27942
28024
|
label=label,
|
|
27943
28025
|
period=period,
|
|
27944
28026
|
region=region,
|
|
28027
|
+
stack_account=stack_account,
|
|
28028
|
+
stack_region=stack_region,
|
|
27945
28029
|
statistic=statistic,
|
|
27946
28030
|
unit=unit,
|
|
27947
28031
|
)
|
|
@@ -27958,6 +28042,8 @@ class _IDatabaseClusterProxy(
|
|
|
27958
28042
|
label: typing.Optional[builtins.str] = None,
|
|
27959
28043
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
27960
28044
|
region: typing.Optional[builtins.str] = None,
|
|
28045
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28046
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
27961
28047
|
statistic: typing.Optional[builtins.str] = None,
|
|
27962
28048
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
27963
28049
|
) -> _Metric_e396a4dc:
|
|
@@ -27971,6 +28057,8 @@ class _IDatabaseClusterProxy(
|
|
|
27971
28057
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
27972
28058
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
27973
28059
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28060
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28061
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
27974
28062
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
27975
28063
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
27976
28064
|
'''
|
|
@@ -27981,6 +28069,8 @@ class _IDatabaseClusterProxy(
|
|
|
27981
28069
|
label=label,
|
|
27982
28070
|
period=period,
|
|
27983
28071
|
region=region,
|
|
28072
|
+
stack_account=stack_account,
|
|
28073
|
+
stack_region=stack_region,
|
|
27984
28074
|
statistic=statistic,
|
|
27985
28075
|
unit=unit,
|
|
27986
28076
|
)
|
|
@@ -27997,6 +28087,8 @@ class _IDatabaseClusterProxy(
|
|
|
27997
28087
|
label: typing.Optional[builtins.str] = None,
|
|
27998
28088
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
27999
28089
|
region: typing.Optional[builtins.str] = None,
|
|
28090
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28091
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28000
28092
|
statistic: typing.Optional[builtins.str] = None,
|
|
28001
28093
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28002
28094
|
) -> _Metric_e396a4dc:
|
|
@@ -28010,6 +28102,8 @@ class _IDatabaseClusterProxy(
|
|
|
28010
28102
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
28011
28103
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28012
28104
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28105
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28106
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28013
28107
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
28014
28108
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
28015
28109
|
'''
|
|
@@ -28020,6 +28114,8 @@ class _IDatabaseClusterProxy(
|
|
|
28020
28114
|
label=label,
|
|
28021
28115
|
period=period,
|
|
28022
28116
|
region=region,
|
|
28117
|
+
stack_account=stack_account,
|
|
28118
|
+
stack_region=stack_region,
|
|
28023
28119
|
statistic=statistic,
|
|
28024
28120
|
unit=unit,
|
|
28025
28121
|
)
|
|
@@ -28036,6 +28132,8 @@ class _IDatabaseClusterProxy(
|
|
|
28036
28132
|
label: typing.Optional[builtins.str] = None,
|
|
28037
28133
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28038
28134
|
region: typing.Optional[builtins.str] = None,
|
|
28135
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28136
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28039
28137
|
statistic: typing.Optional[builtins.str] = None,
|
|
28040
28138
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28041
28139
|
) -> _Metric_e396a4dc:
|
|
@@ -28049,6 +28147,8 @@ class _IDatabaseClusterProxy(
|
|
|
28049
28147
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
28050
28148
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28051
28149
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28150
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28151
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28052
28152
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
28053
28153
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
28054
28154
|
'''
|
|
@@ -28059,6 +28159,8 @@ class _IDatabaseClusterProxy(
|
|
|
28059
28159
|
label=label,
|
|
28060
28160
|
period=period,
|
|
28061
28161
|
region=region,
|
|
28162
|
+
stack_account=stack_account,
|
|
28163
|
+
stack_region=stack_region,
|
|
28062
28164
|
statistic=statistic,
|
|
28063
28165
|
unit=unit,
|
|
28064
28166
|
)
|
|
@@ -28075,6 +28177,8 @@ class _IDatabaseClusterProxy(
|
|
|
28075
28177
|
label: typing.Optional[builtins.str] = None,
|
|
28076
28178
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28077
28179
|
region: typing.Optional[builtins.str] = None,
|
|
28180
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28181
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28078
28182
|
statistic: typing.Optional[builtins.str] = None,
|
|
28079
28183
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28080
28184
|
) -> _Metric_e396a4dc:
|
|
@@ -28088,6 +28192,8 @@ class _IDatabaseClusterProxy(
|
|
|
28088
28192
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
28089
28193
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28090
28194
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28195
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28196
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28091
28197
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
28092
28198
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
28093
28199
|
'''
|
|
@@ -28098,6 +28204,8 @@ class _IDatabaseClusterProxy(
|
|
|
28098
28204
|
label=label,
|
|
28099
28205
|
period=period,
|
|
28100
28206
|
region=region,
|
|
28207
|
+
stack_account=stack_account,
|
|
28208
|
+
stack_region=stack_region,
|
|
28101
28209
|
statistic=statistic,
|
|
28102
28210
|
unit=unit,
|
|
28103
28211
|
)
|
|
@@ -28114,6 +28222,8 @@ class _IDatabaseClusterProxy(
|
|
|
28114
28222
|
label: typing.Optional[builtins.str] = None,
|
|
28115
28223
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28116
28224
|
region: typing.Optional[builtins.str] = None,
|
|
28225
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28226
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28117
28227
|
statistic: typing.Optional[builtins.str] = None,
|
|
28118
28228
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28119
28229
|
) -> _Metric_e396a4dc:
|
|
@@ -28127,6 +28237,8 @@ class _IDatabaseClusterProxy(
|
|
|
28127
28237
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
28128
28238
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28129
28239
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28240
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28241
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28130
28242
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
28131
28243
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
28132
28244
|
'''
|
|
@@ -28137,6 +28249,8 @@ class _IDatabaseClusterProxy(
|
|
|
28137
28249
|
label=label,
|
|
28138
28250
|
period=period,
|
|
28139
28251
|
region=region,
|
|
28252
|
+
stack_account=stack_account,
|
|
28253
|
+
stack_region=stack_region,
|
|
28140
28254
|
statistic=statistic,
|
|
28141
28255
|
unit=unit,
|
|
28142
28256
|
)
|
|
@@ -28153,6 +28267,8 @@ class _IDatabaseClusterProxy(
|
|
|
28153
28267
|
label: typing.Optional[builtins.str] = None,
|
|
28154
28268
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28155
28269
|
region: typing.Optional[builtins.str] = None,
|
|
28270
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28271
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28156
28272
|
statistic: typing.Optional[builtins.str] = None,
|
|
28157
28273
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28158
28274
|
) -> _Metric_e396a4dc:
|
|
@@ -28166,6 +28282,8 @@ class _IDatabaseClusterProxy(
|
|
|
28166
28282
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
28167
28283
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28168
28284
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28285
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28286
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28169
28287
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
28170
28288
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
28171
28289
|
'''
|
|
@@ -28176,6 +28294,8 @@ class _IDatabaseClusterProxy(
|
|
|
28176
28294
|
label=label,
|
|
28177
28295
|
period=period,
|
|
28178
28296
|
region=region,
|
|
28297
|
+
stack_account=stack_account,
|
|
28298
|
+
stack_region=stack_region,
|
|
28179
28299
|
statistic=statistic,
|
|
28180
28300
|
unit=unit,
|
|
28181
28301
|
)
|
|
@@ -28192,6 +28312,8 @@ class _IDatabaseClusterProxy(
|
|
|
28192
28312
|
label: typing.Optional[builtins.str] = None,
|
|
28193
28313
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28194
28314
|
region: typing.Optional[builtins.str] = None,
|
|
28315
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28316
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28195
28317
|
statistic: typing.Optional[builtins.str] = None,
|
|
28196
28318
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28197
28319
|
) -> _Metric_e396a4dc:
|
|
@@ -28205,6 +28327,8 @@ class _IDatabaseClusterProxy(
|
|
|
28205
28327
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
28206
28328
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28207
28329
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28330
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28331
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28208
28332
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
28209
28333
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
28210
28334
|
'''
|
|
@@ -28215,6 +28339,8 @@ class _IDatabaseClusterProxy(
|
|
|
28215
28339
|
label=label,
|
|
28216
28340
|
period=period,
|
|
28217
28341
|
region=region,
|
|
28342
|
+
stack_account=stack_account,
|
|
28343
|
+
stack_region=stack_region,
|
|
28218
28344
|
statistic=statistic,
|
|
28219
28345
|
unit=unit,
|
|
28220
28346
|
)
|
|
@@ -28231,6 +28357,8 @@ class _IDatabaseClusterProxy(
|
|
|
28231
28357
|
label: typing.Optional[builtins.str] = None,
|
|
28232
28358
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28233
28359
|
region: typing.Optional[builtins.str] = None,
|
|
28360
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28361
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28234
28362
|
statistic: typing.Optional[builtins.str] = None,
|
|
28235
28363
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28236
28364
|
) -> _Metric_e396a4dc:
|
|
@@ -28244,6 +28372,8 @@ class _IDatabaseClusterProxy(
|
|
|
28244
28372
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
28245
28373
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28246
28374
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28375
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28376
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28247
28377
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
28248
28378
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
28249
28379
|
'''
|
|
@@ -28254,6 +28384,8 @@ class _IDatabaseClusterProxy(
|
|
|
28254
28384
|
label=label,
|
|
28255
28385
|
period=period,
|
|
28256
28386
|
region=region,
|
|
28387
|
+
stack_account=stack_account,
|
|
28388
|
+
stack_region=stack_region,
|
|
28257
28389
|
statistic=statistic,
|
|
28258
28390
|
unit=unit,
|
|
28259
28391
|
)
|
|
@@ -28270,6 +28402,8 @@ class _IDatabaseClusterProxy(
|
|
|
28270
28402
|
label: typing.Optional[builtins.str] = None,
|
|
28271
28403
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28272
28404
|
region: typing.Optional[builtins.str] = None,
|
|
28405
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28406
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28273
28407
|
statistic: typing.Optional[builtins.str] = None,
|
|
28274
28408
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28275
28409
|
) -> _Metric_e396a4dc:
|
|
@@ -28283,6 +28417,8 @@ class _IDatabaseClusterProxy(
|
|
|
28283
28417
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
28284
28418
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28285
28419
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28420
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28421
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28286
28422
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
28287
28423
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
28288
28424
|
'''
|
|
@@ -28293,6 +28429,8 @@ class _IDatabaseClusterProxy(
|
|
|
28293
28429
|
label=label,
|
|
28294
28430
|
period=period,
|
|
28295
28431
|
region=region,
|
|
28432
|
+
stack_account=stack_account,
|
|
28433
|
+
stack_region=stack_region,
|
|
28296
28434
|
statistic=statistic,
|
|
28297
28435
|
unit=unit,
|
|
28298
28436
|
)
|
|
@@ -28309,6 +28447,8 @@ class _IDatabaseClusterProxy(
|
|
|
28309
28447
|
label: typing.Optional[builtins.str] = None,
|
|
28310
28448
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28311
28449
|
region: typing.Optional[builtins.str] = None,
|
|
28450
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28451
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28312
28452
|
statistic: typing.Optional[builtins.str] = None,
|
|
28313
28453
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28314
28454
|
) -> _Metric_e396a4dc:
|
|
@@ -28322,6 +28462,8 @@ class _IDatabaseClusterProxy(
|
|
|
28322
28462
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
28323
28463
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28324
28464
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28465
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28466
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28325
28467
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
28326
28468
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
28327
28469
|
'''
|
|
@@ -28332,6 +28474,8 @@ class _IDatabaseClusterProxy(
|
|
|
28332
28474
|
label=label,
|
|
28333
28475
|
period=period,
|
|
28334
28476
|
region=region,
|
|
28477
|
+
stack_account=stack_account,
|
|
28478
|
+
stack_region=stack_region,
|
|
28335
28479
|
statistic=statistic,
|
|
28336
28480
|
unit=unit,
|
|
28337
28481
|
)
|
|
@@ -28348,6 +28492,8 @@ class _IDatabaseClusterProxy(
|
|
|
28348
28492
|
label: typing.Optional[builtins.str] = None,
|
|
28349
28493
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28350
28494
|
region: typing.Optional[builtins.str] = None,
|
|
28495
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28496
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28351
28497
|
statistic: typing.Optional[builtins.str] = None,
|
|
28352
28498
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28353
28499
|
) -> _Metric_e396a4dc:
|
|
@@ -28361,6 +28507,8 @@ class _IDatabaseClusterProxy(
|
|
|
28361
28507
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
28362
28508
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28363
28509
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28510
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28511
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28364
28512
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
28365
28513
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
28366
28514
|
'''
|
|
@@ -28371,6 +28519,8 @@ class _IDatabaseClusterProxy(
|
|
|
28371
28519
|
label=label,
|
|
28372
28520
|
period=period,
|
|
28373
28521
|
region=region,
|
|
28522
|
+
stack_account=stack_account,
|
|
28523
|
+
stack_region=stack_region,
|
|
28374
28524
|
statistic=statistic,
|
|
28375
28525
|
unit=unit,
|
|
28376
28526
|
)
|
|
@@ -28515,6 +28665,8 @@ class IDatabaseInstance(
|
|
|
28515
28665
|
label: typing.Optional[builtins.str] = None,
|
|
28516
28666
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28517
28667
|
region: typing.Optional[builtins.str] = None,
|
|
28668
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28669
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28518
28670
|
statistic: typing.Optional[builtins.str] = None,
|
|
28519
28671
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28520
28672
|
) -> _Metric_e396a4dc:
|
|
@@ -28527,6 +28679,8 @@ class IDatabaseInstance(
|
|
|
28527
28679
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
28528
28680
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28529
28681
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28682
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28683
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28530
28684
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
28531
28685
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
28532
28686
|
'''
|
|
@@ -28542,6 +28696,8 @@ class IDatabaseInstance(
|
|
|
28542
28696
|
label: typing.Optional[builtins.str] = None,
|
|
28543
28697
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28544
28698
|
region: typing.Optional[builtins.str] = None,
|
|
28699
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28700
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28545
28701
|
statistic: typing.Optional[builtins.str] = None,
|
|
28546
28702
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28547
28703
|
) -> _Metric_e396a4dc:
|
|
@@ -28555,6 +28711,8 @@ class IDatabaseInstance(
|
|
|
28555
28711
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
28556
28712
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28557
28713
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28714
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28715
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28558
28716
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
28559
28717
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
28560
28718
|
'''
|
|
@@ -28570,6 +28728,8 @@ class IDatabaseInstance(
|
|
|
28570
28728
|
label: typing.Optional[builtins.str] = None,
|
|
28571
28729
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28572
28730
|
region: typing.Optional[builtins.str] = None,
|
|
28731
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28732
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28573
28733
|
statistic: typing.Optional[builtins.str] = None,
|
|
28574
28734
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28575
28735
|
) -> _Metric_e396a4dc:
|
|
@@ -28583,6 +28743,8 @@ class IDatabaseInstance(
|
|
|
28583
28743
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
28584
28744
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28585
28745
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28746
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28747
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28586
28748
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
28587
28749
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
28588
28750
|
'''
|
|
@@ -28598,6 +28760,8 @@ class IDatabaseInstance(
|
|
|
28598
28760
|
label: typing.Optional[builtins.str] = None,
|
|
28599
28761
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28600
28762
|
region: typing.Optional[builtins.str] = None,
|
|
28763
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28764
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28601
28765
|
statistic: typing.Optional[builtins.str] = None,
|
|
28602
28766
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28603
28767
|
) -> _Metric_e396a4dc:
|
|
@@ -28611,6 +28775,8 @@ class IDatabaseInstance(
|
|
|
28611
28775
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
28612
28776
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28613
28777
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28778
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28779
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28614
28780
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
28615
28781
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
28616
28782
|
'''
|
|
@@ -28626,6 +28792,8 @@ class IDatabaseInstance(
|
|
|
28626
28792
|
label: typing.Optional[builtins.str] = None,
|
|
28627
28793
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28628
28794
|
region: typing.Optional[builtins.str] = None,
|
|
28795
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28796
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28629
28797
|
statistic: typing.Optional[builtins.str] = None,
|
|
28630
28798
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28631
28799
|
) -> _Metric_e396a4dc:
|
|
@@ -28639,6 +28807,8 @@ class IDatabaseInstance(
|
|
|
28639
28807
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
28640
28808
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28641
28809
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28810
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28811
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28642
28812
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
28643
28813
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
28644
28814
|
'''
|
|
@@ -28654,6 +28824,8 @@ class IDatabaseInstance(
|
|
|
28654
28824
|
label: typing.Optional[builtins.str] = None,
|
|
28655
28825
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28656
28826
|
region: typing.Optional[builtins.str] = None,
|
|
28827
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28828
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28657
28829
|
statistic: typing.Optional[builtins.str] = None,
|
|
28658
28830
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28659
28831
|
) -> _Metric_e396a4dc:
|
|
@@ -28667,6 +28839,8 @@ class IDatabaseInstance(
|
|
|
28667
28839
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
28668
28840
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28669
28841
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28842
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28843
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28670
28844
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
28671
28845
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
28672
28846
|
'''
|
|
@@ -28682,6 +28856,8 @@ class IDatabaseInstance(
|
|
|
28682
28856
|
label: typing.Optional[builtins.str] = None,
|
|
28683
28857
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28684
28858
|
region: typing.Optional[builtins.str] = None,
|
|
28859
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28860
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28685
28861
|
statistic: typing.Optional[builtins.str] = None,
|
|
28686
28862
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28687
28863
|
) -> _Metric_e396a4dc:
|
|
@@ -28695,6 +28871,8 @@ class IDatabaseInstance(
|
|
|
28695
28871
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
28696
28872
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28697
28873
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28874
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28875
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28698
28876
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
28699
28877
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
28700
28878
|
'''
|
|
@@ -28886,6 +29064,8 @@ class _IDatabaseInstanceProxy(
|
|
|
28886
29064
|
label: typing.Optional[builtins.str] = None,
|
|
28887
29065
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28888
29066
|
region: typing.Optional[builtins.str] = None,
|
|
29067
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
29068
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28889
29069
|
statistic: typing.Optional[builtins.str] = None,
|
|
28890
29070
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28891
29071
|
) -> _Metric_e396a4dc:
|
|
@@ -28898,6 +29078,8 @@ class _IDatabaseInstanceProxy(
|
|
|
28898
29078
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
28899
29079
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28900
29080
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
29081
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
29082
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28901
29083
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
28902
29084
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
28903
29085
|
'''
|
|
@@ -28911,6 +29093,8 @@ class _IDatabaseInstanceProxy(
|
|
|
28911
29093
|
label=label,
|
|
28912
29094
|
period=period,
|
|
28913
29095
|
region=region,
|
|
29096
|
+
stack_account=stack_account,
|
|
29097
|
+
stack_region=stack_region,
|
|
28914
29098
|
statistic=statistic,
|
|
28915
29099
|
unit=unit,
|
|
28916
29100
|
)
|
|
@@ -28927,6 +29111,8 @@ class _IDatabaseInstanceProxy(
|
|
|
28927
29111
|
label: typing.Optional[builtins.str] = None,
|
|
28928
29112
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28929
29113
|
region: typing.Optional[builtins.str] = None,
|
|
29114
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
29115
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28930
29116
|
statistic: typing.Optional[builtins.str] = None,
|
|
28931
29117
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28932
29118
|
) -> _Metric_e396a4dc:
|
|
@@ -28940,6 +29126,8 @@ class _IDatabaseInstanceProxy(
|
|
|
28940
29126
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
28941
29127
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28942
29128
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
29129
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
29130
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28943
29131
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
28944
29132
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
28945
29133
|
'''
|
|
@@ -28950,6 +29138,8 @@ class _IDatabaseInstanceProxy(
|
|
|
28950
29138
|
label=label,
|
|
28951
29139
|
period=period,
|
|
28952
29140
|
region=region,
|
|
29141
|
+
stack_account=stack_account,
|
|
29142
|
+
stack_region=stack_region,
|
|
28953
29143
|
statistic=statistic,
|
|
28954
29144
|
unit=unit,
|
|
28955
29145
|
)
|
|
@@ -28966,6 +29156,8 @@ class _IDatabaseInstanceProxy(
|
|
|
28966
29156
|
label: typing.Optional[builtins.str] = None,
|
|
28967
29157
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28968
29158
|
region: typing.Optional[builtins.str] = None,
|
|
29159
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
29160
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28969
29161
|
statistic: typing.Optional[builtins.str] = None,
|
|
28970
29162
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28971
29163
|
) -> _Metric_e396a4dc:
|
|
@@ -28979,6 +29171,8 @@ class _IDatabaseInstanceProxy(
|
|
|
28979
29171
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
28980
29172
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28981
29173
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
29174
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
29175
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28982
29176
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
28983
29177
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
28984
29178
|
'''
|
|
@@ -28989,6 +29183,8 @@ class _IDatabaseInstanceProxy(
|
|
|
28989
29183
|
label=label,
|
|
28990
29184
|
period=period,
|
|
28991
29185
|
region=region,
|
|
29186
|
+
stack_account=stack_account,
|
|
29187
|
+
stack_region=stack_region,
|
|
28992
29188
|
statistic=statistic,
|
|
28993
29189
|
unit=unit,
|
|
28994
29190
|
)
|
|
@@ -29005,6 +29201,8 @@ class _IDatabaseInstanceProxy(
|
|
|
29005
29201
|
label: typing.Optional[builtins.str] = None,
|
|
29006
29202
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
29007
29203
|
region: typing.Optional[builtins.str] = None,
|
|
29204
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
29205
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
29008
29206
|
statistic: typing.Optional[builtins.str] = None,
|
|
29009
29207
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
29010
29208
|
) -> _Metric_e396a4dc:
|
|
@@ -29018,6 +29216,8 @@ class _IDatabaseInstanceProxy(
|
|
|
29018
29216
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
29019
29217
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
29020
29218
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
29219
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
29220
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
29021
29221
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
29022
29222
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
29023
29223
|
'''
|
|
@@ -29028,6 +29228,8 @@ class _IDatabaseInstanceProxy(
|
|
|
29028
29228
|
label=label,
|
|
29029
29229
|
period=period,
|
|
29030
29230
|
region=region,
|
|
29231
|
+
stack_account=stack_account,
|
|
29232
|
+
stack_region=stack_region,
|
|
29031
29233
|
statistic=statistic,
|
|
29032
29234
|
unit=unit,
|
|
29033
29235
|
)
|
|
@@ -29044,6 +29246,8 @@ class _IDatabaseInstanceProxy(
|
|
|
29044
29246
|
label: typing.Optional[builtins.str] = None,
|
|
29045
29247
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
29046
29248
|
region: typing.Optional[builtins.str] = None,
|
|
29249
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
29250
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
29047
29251
|
statistic: typing.Optional[builtins.str] = None,
|
|
29048
29252
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
29049
29253
|
) -> _Metric_e396a4dc:
|
|
@@ -29057,6 +29261,8 @@ class _IDatabaseInstanceProxy(
|
|
|
29057
29261
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
29058
29262
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
29059
29263
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
29264
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
29265
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
29060
29266
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
29061
29267
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
29062
29268
|
'''
|
|
@@ -29067,6 +29273,8 @@ class _IDatabaseInstanceProxy(
|
|
|
29067
29273
|
label=label,
|
|
29068
29274
|
period=period,
|
|
29069
29275
|
region=region,
|
|
29276
|
+
stack_account=stack_account,
|
|
29277
|
+
stack_region=stack_region,
|
|
29070
29278
|
statistic=statistic,
|
|
29071
29279
|
unit=unit,
|
|
29072
29280
|
)
|
|
@@ -29083,6 +29291,8 @@ class _IDatabaseInstanceProxy(
|
|
|
29083
29291
|
label: typing.Optional[builtins.str] = None,
|
|
29084
29292
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
29085
29293
|
region: typing.Optional[builtins.str] = None,
|
|
29294
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
29295
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
29086
29296
|
statistic: typing.Optional[builtins.str] = None,
|
|
29087
29297
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
29088
29298
|
) -> _Metric_e396a4dc:
|
|
@@ -29096,6 +29306,8 @@ class _IDatabaseInstanceProxy(
|
|
|
29096
29306
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
29097
29307
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
29098
29308
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
29309
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
29310
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
29099
29311
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
29100
29312
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
29101
29313
|
'''
|
|
@@ -29106,6 +29318,8 @@ class _IDatabaseInstanceProxy(
|
|
|
29106
29318
|
label=label,
|
|
29107
29319
|
period=period,
|
|
29108
29320
|
region=region,
|
|
29321
|
+
stack_account=stack_account,
|
|
29322
|
+
stack_region=stack_region,
|
|
29109
29323
|
statistic=statistic,
|
|
29110
29324
|
unit=unit,
|
|
29111
29325
|
)
|
|
@@ -29122,6 +29336,8 @@ class _IDatabaseInstanceProxy(
|
|
|
29122
29336
|
label: typing.Optional[builtins.str] = None,
|
|
29123
29337
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
29124
29338
|
region: typing.Optional[builtins.str] = None,
|
|
29339
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
29340
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
29125
29341
|
statistic: typing.Optional[builtins.str] = None,
|
|
29126
29342
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
29127
29343
|
) -> _Metric_e396a4dc:
|
|
@@ -29135,6 +29351,8 @@ class _IDatabaseInstanceProxy(
|
|
|
29135
29351
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
29136
29352
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
29137
29353
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
29354
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
29355
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
29138
29356
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
29139
29357
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
29140
29358
|
'''
|
|
@@ -29145,6 +29363,8 @@ class _IDatabaseInstanceProxy(
|
|
|
29145
29363
|
label=label,
|
|
29146
29364
|
period=period,
|
|
29147
29365
|
region=region,
|
|
29366
|
+
stack_account=stack_account,
|
|
29367
|
+
stack_region=stack_region,
|
|
29148
29368
|
statistic=statistic,
|
|
29149
29369
|
unit=unit,
|
|
29150
29370
|
)
|
|
@@ -40298,6 +40518,8 @@ class DatabaseClusterBase(
|
|
|
40298
40518
|
label: typing.Optional[builtins.str] = None,
|
|
40299
40519
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
40300
40520
|
region: typing.Optional[builtins.str] = None,
|
|
40521
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
40522
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
40301
40523
|
statistic: typing.Optional[builtins.str] = None,
|
|
40302
40524
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
40303
40525
|
) -> _Metric_e396a4dc:
|
|
@@ -40310,6 +40532,8 @@ class DatabaseClusterBase(
|
|
|
40310
40532
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
40311
40533
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
40312
40534
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
40535
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
40536
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
40313
40537
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
40314
40538
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
40315
40539
|
'''
|
|
@@ -40323,6 +40547,8 @@ class DatabaseClusterBase(
|
|
|
40323
40547
|
label=label,
|
|
40324
40548
|
period=period,
|
|
40325
40549
|
region=region,
|
|
40550
|
+
stack_account=stack_account,
|
|
40551
|
+
stack_region=stack_region,
|
|
40326
40552
|
statistic=statistic,
|
|
40327
40553
|
unit=unit,
|
|
40328
40554
|
)
|
|
@@ -40339,6 +40565,8 @@ class DatabaseClusterBase(
|
|
|
40339
40565
|
label: typing.Optional[builtins.str] = None,
|
|
40340
40566
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
40341
40567
|
region: typing.Optional[builtins.str] = None,
|
|
40568
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
40569
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
40342
40570
|
statistic: typing.Optional[builtins.str] = None,
|
|
40343
40571
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
40344
40572
|
) -> _Metric_e396a4dc:
|
|
@@ -40352,6 +40580,8 @@ class DatabaseClusterBase(
|
|
|
40352
40580
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
40353
40581
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
40354
40582
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
40583
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
40584
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
40355
40585
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
40356
40586
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
40357
40587
|
'''
|
|
@@ -40362,6 +40592,8 @@ class DatabaseClusterBase(
|
|
|
40362
40592
|
label=label,
|
|
40363
40593
|
period=period,
|
|
40364
40594
|
region=region,
|
|
40595
|
+
stack_account=stack_account,
|
|
40596
|
+
stack_region=stack_region,
|
|
40365
40597
|
statistic=statistic,
|
|
40366
40598
|
unit=unit,
|
|
40367
40599
|
)
|
|
@@ -40378,6 +40610,8 @@ class DatabaseClusterBase(
|
|
|
40378
40610
|
label: typing.Optional[builtins.str] = None,
|
|
40379
40611
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
40380
40612
|
region: typing.Optional[builtins.str] = None,
|
|
40613
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
40614
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
40381
40615
|
statistic: typing.Optional[builtins.str] = None,
|
|
40382
40616
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
40383
40617
|
) -> _Metric_e396a4dc:
|
|
@@ -40391,6 +40625,8 @@ class DatabaseClusterBase(
|
|
|
40391
40625
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
40392
40626
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
40393
40627
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
40628
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
40629
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
40394
40630
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
40395
40631
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
40396
40632
|
'''
|
|
@@ -40401,6 +40637,8 @@ class DatabaseClusterBase(
|
|
|
40401
40637
|
label=label,
|
|
40402
40638
|
period=period,
|
|
40403
40639
|
region=region,
|
|
40640
|
+
stack_account=stack_account,
|
|
40641
|
+
stack_region=stack_region,
|
|
40404
40642
|
statistic=statistic,
|
|
40405
40643
|
unit=unit,
|
|
40406
40644
|
)
|
|
@@ -40417,6 +40655,8 @@ class DatabaseClusterBase(
|
|
|
40417
40655
|
label: typing.Optional[builtins.str] = None,
|
|
40418
40656
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
40419
40657
|
region: typing.Optional[builtins.str] = None,
|
|
40658
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
40659
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
40420
40660
|
statistic: typing.Optional[builtins.str] = None,
|
|
40421
40661
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
40422
40662
|
) -> _Metric_e396a4dc:
|
|
@@ -40430,6 +40670,8 @@ class DatabaseClusterBase(
|
|
|
40430
40670
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
40431
40671
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
40432
40672
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
40673
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
40674
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
40433
40675
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
40434
40676
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
40435
40677
|
'''
|
|
@@ -40440,6 +40682,8 @@ class DatabaseClusterBase(
|
|
|
40440
40682
|
label=label,
|
|
40441
40683
|
period=period,
|
|
40442
40684
|
region=region,
|
|
40685
|
+
stack_account=stack_account,
|
|
40686
|
+
stack_region=stack_region,
|
|
40443
40687
|
statistic=statistic,
|
|
40444
40688
|
unit=unit,
|
|
40445
40689
|
)
|
|
@@ -40456,6 +40700,8 @@ class DatabaseClusterBase(
|
|
|
40456
40700
|
label: typing.Optional[builtins.str] = None,
|
|
40457
40701
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
40458
40702
|
region: typing.Optional[builtins.str] = None,
|
|
40703
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
40704
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
40459
40705
|
statistic: typing.Optional[builtins.str] = None,
|
|
40460
40706
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
40461
40707
|
) -> _Metric_e396a4dc:
|
|
@@ -40469,6 +40715,8 @@ class DatabaseClusterBase(
|
|
|
40469
40715
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
40470
40716
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
40471
40717
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
40718
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
40719
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
40472
40720
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
40473
40721
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
40474
40722
|
'''
|
|
@@ -40479,6 +40727,8 @@ class DatabaseClusterBase(
|
|
|
40479
40727
|
label=label,
|
|
40480
40728
|
period=period,
|
|
40481
40729
|
region=region,
|
|
40730
|
+
stack_account=stack_account,
|
|
40731
|
+
stack_region=stack_region,
|
|
40482
40732
|
statistic=statistic,
|
|
40483
40733
|
unit=unit,
|
|
40484
40734
|
)
|
|
@@ -40495,6 +40745,8 @@ class DatabaseClusterBase(
|
|
|
40495
40745
|
label: typing.Optional[builtins.str] = None,
|
|
40496
40746
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
40497
40747
|
region: typing.Optional[builtins.str] = None,
|
|
40748
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
40749
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
40498
40750
|
statistic: typing.Optional[builtins.str] = None,
|
|
40499
40751
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
40500
40752
|
) -> _Metric_e396a4dc:
|
|
@@ -40508,6 +40760,8 @@ class DatabaseClusterBase(
|
|
|
40508
40760
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
40509
40761
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
40510
40762
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
40763
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
40764
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
40511
40765
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
40512
40766
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
40513
40767
|
'''
|
|
@@ -40518,6 +40772,8 @@ class DatabaseClusterBase(
|
|
|
40518
40772
|
label=label,
|
|
40519
40773
|
period=period,
|
|
40520
40774
|
region=region,
|
|
40775
|
+
stack_account=stack_account,
|
|
40776
|
+
stack_region=stack_region,
|
|
40521
40777
|
statistic=statistic,
|
|
40522
40778
|
unit=unit,
|
|
40523
40779
|
)
|
|
@@ -40534,6 +40790,8 @@ class DatabaseClusterBase(
|
|
|
40534
40790
|
label: typing.Optional[builtins.str] = None,
|
|
40535
40791
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
40536
40792
|
region: typing.Optional[builtins.str] = None,
|
|
40793
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
40794
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
40537
40795
|
statistic: typing.Optional[builtins.str] = None,
|
|
40538
40796
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
40539
40797
|
) -> _Metric_e396a4dc:
|
|
@@ -40547,6 +40805,8 @@ class DatabaseClusterBase(
|
|
|
40547
40805
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
40548
40806
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
40549
40807
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
40808
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
40809
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
40550
40810
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
40551
40811
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
40552
40812
|
'''
|
|
@@ -40557,6 +40817,8 @@ class DatabaseClusterBase(
|
|
|
40557
40817
|
label=label,
|
|
40558
40818
|
period=period,
|
|
40559
40819
|
region=region,
|
|
40820
|
+
stack_account=stack_account,
|
|
40821
|
+
stack_region=stack_region,
|
|
40560
40822
|
statistic=statistic,
|
|
40561
40823
|
unit=unit,
|
|
40562
40824
|
)
|
|
@@ -40573,6 +40835,8 @@ class DatabaseClusterBase(
|
|
|
40573
40835
|
label: typing.Optional[builtins.str] = None,
|
|
40574
40836
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
40575
40837
|
region: typing.Optional[builtins.str] = None,
|
|
40838
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
40839
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
40576
40840
|
statistic: typing.Optional[builtins.str] = None,
|
|
40577
40841
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
40578
40842
|
) -> _Metric_e396a4dc:
|
|
@@ -40586,6 +40850,8 @@ class DatabaseClusterBase(
|
|
|
40586
40850
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
40587
40851
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
40588
40852
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
40853
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
40854
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
40589
40855
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
40590
40856
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
40591
40857
|
'''
|
|
@@ -40596,6 +40862,8 @@ class DatabaseClusterBase(
|
|
|
40596
40862
|
label=label,
|
|
40597
40863
|
period=period,
|
|
40598
40864
|
region=region,
|
|
40865
|
+
stack_account=stack_account,
|
|
40866
|
+
stack_region=stack_region,
|
|
40599
40867
|
statistic=statistic,
|
|
40600
40868
|
unit=unit,
|
|
40601
40869
|
)
|
|
@@ -40612,6 +40880,8 @@ class DatabaseClusterBase(
|
|
|
40612
40880
|
label: typing.Optional[builtins.str] = None,
|
|
40613
40881
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
40614
40882
|
region: typing.Optional[builtins.str] = None,
|
|
40883
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
40884
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
40615
40885
|
statistic: typing.Optional[builtins.str] = None,
|
|
40616
40886
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
40617
40887
|
) -> _Metric_e396a4dc:
|
|
@@ -40625,6 +40895,8 @@ class DatabaseClusterBase(
|
|
|
40625
40895
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
40626
40896
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
40627
40897
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
40898
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
40899
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
40628
40900
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
40629
40901
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
40630
40902
|
'''
|
|
@@ -40635,6 +40907,8 @@ class DatabaseClusterBase(
|
|
|
40635
40907
|
label=label,
|
|
40636
40908
|
period=period,
|
|
40637
40909
|
region=region,
|
|
40910
|
+
stack_account=stack_account,
|
|
40911
|
+
stack_region=stack_region,
|
|
40638
40912
|
statistic=statistic,
|
|
40639
40913
|
unit=unit,
|
|
40640
40914
|
)
|
|
@@ -40651,6 +40925,8 @@ class DatabaseClusterBase(
|
|
|
40651
40925
|
label: typing.Optional[builtins.str] = None,
|
|
40652
40926
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
40653
40927
|
region: typing.Optional[builtins.str] = None,
|
|
40928
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
40929
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
40654
40930
|
statistic: typing.Optional[builtins.str] = None,
|
|
40655
40931
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
40656
40932
|
) -> _Metric_e396a4dc:
|
|
@@ -40664,6 +40940,8 @@ class DatabaseClusterBase(
|
|
|
40664
40940
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
40665
40941
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
40666
40942
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
40943
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
40944
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
40667
40945
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
40668
40946
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
40669
40947
|
'''
|
|
@@ -40674,6 +40952,8 @@ class DatabaseClusterBase(
|
|
|
40674
40952
|
label=label,
|
|
40675
40953
|
period=period,
|
|
40676
40954
|
region=region,
|
|
40955
|
+
stack_account=stack_account,
|
|
40956
|
+
stack_region=stack_region,
|
|
40677
40957
|
statistic=statistic,
|
|
40678
40958
|
unit=unit,
|
|
40679
40959
|
)
|
|
@@ -40690,6 +40970,8 @@ class DatabaseClusterBase(
|
|
|
40690
40970
|
label: typing.Optional[builtins.str] = None,
|
|
40691
40971
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
40692
40972
|
region: typing.Optional[builtins.str] = None,
|
|
40973
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
40974
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
40693
40975
|
statistic: typing.Optional[builtins.str] = None,
|
|
40694
40976
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
40695
40977
|
) -> _Metric_e396a4dc:
|
|
@@ -40703,6 +40985,8 @@ class DatabaseClusterBase(
|
|
|
40703
40985
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
40704
40986
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
40705
40987
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
40988
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
40989
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
40706
40990
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
40707
40991
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
40708
40992
|
'''
|
|
@@ -40713,6 +40997,8 @@ class DatabaseClusterBase(
|
|
|
40713
40997
|
label=label,
|
|
40714
40998
|
period=period,
|
|
40715
40999
|
region=region,
|
|
41000
|
+
stack_account=stack_account,
|
|
41001
|
+
stack_region=stack_region,
|
|
40716
41002
|
statistic=statistic,
|
|
40717
41003
|
unit=unit,
|
|
40718
41004
|
)
|
|
@@ -40729,6 +41015,8 @@ class DatabaseClusterBase(
|
|
|
40729
41015
|
label: typing.Optional[builtins.str] = None,
|
|
40730
41016
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
40731
41017
|
region: typing.Optional[builtins.str] = None,
|
|
41018
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
41019
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
40732
41020
|
statistic: typing.Optional[builtins.str] = None,
|
|
40733
41021
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
40734
41022
|
) -> _Metric_e396a4dc:
|
|
@@ -40742,6 +41030,8 @@ class DatabaseClusterBase(
|
|
|
40742
41030
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
40743
41031
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
40744
41032
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
41033
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
41034
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
40745
41035
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
40746
41036
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
40747
41037
|
'''
|
|
@@ -40752,6 +41042,8 @@ class DatabaseClusterBase(
|
|
|
40752
41042
|
label=label,
|
|
40753
41043
|
period=period,
|
|
40754
41044
|
region=region,
|
|
41045
|
+
stack_account=stack_account,
|
|
41046
|
+
stack_region=stack_region,
|
|
40755
41047
|
statistic=statistic,
|
|
40756
41048
|
unit=unit,
|
|
40757
41049
|
)
|
|
@@ -40768,6 +41060,8 @@ class DatabaseClusterBase(
|
|
|
40768
41060
|
label: typing.Optional[builtins.str] = None,
|
|
40769
41061
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
40770
41062
|
region: typing.Optional[builtins.str] = None,
|
|
41063
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
41064
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
40771
41065
|
statistic: typing.Optional[builtins.str] = None,
|
|
40772
41066
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
40773
41067
|
) -> _Metric_e396a4dc:
|
|
@@ -40781,6 +41075,8 @@ class DatabaseClusterBase(
|
|
|
40781
41075
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
40782
41076
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
40783
41077
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
41078
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
41079
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
40784
41080
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
40785
41081
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
40786
41082
|
'''
|
|
@@ -40791,6 +41087,8 @@ class DatabaseClusterBase(
|
|
|
40791
41087
|
label=label,
|
|
40792
41088
|
period=period,
|
|
40793
41089
|
region=region,
|
|
41090
|
+
stack_account=stack_account,
|
|
41091
|
+
stack_region=stack_region,
|
|
40794
41092
|
statistic=statistic,
|
|
40795
41093
|
unit=unit,
|
|
40796
41094
|
)
|
|
@@ -40807,6 +41105,8 @@ class DatabaseClusterBase(
|
|
|
40807
41105
|
label: typing.Optional[builtins.str] = None,
|
|
40808
41106
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
40809
41107
|
region: typing.Optional[builtins.str] = None,
|
|
41108
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
41109
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
40810
41110
|
statistic: typing.Optional[builtins.str] = None,
|
|
40811
41111
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
40812
41112
|
) -> _Metric_e396a4dc:
|
|
@@ -40820,6 +41120,8 @@ class DatabaseClusterBase(
|
|
|
40820
41120
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
40821
41121
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
40822
41122
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
41123
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
41124
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
40823
41125
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
40824
41126
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
40825
41127
|
'''
|
|
@@ -40830,6 +41132,8 @@ class DatabaseClusterBase(
|
|
|
40830
41132
|
label=label,
|
|
40831
41133
|
period=period,
|
|
40832
41134
|
region=region,
|
|
41135
|
+
stack_account=stack_account,
|
|
41136
|
+
stack_region=stack_region,
|
|
40833
41137
|
statistic=statistic,
|
|
40834
41138
|
unit=unit,
|
|
40835
41139
|
)
|
|
@@ -40846,6 +41150,8 @@ class DatabaseClusterBase(
|
|
|
40846
41150
|
label: typing.Optional[builtins.str] = None,
|
|
40847
41151
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
40848
41152
|
region: typing.Optional[builtins.str] = None,
|
|
41153
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
41154
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
40849
41155
|
statistic: typing.Optional[builtins.str] = None,
|
|
40850
41156
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
40851
41157
|
) -> _Metric_e396a4dc:
|
|
@@ -40859,6 +41165,8 @@ class DatabaseClusterBase(
|
|
|
40859
41165
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
40860
41166
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
40861
41167
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
41168
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
41169
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
40862
41170
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
40863
41171
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
40864
41172
|
'''
|
|
@@ -40869,6 +41177,8 @@ class DatabaseClusterBase(
|
|
|
40869
41177
|
label=label,
|
|
40870
41178
|
period=period,
|
|
40871
41179
|
region=region,
|
|
41180
|
+
stack_account=stack_account,
|
|
41181
|
+
stack_region=stack_region,
|
|
40872
41182
|
statistic=statistic,
|
|
40873
41183
|
unit=unit,
|
|
40874
41184
|
)
|
|
@@ -41320,6 +41630,8 @@ class DatabaseClusterFromSnapshot(
|
|
|
41320
41630
|
label: typing.Optional[builtins.str] = None,
|
|
41321
41631
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
41322
41632
|
region: typing.Optional[builtins.str] = None,
|
|
41633
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
41634
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
41323
41635
|
statistic: typing.Optional[builtins.str] = None,
|
|
41324
41636
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
41325
41637
|
) -> _Metric_e396a4dc:
|
|
@@ -41337,6 +41649,8 @@ class DatabaseClusterFromSnapshot(
|
|
|
41337
41649
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
41338
41650
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
41339
41651
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
41652
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
41653
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
41340
41654
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
41341
41655
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
41342
41656
|
'''
|
|
@@ -41347,6 +41661,8 @@ class DatabaseClusterFromSnapshot(
|
|
|
41347
41661
|
label=label,
|
|
41348
41662
|
period=period,
|
|
41349
41663
|
region=region,
|
|
41664
|
+
stack_account=stack_account,
|
|
41665
|
+
stack_region=stack_region,
|
|
41350
41666
|
statistic=statistic,
|
|
41351
41667
|
unit=unit,
|
|
41352
41668
|
)
|
|
@@ -41363,6 +41679,8 @@ class DatabaseClusterFromSnapshot(
|
|
|
41363
41679
|
label: typing.Optional[builtins.str] = None,
|
|
41364
41680
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
41365
41681
|
region: typing.Optional[builtins.str] = None,
|
|
41682
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
41683
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
41366
41684
|
statistic: typing.Optional[builtins.str] = None,
|
|
41367
41685
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
41368
41686
|
) -> _Metric_e396a4dc:
|
|
@@ -41374,6 +41692,8 @@ class DatabaseClusterFromSnapshot(
|
|
|
41374
41692
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
41375
41693
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
41376
41694
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
41695
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
41696
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
41377
41697
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
41378
41698
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
41379
41699
|
'''
|
|
@@ -41384,6 +41704,8 @@ class DatabaseClusterFromSnapshot(
|
|
|
41384
41704
|
label=label,
|
|
41385
41705
|
period=period,
|
|
41386
41706
|
region=region,
|
|
41707
|
+
stack_account=stack_account,
|
|
41708
|
+
stack_region=stack_region,
|
|
41387
41709
|
statistic=statistic,
|
|
41388
41710
|
unit=unit,
|
|
41389
41711
|
)
|
|
@@ -41763,6 +42085,8 @@ class DatabaseInstanceBase(
|
|
|
41763
42085
|
label: typing.Optional[builtins.str] = None,
|
|
41764
42086
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
41765
42087
|
region: typing.Optional[builtins.str] = None,
|
|
42088
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
42089
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
41766
42090
|
statistic: typing.Optional[builtins.str] = None,
|
|
41767
42091
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
41768
42092
|
) -> _Metric_e396a4dc:
|
|
@@ -41775,6 +42099,8 @@ class DatabaseInstanceBase(
|
|
|
41775
42099
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
41776
42100
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
41777
42101
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
42102
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
42103
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
41778
42104
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
41779
42105
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
41780
42106
|
'''
|
|
@@ -41788,6 +42114,8 @@ class DatabaseInstanceBase(
|
|
|
41788
42114
|
label=label,
|
|
41789
42115
|
period=period,
|
|
41790
42116
|
region=region,
|
|
42117
|
+
stack_account=stack_account,
|
|
42118
|
+
stack_region=stack_region,
|
|
41791
42119
|
statistic=statistic,
|
|
41792
42120
|
unit=unit,
|
|
41793
42121
|
)
|
|
@@ -41804,6 +42132,8 @@ class DatabaseInstanceBase(
|
|
|
41804
42132
|
label: typing.Optional[builtins.str] = None,
|
|
41805
42133
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
41806
42134
|
region: typing.Optional[builtins.str] = None,
|
|
42135
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
42136
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
41807
42137
|
statistic: typing.Optional[builtins.str] = None,
|
|
41808
42138
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
41809
42139
|
) -> _Metric_e396a4dc:
|
|
@@ -41817,6 +42147,8 @@ class DatabaseInstanceBase(
|
|
|
41817
42147
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
41818
42148
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
41819
42149
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
42150
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
42151
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
41820
42152
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
41821
42153
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
41822
42154
|
'''
|
|
@@ -41827,6 +42159,8 @@ class DatabaseInstanceBase(
|
|
|
41827
42159
|
label=label,
|
|
41828
42160
|
period=period,
|
|
41829
42161
|
region=region,
|
|
42162
|
+
stack_account=stack_account,
|
|
42163
|
+
stack_region=stack_region,
|
|
41830
42164
|
statistic=statistic,
|
|
41831
42165
|
unit=unit,
|
|
41832
42166
|
)
|
|
@@ -41843,6 +42177,8 @@ class DatabaseInstanceBase(
|
|
|
41843
42177
|
label: typing.Optional[builtins.str] = None,
|
|
41844
42178
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
41845
42179
|
region: typing.Optional[builtins.str] = None,
|
|
42180
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
42181
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
41846
42182
|
statistic: typing.Optional[builtins.str] = None,
|
|
41847
42183
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
41848
42184
|
) -> _Metric_e396a4dc:
|
|
@@ -41856,6 +42192,8 @@ class DatabaseInstanceBase(
|
|
|
41856
42192
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
41857
42193
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
41858
42194
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
42195
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
42196
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
41859
42197
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
41860
42198
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
41861
42199
|
'''
|
|
@@ -41866,6 +42204,8 @@ class DatabaseInstanceBase(
|
|
|
41866
42204
|
label=label,
|
|
41867
42205
|
period=period,
|
|
41868
42206
|
region=region,
|
|
42207
|
+
stack_account=stack_account,
|
|
42208
|
+
stack_region=stack_region,
|
|
41869
42209
|
statistic=statistic,
|
|
41870
42210
|
unit=unit,
|
|
41871
42211
|
)
|
|
@@ -41882,6 +42222,8 @@ class DatabaseInstanceBase(
|
|
|
41882
42222
|
label: typing.Optional[builtins.str] = None,
|
|
41883
42223
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
41884
42224
|
region: typing.Optional[builtins.str] = None,
|
|
42225
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
42226
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
41885
42227
|
statistic: typing.Optional[builtins.str] = None,
|
|
41886
42228
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
41887
42229
|
) -> _Metric_e396a4dc:
|
|
@@ -41895,6 +42237,8 @@ class DatabaseInstanceBase(
|
|
|
41895
42237
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
41896
42238
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
41897
42239
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
42240
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
42241
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
41898
42242
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
41899
42243
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
41900
42244
|
'''
|
|
@@ -41905,6 +42249,8 @@ class DatabaseInstanceBase(
|
|
|
41905
42249
|
label=label,
|
|
41906
42250
|
period=period,
|
|
41907
42251
|
region=region,
|
|
42252
|
+
stack_account=stack_account,
|
|
42253
|
+
stack_region=stack_region,
|
|
41908
42254
|
statistic=statistic,
|
|
41909
42255
|
unit=unit,
|
|
41910
42256
|
)
|
|
@@ -41921,6 +42267,8 @@ class DatabaseInstanceBase(
|
|
|
41921
42267
|
label: typing.Optional[builtins.str] = None,
|
|
41922
42268
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
41923
42269
|
region: typing.Optional[builtins.str] = None,
|
|
42270
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
42271
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
41924
42272
|
statistic: typing.Optional[builtins.str] = None,
|
|
41925
42273
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
41926
42274
|
) -> _Metric_e396a4dc:
|
|
@@ -41934,6 +42282,8 @@ class DatabaseInstanceBase(
|
|
|
41934
42282
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
41935
42283
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
41936
42284
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
42285
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
42286
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
41937
42287
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
41938
42288
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
41939
42289
|
'''
|
|
@@ -41944,6 +42294,8 @@ class DatabaseInstanceBase(
|
|
|
41944
42294
|
label=label,
|
|
41945
42295
|
period=period,
|
|
41946
42296
|
region=region,
|
|
42297
|
+
stack_account=stack_account,
|
|
42298
|
+
stack_region=stack_region,
|
|
41947
42299
|
statistic=statistic,
|
|
41948
42300
|
unit=unit,
|
|
41949
42301
|
)
|
|
@@ -41960,6 +42312,8 @@ class DatabaseInstanceBase(
|
|
|
41960
42312
|
label: typing.Optional[builtins.str] = None,
|
|
41961
42313
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
41962
42314
|
region: typing.Optional[builtins.str] = None,
|
|
42315
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
42316
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
41963
42317
|
statistic: typing.Optional[builtins.str] = None,
|
|
41964
42318
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
41965
42319
|
) -> _Metric_e396a4dc:
|
|
@@ -41973,6 +42327,8 @@ class DatabaseInstanceBase(
|
|
|
41973
42327
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
41974
42328
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
41975
42329
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
42330
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
42331
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
41976
42332
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
41977
42333
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
41978
42334
|
'''
|
|
@@ -41983,6 +42339,8 @@ class DatabaseInstanceBase(
|
|
|
41983
42339
|
label=label,
|
|
41984
42340
|
period=period,
|
|
41985
42341
|
region=region,
|
|
42342
|
+
stack_account=stack_account,
|
|
42343
|
+
stack_region=stack_region,
|
|
41986
42344
|
statistic=statistic,
|
|
41987
42345
|
unit=unit,
|
|
41988
42346
|
)
|
|
@@ -41999,6 +42357,8 @@ class DatabaseInstanceBase(
|
|
|
41999
42357
|
label: typing.Optional[builtins.str] = None,
|
|
42000
42358
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
42001
42359
|
region: typing.Optional[builtins.str] = None,
|
|
42360
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
42361
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
42002
42362
|
statistic: typing.Optional[builtins.str] = None,
|
|
42003
42363
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
42004
42364
|
) -> _Metric_e396a4dc:
|
|
@@ -42012,6 +42372,8 @@ class DatabaseInstanceBase(
|
|
|
42012
42372
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
42013
42373
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
42014
42374
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
42375
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
42376
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
42015
42377
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
42016
42378
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
42017
42379
|
'''
|
|
@@ -42022,6 +42384,8 @@ class DatabaseInstanceBase(
|
|
|
42022
42384
|
label=label,
|
|
42023
42385
|
period=period,
|
|
42024
42386
|
region=region,
|
|
42387
|
+
stack_account=stack_account,
|
|
42388
|
+
stack_region=stack_region,
|
|
42025
42389
|
statistic=statistic,
|
|
42026
42390
|
unit=unit,
|
|
42027
42391
|
)
|
|
@@ -45407,6 +45771,8 @@ class DatabaseCluster(
|
|
|
45407
45771
|
label: typing.Optional[builtins.str] = None,
|
|
45408
45772
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
45409
45773
|
region: typing.Optional[builtins.str] = None,
|
|
45774
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
45775
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
45410
45776
|
statistic: typing.Optional[builtins.str] = None,
|
|
45411
45777
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
45412
45778
|
) -> _Metric_e396a4dc:
|
|
@@ -45424,6 +45790,8 @@ class DatabaseCluster(
|
|
|
45424
45790
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
45425
45791
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
45426
45792
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
45793
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
45794
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
45427
45795
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
45428
45796
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
45429
45797
|
'''
|
|
@@ -45434,6 +45802,8 @@ class DatabaseCluster(
|
|
|
45434
45802
|
label=label,
|
|
45435
45803
|
period=period,
|
|
45436
45804
|
region=region,
|
|
45805
|
+
stack_account=stack_account,
|
|
45806
|
+
stack_region=stack_region,
|
|
45437
45807
|
statistic=statistic,
|
|
45438
45808
|
unit=unit,
|
|
45439
45809
|
)
|
|
@@ -45450,6 +45820,8 @@ class DatabaseCluster(
|
|
|
45450
45820
|
label: typing.Optional[builtins.str] = None,
|
|
45451
45821
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
45452
45822
|
region: typing.Optional[builtins.str] = None,
|
|
45823
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
45824
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
45453
45825
|
statistic: typing.Optional[builtins.str] = None,
|
|
45454
45826
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
45455
45827
|
) -> _Metric_e396a4dc:
|
|
@@ -45461,6 +45833,8 @@ class DatabaseCluster(
|
|
|
45461
45833
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
45462
45834
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
45463
45835
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
45836
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
45837
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
45464
45838
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
45465
45839
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
45466
45840
|
'''
|
|
@@ -45471,6 +45845,8 @@ class DatabaseCluster(
|
|
|
45471
45845
|
label=label,
|
|
45472
45846
|
period=period,
|
|
45473
45847
|
region=region,
|
|
45848
|
+
stack_account=stack_account,
|
|
45849
|
+
stack_region=stack_region,
|
|
45474
45850
|
statistic=statistic,
|
|
45475
45851
|
unit=unit,
|
|
45476
45852
|
)
|
|
@@ -49311,6 +49687,8 @@ def _typecheckingstub__cb438e41c5d27e4b968b536ac8e59048e5a810f9216c9316ab7091ead
|
|
|
49311
49687
|
label: typing.Optional[builtins.str] = None,
|
|
49312
49688
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
49313
49689
|
region: typing.Optional[builtins.str] = None,
|
|
49690
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
49691
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
49314
49692
|
statistic: typing.Optional[builtins.str] = None,
|
|
49315
49693
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
49316
49694
|
) -> None:
|
|
@@ -49356,6 +49734,8 @@ def _typecheckingstub__7a74ddedb30a6a3825b0f7fa6abc3a5aa48e031b507410402659ee350
|
|
|
49356
49734
|
label: typing.Optional[builtins.str] = None,
|
|
49357
49735
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
49358
49736
|
region: typing.Optional[builtins.str] = None,
|
|
49737
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
49738
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
49359
49739
|
statistic: typing.Optional[builtins.str] = None,
|
|
49360
49740
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
49361
49741
|
) -> None:
|
|
@@ -50125,6 +50505,8 @@ def _typecheckingstub__4f4ce592b81574a1f6a9ee4b6ab1c756352bb31fa97575b7cf7708b9d
|
|
|
50125
50505
|
label: typing.Optional[builtins.str] = None,
|
|
50126
50506
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
50127
50507
|
region: typing.Optional[builtins.str] = None,
|
|
50508
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
50509
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
50128
50510
|
statistic: typing.Optional[builtins.str] = None,
|
|
50129
50511
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
50130
50512
|
) -> None:
|
|
@@ -50287,6 +50669,8 @@ def _typecheckingstub__d3b875972d333f05c29d29ce0f29c0cd026377583d9fad46eb5cc05f0
|
|
|
50287
50669
|
label: typing.Optional[builtins.str] = None,
|
|
50288
50670
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
50289
50671
|
region: typing.Optional[builtins.str] = None,
|
|
50672
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
50673
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
50290
50674
|
statistic: typing.Optional[builtins.str] = None,
|
|
50291
50675
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
50292
50676
|
) -> None:
|