aws-cdk-lib 2.203.0__py3-none-any.whl → 2.204.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/__init__.py +38 -0
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.203.0.jsii.tgz → aws-cdk-lib@2.204.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigateway/__init__.py +164 -0
- aws_cdk/aws_apigatewayv2/__init__.py +412 -0
- 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 +217 -23
- aws_cdk/aws_codebuild/__init__.py +84 -0
- aws_cdk/aws_dynamodb/__init__.py +316 -2
- aws_cdk/aws_ec2/__init__.py +94 -0
- aws_cdk/aws_ecs/__init__.py +52 -0
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +724 -0
- aws_cdk/aws_elasticsearch/__init__.py +260 -0
- aws_cdk/aws_kinesis/__init__.py +324 -0
- aws_cdk/aws_kinesisfirehose/__init__.py +100 -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_scheduler/__init__.py +210 -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_lib-2.203.0.dist-info → aws_cdk_lib-2.204.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.203.0.dist-info → aws_cdk_lib-2.204.0.dist-info}/RECORD +33 -33
- {aws_cdk_lib-2.203.0.dist-info → aws_cdk_lib-2.204.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.203.0.dist-info → aws_cdk_lib-2.204.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.203.0.dist-info → aws_cdk_lib-2.204.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.203.0.dist-info → aws_cdk_lib-2.204.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_rds/__init__.py
CHANGED
|
@@ -28208,6 +28208,7 @@ class IDatabaseCluster(
|
|
|
28208
28208
|
account: typing.Optional[builtins.str] = None,
|
|
28209
28209
|
color: typing.Optional[builtins.str] = None,
|
|
28210
28210
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
28211
|
+
id: typing.Optional[builtins.str] = None,
|
|
28211
28212
|
label: typing.Optional[builtins.str] = None,
|
|
28212
28213
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28213
28214
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -28215,6 +28216,7 @@ class IDatabaseCluster(
|
|
|
28215
28216
|
stack_region: typing.Optional[builtins.str] = None,
|
|
28216
28217
|
statistic: typing.Optional[builtins.str] = None,
|
|
28217
28218
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28219
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
28218
28220
|
) -> _Metric_e396a4dc:
|
|
28219
28221
|
'''Return the given named metric for this DBCluster.
|
|
28220
28222
|
|
|
@@ -28222,6 +28224,7 @@ class IDatabaseCluster(
|
|
|
28222
28224
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
28223
28225
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
28224
28226
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
28227
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
28225
28228
|
: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
|
|
28226
28229
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28227
28230
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -28229,6 +28232,7 @@ class IDatabaseCluster(
|
|
|
28229
28232
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28230
28233
|
: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
|
|
28231
28234
|
: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
|
|
28235
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
28232
28236
|
'''
|
|
28233
28237
|
...
|
|
28234
28238
|
|
|
@@ -28239,6 +28243,7 @@ class IDatabaseCluster(
|
|
|
28239
28243
|
account: typing.Optional[builtins.str] = None,
|
|
28240
28244
|
color: typing.Optional[builtins.str] = None,
|
|
28241
28245
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
28246
|
+
id: typing.Optional[builtins.str] = None,
|
|
28242
28247
|
label: typing.Optional[builtins.str] = None,
|
|
28243
28248
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28244
28249
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -28246,6 +28251,7 @@ class IDatabaseCluster(
|
|
|
28246
28251
|
stack_region: typing.Optional[builtins.str] = None,
|
|
28247
28252
|
statistic: typing.Optional[builtins.str] = None,
|
|
28248
28253
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28254
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
28249
28255
|
) -> _Metric_e396a4dc:
|
|
28250
28256
|
'''The percentage of CPU utilization.
|
|
28251
28257
|
|
|
@@ -28254,6 +28260,7 @@ class IDatabaseCluster(
|
|
|
28254
28260
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
28255
28261
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
28256
28262
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
28263
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
28257
28264
|
: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
|
|
28258
28265
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28259
28266
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -28261,6 +28268,7 @@ class IDatabaseCluster(
|
|
|
28261
28268
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28262
28269
|
: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
|
|
28263
28270
|
: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
|
|
28271
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
28264
28272
|
'''
|
|
28265
28273
|
...
|
|
28266
28274
|
|
|
@@ -28271,6 +28279,7 @@ class IDatabaseCluster(
|
|
|
28271
28279
|
account: typing.Optional[builtins.str] = None,
|
|
28272
28280
|
color: typing.Optional[builtins.str] = None,
|
|
28273
28281
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
28282
|
+
id: typing.Optional[builtins.str] = None,
|
|
28274
28283
|
label: typing.Optional[builtins.str] = None,
|
|
28275
28284
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28276
28285
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -28278,6 +28287,7 @@ class IDatabaseCluster(
|
|
|
28278
28287
|
stack_region: typing.Optional[builtins.str] = None,
|
|
28279
28288
|
statistic: typing.Optional[builtins.str] = None,
|
|
28280
28289
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28290
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
28281
28291
|
) -> _Metric_e396a4dc:
|
|
28282
28292
|
'''The number of database connections in use.
|
|
28283
28293
|
|
|
@@ -28286,6 +28296,7 @@ class IDatabaseCluster(
|
|
|
28286
28296
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
28287
28297
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
28288
28298
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
28299
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
28289
28300
|
: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
|
|
28290
28301
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28291
28302
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -28293,6 +28304,7 @@ class IDatabaseCluster(
|
|
|
28293
28304
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28294
28305
|
: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
|
|
28295
28306
|
: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
|
|
28307
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
28296
28308
|
'''
|
|
28297
28309
|
...
|
|
28298
28310
|
|
|
@@ -28303,6 +28315,7 @@ class IDatabaseCluster(
|
|
|
28303
28315
|
account: typing.Optional[builtins.str] = None,
|
|
28304
28316
|
color: typing.Optional[builtins.str] = None,
|
|
28305
28317
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
28318
|
+
id: typing.Optional[builtins.str] = None,
|
|
28306
28319
|
label: typing.Optional[builtins.str] = None,
|
|
28307
28320
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28308
28321
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -28310,6 +28323,7 @@ class IDatabaseCluster(
|
|
|
28310
28323
|
stack_region: typing.Optional[builtins.str] = None,
|
|
28311
28324
|
statistic: typing.Optional[builtins.str] = None,
|
|
28312
28325
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28326
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
28313
28327
|
) -> _Metric_e396a4dc:
|
|
28314
28328
|
'''The average number of deadlocks in the database per second.
|
|
28315
28329
|
|
|
@@ -28318,6 +28332,7 @@ class IDatabaseCluster(
|
|
|
28318
28332
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
28319
28333
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
28320
28334
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
28335
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
28321
28336
|
: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
|
|
28322
28337
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28323
28338
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -28325,6 +28340,7 @@ class IDatabaseCluster(
|
|
|
28325
28340
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28326
28341
|
: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
|
|
28327
28342
|
: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
|
|
28343
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
28328
28344
|
'''
|
|
28329
28345
|
...
|
|
28330
28346
|
|
|
@@ -28335,6 +28351,7 @@ class IDatabaseCluster(
|
|
|
28335
28351
|
account: typing.Optional[builtins.str] = None,
|
|
28336
28352
|
color: typing.Optional[builtins.str] = None,
|
|
28337
28353
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
28354
|
+
id: typing.Optional[builtins.str] = None,
|
|
28338
28355
|
label: typing.Optional[builtins.str] = None,
|
|
28339
28356
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28340
28357
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -28342,6 +28359,7 @@ class IDatabaseCluster(
|
|
|
28342
28359
|
stack_region: typing.Optional[builtins.str] = None,
|
|
28343
28360
|
statistic: typing.Optional[builtins.str] = None,
|
|
28344
28361
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28362
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
28345
28363
|
) -> _Metric_e396a4dc:
|
|
28346
28364
|
'''The amount of time that the instance has been running, in seconds.
|
|
28347
28365
|
|
|
@@ -28350,6 +28368,7 @@ class IDatabaseCluster(
|
|
|
28350
28368
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
28351
28369
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
28352
28370
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
28371
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
28353
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
|
|
28354
28373
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28355
28374
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -28357,6 +28376,7 @@ class IDatabaseCluster(
|
|
|
28357
28376
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28358
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
|
|
28359
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
|
|
28379
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
28360
28380
|
'''
|
|
28361
28381
|
...
|
|
28362
28382
|
|
|
@@ -28367,6 +28387,7 @@ class IDatabaseCluster(
|
|
|
28367
28387
|
account: typing.Optional[builtins.str] = None,
|
|
28368
28388
|
color: typing.Optional[builtins.str] = None,
|
|
28369
28389
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
28390
|
+
id: typing.Optional[builtins.str] = None,
|
|
28370
28391
|
label: typing.Optional[builtins.str] = None,
|
|
28371
28392
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28372
28393
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -28374,6 +28395,7 @@ class IDatabaseCluster(
|
|
|
28374
28395
|
stack_region: typing.Optional[builtins.str] = None,
|
|
28375
28396
|
statistic: typing.Optional[builtins.str] = None,
|
|
28376
28397
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28398
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
28377
28399
|
) -> _Metric_e396a4dc:
|
|
28378
28400
|
'''The amount of available random access memory, in bytes.
|
|
28379
28401
|
|
|
@@ -28382,6 +28404,7 @@ class IDatabaseCluster(
|
|
|
28382
28404
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
28383
28405
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
28384
28406
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
28407
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
28385
28408
|
: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
|
|
28386
28409
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28387
28410
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -28389,6 +28412,7 @@ class IDatabaseCluster(
|
|
|
28389
28412
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28390
28413
|
: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
|
|
28391
28414
|
: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
|
|
28415
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
28392
28416
|
'''
|
|
28393
28417
|
...
|
|
28394
28418
|
|
|
@@ -28399,6 +28423,7 @@ class IDatabaseCluster(
|
|
|
28399
28423
|
account: typing.Optional[builtins.str] = None,
|
|
28400
28424
|
color: typing.Optional[builtins.str] = None,
|
|
28401
28425
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
28426
|
+
id: typing.Optional[builtins.str] = None,
|
|
28402
28427
|
label: typing.Optional[builtins.str] = None,
|
|
28403
28428
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28404
28429
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -28406,6 +28431,7 @@ class IDatabaseCluster(
|
|
|
28406
28431
|
stack_region: typing.Optional[builtins.str] = None,
|
|
28407
28432
|
statistic: typing.Optional[builtins.str] = None,
|
|
28408
28433
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28434
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
28409
28435
|
) -> _Metric_e396a4dc:
|
|
28410
28436
|
'''The amount of local storage available, in bytes.
|
|
28411
28437
|
|
|
@@ -28414,6 +28440,7 @@ class IDatabaseCluster(
|
|
|
28414
28440
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
28415
28441
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
28416
28442
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
28443
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
28417
28444
|
: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
|
|
28418
28445
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28419
28446
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -28421,6 +28448,7 @@ class IDatabaseCluster(
|
|
|
28421
28448
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28422
28449
|
: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
|
|
28423
28450
|
: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
|
|
28451
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
28424
28452
|
'''
|
|
28425
28453
|
...
|
|
28426
28454
|
|
|
@@ -28431,6 +28459,7 @@ class IDatabaseCluster(
|
|
|
28431
28459
|
account: typing.Optional[builtins.str] = None,
|
|
28432
28460
|
color: typing.Optional[builtins.str] = None,
|
|
28433
28461
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
28462
|
+
id: typing.Optional[builtins.str] = None,
|
|
28434
28463
|
label: typing.Optional[builtins.str] = None,
|
|
28435
28464
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28436
28465
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -28438,6 +28467,7 @@ class IDatabaseCluster(
|
|
|
28438
28467
|
stack_region: typing.Optional[builtins.str] = None,
|
|
28439
28468
|
statistic: typing.Optional[builtins.str] = None,
|
|
28440
28469
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28470
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
28441
28471
|
) -> _Metric_e396a4dc:
|
|
28442
28472
|
'''The amount of network throughput received from clients by each instance, in bytes per second.
|
|
28443
28473
|
|
|
@@ -28446,6 +28476,7 @@ class IDatabaseCluster(
|
|
|
28446
28476
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
28447
28477
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
28448
28478
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
28479
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
28449
28480
|
: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
|
|
28450
28481
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28451
28482
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -28453,6 +28484,7 @@ class IDatabaseCluster(
|
|
|
28453
28484
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28454
28485
|
: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
|
|
28455
28486
|
: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
|
|
28487
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
28456
28488
|
'''
|
|
28457
28489
|
...
|
|
28458
28490
|
|
|
@@ -28463,6 +28495,7 @@ class IDatabaseCluster(
|
|
|
28463
28495
|
account: typing.Optional[builtins.str] = None,
|
|
28464
28496
|
color: typing.Optional[builtins.str] = None,
|
|
28465
28497
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
28498
|
+
id: typing.Optional[builtins.str] = None,
|
|
28466
28499
|
label: typing.Optional[builtins.str] = None,
|
|
28467
28500
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28468
28501
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -28470,6 +28503,7 @@ class IDatabaseCluster(
|
|
|
28470
28503
|
stack_region: typing.Optional[builtins.str] = None,
|
|
28471
28504
|
statistic: typing.Optional[builtins.str] = None,
|
|
28472
28505
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28506
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
28473
28507
|
) -> _Metric_e396a4dc:
|
|
28474
28508
|
'''The amount of network throughput both received from and transmitted to clients by each instance, in bytes per second.
|
|
28475
28509
|
|
|
@@ -28478,6 +28512,7 @@ class IDatabaseCluster(
|
|
|
28478
28512
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
28479
28513
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
28480
28514
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
28515
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
28481
28516
|
: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
|
|
28482
28517
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28483
28518
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -28485,6 +28520,7 @@ class IDatabaseCluster(
|
|
|
28485
28520
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28486
28521
|
: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
|
|
28487
28522
|
: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
|
|
28523
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
28488
28524
|
'''
|
|
28489
28525
|
...
|
|
28490
28526
|
|
|
@@ -28495,6 +28531,7 @@ class IDatabaseCluster(
|
|
|
28495
28531
|
account: typing.Optional[builtins.str] = None,
|
|
28496
28532
|
color: typing.Optional[builtins.str] = None,
|
|
28497
28533
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
28534
|
+
id: typing.Optional[builtins.str] = None,
|
|
28498
28535
|
label: typing.Optional[builtins.str] = None,
|
|
28499
28536
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28500
28537
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -28502,6 +28539,7 @@ class IDatabaseCluster(
|
|
|
28502
28539
|
stack_region: typing.Optional[builtins.str] = None,
|
|
28503
28540
|
statistic: typing.Optional[builtins.str] = None,
|
|
28504
28541
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28542
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
28505
28543
|
) -> _Metric_e396a4dc:
|
|
28506
28544
|
'''The amount of network throughput sent to clients by each instance, in bytes per second.
|
|
28507
28545
|
|
|
@@ -28510,6 +28548,7 @@ class IDatabaseCluster(
|
|
|
28510
28548
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
28511
28549
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
28512
28550
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
28551
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
28513
28552
|
: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
|
|
28514
28553
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28515
28554
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -28517,6 +28556,7 @@ class IDatabaseCluster(
|
|
|
28517
28556
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28518
28557
|
: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
|
|
28519
28558
|
: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
|
|
28559
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
28520
28560
|
'''
|
|
28521
28561
|
...
|
|
28522
28562
|
|
|
@@ -28527,6 +28567,7 @@ class IDatabaseCluster(
|
|
|
28527
28567
|
account: typing.Optional[builtins.str] = None,
|
|
28528
28568
|
color: typing.Optional[builtins.str] = None,
|
|
28529
28569
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
28570
|
+
id: typing.Optional[builtins.str] = None,
|
|
28530
28571
|
label: typing.Optional[builtins.str] = None,
|
|
28531
28572
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28532
28573
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -28534,6 +28575,7 @@ class IDatabaseCluster(
|
|
|
28534
28575
|
stack_region: typing.Optional[builtins.str] = None,
|
|
28535
28576
|
statistic: typing.Optional[builtins.str] = None,
|
|
28536
28577
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28578
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
28537
28579
|
) -> _Metric_e396a4dc:
|
|
28538
28580
|
'''The total amount of backup storage in bytes consumed by all Aurora snapshots outside its backup retention window.
|
|
28539
28581
|
|
|
@@ -28542,6 +28584,7 @@ class IDatabaseCluster(
|
|
|
28542
28584
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
28543
28585
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
28544
28586
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
28587
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
28545
28588
|
: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
|
|
28546
28589
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28547
28590
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -28549,6 +28592,7 @@ class IDatabaseCluster(
|
|
|
28549
28592
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28550
28593
|
: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
|
|
28551
28594
|
: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
|
|
28595
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
28552
28596
|
'''
|
|
28553
28597
|
...
|
|
28554
28598
|
|
|
@@ -28559,6 +28603,7 @@ class IDatabaseCluster(
|
|
|
28559
28603
|
account: typing.Optional[builtins.str] = None,
|
|
28560
28604
|
color: typing.Optional[builtins.str] = None,
|
|
28561
28605
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
28606
|
+
id: typing.Optional[builtins.str] = None,
|
|
28562
28607
|
label: typing.Optional[builtins.str] = None,
|
|
28563
28608
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28564
28609
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -28566,6 +28611,7 @@ class IDatabaseCluster(
|
|
|
28566
28611
|
stack_region: typing.Optional[builtins.str] = None,
|
|
28567
28612
|
statistic: typing.Optional[builtins.str] = None,
|
|
28568
28613
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28614
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
28569
28615
|
) -> _Metric_e396a4dc:
|
|
28570
28616
|
'''The total amount of backup storage in bytes for which you are billed.
|
|
28571
28617
|
|
|
@@ -28574,6 +28620,7 @@ class IDatabaseCluster(
|
|
|
28574
28620
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
28575
28621
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
28576
28622
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
28623
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
28577
28624
|
: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
|
|
28578
28625
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28579
28626
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -28581,6 +28628,7 @@ class IDatabaseCluster(
|
|
|
28581
28628
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28582
28629
|
: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
|
|
28583
28630
|
: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
|
|
28631
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
28584
28632
|
'''
|
|
28585
28633
|
...
|
|
28586
28634
|
|
|
@@ -28591,6 +28639,7 @@ class IDatabaseCluster(
|
|
|
28591
28639
|
account: typing.Optional[builtins.str] = None,
|
|
28592
28640
|
color: typing.Optional[builtins.str] = None,
|
|
28593
28641
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
28642
|
+
id: typing.Optional[builtins.str] = None,
|
|
28594
28643
|
label: typing.Optional[builtins.str] = None,
|
|
28595
28644
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28596
28645
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -28598,6 +28647,7 @@ class IDatabaseCluster(
|
|
|
28598
28647
|
stack_region: typing.Optional[builtins.str] = None,
|
|
28599
28648
|
statistic: typing.Optional[builtins.str] = None,
|
|
28600
28649
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28650
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
28601
28651
|
) -> _Metric_e396a4dc:
|
|
28602
28652
|
'''The amount of storage used by your Aurora DB instance, in bytes.
|
|
28603
28653
|
|
|
@@ -28606,6 +28656,7 @@ class IDatabaseCluster(
|
|
|
28606
28656
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
28607
28657
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
28608
28658
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
28659
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
28609
28660
|
: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
|
|
28610
28661
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28611
28662
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -28613,6 +28664,7 @@ class IDatabaseCluster(
|
|
|
28613
28664
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28614
28665
|
: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
28666
|
: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
|
|
28667
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
28616
28668
|
'''
|
|
28617
28669
|
...
|
|
28618
28670
|
|
|
@@ -28623,6 +28675,7 @@ class IDatabaseCluster(
|
|
|
28623
28675
|
account: typing.Optional[builtins.str] = None,
|
|
28624
28676
|
color: typing.Optional[builtins.str] = None,
|
|
28625
28677
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
28678
|
+
id: typing.Optional[builtins.str] = None,
|
|
28626
28679
|
label: typing.Optional[builtins.str] = None,
|
|
28627
28680
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28628
28681
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -28630,6 +28683,7 @@ class IDatabaseCluster(
|
|
|
28630
28683
|
stack_region: typing.Optional[builtins.str] = None,
|
|
28631
28684
|
statistic: typing.Optional[builtins.str] = None,
|
|
28632
28685
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28686
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
28633
28687
|
) -> _Metric_e396a4dc:
|
|
28634
28688
|
'''The number of billed read I/O operations from a cluster volume, reported at 5-minute intervals.
|
|
28635
28689
|
|
|
@@ -28638,6 +28692,7 @@ class IDatabaseCluster(
|
|
|
28638
28692
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
28639
28693
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
28640
28694
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
28695
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
28641
28696
|
: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
|
|
28642
28697
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28643
28698
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -28645,6 +28700,7 @@ class IDatabaseCluster(
|
|
|
28645
28700
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28646
28701
|
: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
|
|
28647
28702
|
: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
|
|
28703
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
28648
28704
|
'''
|
|
28649
28705
|
...
|
|
28650
28706
|
|
|
@@ -28655,6 +28711,7 @@ class IDatabaseCluster(
|
|
|
28655
28711
|
account: typing.Optional[builtins.str] = None,
|
|
28656
28712
|
color: typing.Optional[builtins.str] = None,
|
|
28657
28713
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
28714
|
+
id: typing.Optional[builtins.str] = None,
|
|
28658
28715
|
label: typing.Optional[builtins.str] = None,
|
|
28659
28716
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28660
28717
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -28662,6 +28719,7 @@ class IDatabaseCluster(
|
|
|
28662
28719
|
stack_region: typing.Optional[builtins.str] = None,
|
|
28663
28720
|
statistic: typing.Optional[builtins.str] = None,
|
|
28664
28721
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28722
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
28665
28723
|
) -> _Metric_e396a4dc:
|
|
28666
28724
|
'''The number of write disk I/O operations to the cluster volume, reported at 5-minute intervals.
|
|
28667
28725
|
|
|
@@ -28670,6 +28728,7 @@ class IDatabaseCluster(
|
|
|
28670
28728
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
28671
28729
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
28672
28730
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
28731
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
28673
28732
|
: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
|
|
28674
28733
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28675
28734
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -28677,6 +28736,7 @@ class IDatabaseCluster(
|
|
|
28677
28736
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28678
28737
|
: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
|
|
28679
28738
|
: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
|
|
28739
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
28680
28740
|
'''
|
|
28681
28741
|
...
|
|
28682
28742
|
|
|
@@ -28852,6 +28912,7 @@ class _IDatabaseClusterProxy(
|
|
|
28852
28912
|
account: typing.Optional[builtins.str] = None,
|
|
28853
28913
|
color: typing.Optional[builtins.str] = None,
|
|
28854
28914
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
28915
|
+
id: typing.Optional[builtins.str] = None,
|
|
28855
28916
|
label: typing.Optional[builtins.str] = None,
|
|
28856
28917
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28857
28918
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -28859,6 +28920,7 @@ class _IDatabaseClusterProxy(
|
|
|
28859
28920
|
stack_region: typing.Optional[builtins.str] = None,
|
|
28860
28921
|
statistic: typing.Optional[builtins.str] = None,
|
|
28861
28922
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28923
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
28862
28924
|
) -> _Metric_e396a4dc:
|
|
28863
28925
|
'''Return the given named metric for this DBCluster.
|
|
28864
28926
|
|
|
@@ -28866,6 +28928,7 @@ class _IDatabaseClusterProxy(
|
|
|
28866
28928
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
28867
28929
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
28868
28930
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
28931
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
28869
28932
|
: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
|
|
28870
28933
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28871
28934
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -28873,6 +28936,7 @@ class _IDatabaseClusterProxy(
|
|
|
28873
28936
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28874
28937
|
: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
|
|
28875
28938
|
: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
|
|
28939
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
28876
28940
|
'''
|
|
28877
28941
|
if __debug__:
|
|
28878
28942
|
type_hints = typing.get_type_hints(_typecheckingstub__cb438e41c5d27e4b968b536ac8e59048e5a810f9216c9316ab7091ead553a3cd)
|
|
@@ -28881,6 +28945,7 @@ class _IDatabaseClusterProxy(
|
|
|
28881
28945
|
account=account,
|
|
28882
28946
|
color=color,
|
|
28883
28947
|
dimensions_map=dimensions_map,
|
|
28948
|
+
id=id,
|
|
28884
28949
|
label=label,
|
|
28885
28950
|
period=period,
|
|
28886
28951
|
region=region,
|
|
@@ -28888,6 +28953,7 @@ class _IDatabaseClusterProxy(
|
|
|
28888
28953
|
stack_region=stack_region,
|
|
28889
28954
|
statistic=statistic,
|
|
28890
28955
|
unit=unit,
|
|
28956
|
+
visible=visible,
|
|
28891
28957
|
)
|
|
28892
28958
|
|
|
28893
28959
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metric", [metric_name, props]))
|
|
@@ -28899,6 +28965,7 @@ class _IDatabaseClusterProxy(
|
|
|
28899
28965
|
account: typing.Optional[builtins.str] = None,
|
|
28900
28966
|
color: typing.Optional[builtins.str] = None,
|
|
28901
28967
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
28968
|
+
id: typing.Optional[builtins.str] = None,
|
|
28902
28969
|
label: typing.Optional[builtins.str] = None,
|
|
28903
28970
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28904
28971
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -28906,6 +28973,7 @@ class _IDatabaseClusterProxy(
|
|
|
28906
28973
|
stack_region: typing.Optional[builtins.str] = None,
|
|
28907
28974
|
statistic: typing.Optional[builtins.str] = None,
|
|
28908
28975
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28976
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
28909
28977
|
) -> _Metric_e396a4dc:
|
|
28910
28978
|
'''The percentage of CPU utilization.
|
|
28911
28979
|
|
|
@@ -28914,6 +28982,7 @@ class _IDatabaseClusterProxy(
|
|
|
28914
28982
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
28915
28983
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
28916
28984
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
28985
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
28917
28986
|
: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
|
|
28918
28987
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28919
28988
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -28921,11 +28990,13 @@ class _IDatabaseClusterProxy(
|
|
|
28921
28990
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28922
28991
|
: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
|
|
28923
28992
|
: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
|
|
28993
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
28924
28994
|
'''
|
|
28925
28995
|
props = _MetricOptions_1788b62f(
|
|
28926
28996
|
account=account,
|
|
28927
28997
|
color=color,
|
|
28928
28998
|
dimensions_map=dimensions_map,
|
|
28999
|
+
id=id,
|
|
28929
29000
|
label=label,
|
|
28930
29001
|
period=period,
|
|
28931
29002
|
region=region,
|
|
@@ -28933,6 +29004,7 @@ class _IDatabaseClusterProxy(
|
|
|
28933
29004
|
stack_region=stack_region,
|
|
28934
29005
|
statistic=statistic,
|
|
28935
29006
|
unit=unit,
|
|
29007
|
+
visible=visible,
|
|
28936
29008
|
)
|
|
28937
29009
|
|
|
28938
29010
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricCPUUtilization", [props]))
|
|
@@ -28944,6 +29016,7 @@ class _IDatabaseClusterProxy(
|
|
|
28944
29016
|
account: typing.Optional[builtins.str] = None,
|
|
28945
29017
|
color: typing.Optional[builtins.str] = None,
|
|
28946
29018
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
29019
|
+
id: typing.Optional[builtins.str] = None,
|
|
28947
29020
|
label: typing.Optional[builtins.str] = None,
|
|
28948
29021
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28949
29022
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -28951,6 +29024,7 @@ class _IDatabaseClusterProxy(
|
|
|
28951
29024
|
stack_region: typing.Optional[builtins.str] = None,
|
|
28952
29025
|
statistic: typing.Optional[builtins.str] = None,
|
|
28953
29026
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
29027
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
28954
29028
|
) -> _Metric_e396a4dc:
|
|
28955
29029
|
'''The number of database connections in use.
|
|
28956
29030
|
|
|
@@ -28959,6 +29033,7 @@ class _IDatabaseClusterProxy(
|
|
|
28959
29033
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
28960
29034
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
28961
29035
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
29036
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
28962
29037
|
: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
|
|
28963
29038
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28964
29039
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -28966,11 +29041,13 @@ class _IDatabaseClusterProxy(
|
|
|
28966
29041
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28967
29042
|
: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
|
|
28968
29043
|
: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
|
|
29044
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
28969
29045
|
'''
|
|
28970
29046
|
props = _MetricOptions_1788b62f(
|
|
28971
29047
|
account=account,
|
|
28972
29048
|
color=color,
|
|
28973
29049
|
dimensions_map=dimensions_map,
|
|
29050
|
+
id=id,
|
|
28974
29051
|
label=label,
|
|
28975
29052
|
period=period,
|
|
28976
29053
|
region=region,
|
|
@@ -28978,6 +29055,7 @@ class _IDatabaseClusterProxy(
|
|
|
28978
29055
|
stack_region=stack_region,
|
|
28979
29056
|
statistic=statistic,
|
|
28980
29057
|
unit=unit,
|
|
29058
|
+
visible=visible,
|
|
28981
29059
|
)
|
|
28982
29060
|
|
|
28983
29061
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricDatabaseConnections", [props]))
|
|
@@ -28989,6 +29067,7 @@ class _IDatabaseClusterProxy(
|
|
|
28989
29067
|
account: typing.Optional[builtins.str] = None,
|
|
28990
29068
|
color: typing.Optional[builtins.str] = None,
|
|
28991
29069
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
29070
|
+
id: typing.Optional[builtins.str] = None,
|
|
28992
29071
|
label: typing.Optional[builtins.str] = None,
|
|
28993
29072
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28994
29073
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -28996,6 +29075,7 @@ class _IDatabaseClusterProxy(
|
|
|
28996
29075
|
stack_region: typing.Optional[builtins.str] = None,
|
|
28997
29076
|
statistic: typing.Optional[builtins.str] = None,
|
|
28998
29077
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
29078
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
28999
29079
|
) -> _Metric_e396a4dc:
|
|
29000
29080
|
'''The average number of deadlocks in the database per second.
|
|
29001
29081
|
|
|
@@ -29004,6 +29084,7 @@ class _IDatabaseClusterProxy(
|
|
|
29004
29084
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
29005
29085
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
29006
29086
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
29087
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
29007
29088
|
: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
|
|
29008
29089
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
29009
29090
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -29011,11 +29092,13 @@ class _IDatabaseClusterProxy(
|
|
|
29011
29092
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
29012
29093
|
: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
|
|
29013
29094
|
: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
|
|
29095
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
29014
29096
|
'''
|
|
29015
29097
|
props = _MetricOptions_1788b62f(
|
|
29016
29098
|
account=account,
|
|
29017
29099
|
color=color,
|
|
29018
29100
|
dimensions_map=dimensions_map,
|
|
29101
|
+
id=id,
|
|
29019
29102
|
label=label,
|
|
29020
29103
|
period=period,
|
|
29021
29104
|
region=region,
|
|
@@ -29023,6 +29106,7 @@ class _IDatabaseClusterProxy(
|
|
|
29023
29106
|
stack_region=stack_region,
|
|
29024
29107
|
statistic=statistic,
|
|
29025
29108
|
unit=unit,
|
|
29109
|
+
visible=visible,
|
|
29026
29110
|
)
|
|
29027
29111
|
|
|
29028
29112
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricDeadlocks", [props]))
|
|
@@ -29034,6 +29118,7 @@ class _IDatabaseClusterProxy(
|
|
|
29034
29118
|
account: typing.Optional[builtins.str] = None,
|
|
29035
29119
|
color: typing.Optional[builtins.str] = None,
|
|
29036
29120
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
29121
|
+
id: typing.Optional[builtins.str] = None,
|
|
29037
29122
|
label: typing.Optional[builtins.str] = None,
|
|
29038
29123
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
29039
29124
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -29041,6 +29126,7 @@ class _IDatabaseClusterProxy(
|
|
|
29041
29126
|
stack_region: typing.Optional[builtins.str] = None,
|
|
29042
29127
|
statistic: typing.Optional[builtins.str] = None,
|
|
29043
29128
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
29129
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
29044
29130
|
) -> _Metric_e396a4dc:
|
|
29045
29131
|
'''The amount of time that the instance has been running, in seconds.
|
|
29046
29132
|
|
|
@@ -29049,6 +29135,7 @@ class _IDatabaseClusterProxy(
|
|
|
29049
29135
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
29050
29136
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
29051
29137
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
29138
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
29052
29139
|
: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
|
|
29053
29140
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
29054
29141
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -29056,11 +29143,13 @@ class _IDatabaseClusterProxy(
|
|
|
29056
29143
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
29057
29144
|
: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
|
|
29058
29145
|
: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
|
|
29146
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
29059
29147
|
'''
|
|
29060
29148
|
props = _MetricOptions_1788b62f(
|
|
29061
29149
|
account=account,
|
|
29062
29150
|
color=color,
|
|
29063
29151
|
dimensions_map=dimensions_map,
|
|
29152
|
+
id=id,
|
|
29064
29153
|
label=label,
|
|
29065
29154
|
period=period,
|
|
29066
29155
|
region=region,
|
|
@@ -29068,6 +29157,7 @@ class _IDatabaseClusterProxy(
|
|
|
29068
29157
|
stack_region=stack_region,
|
|
29069
29158
|
statistic=statistic,
|
|
29070
29159
|
unit=unit,
|
|
29160
|
+
visible=visible,
|
|
29071
29161
|
)
|
|
29072
29162
|
|
|
29073
29163
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricEngineUptime", [props]))
|
|
@@ -29079,6 +29169,7 @@ class _IDatabaseClusterProxy(
|
|
|
29079
29169
|
account: typing.Optional[builtins.str] = None,
|
|
29080
29170
|
color: typing.Optional[builtins.str] = None,
|
|
29081
29171
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
29172
|
+
id: typing.Optional[builtins.str] = None,
|
|
29082
29173
|
label: typing.Optional[builtins.str] = None,
|
|
29083
29174
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
29084
29175
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -29086,6 +29177,7 @@ class _IDatabaseClusterProxy(
|
|
|
29086
29177
|
stack_region: typing.Optional[builtins.str] = None,
|
|
29087
29178
|
statistic: typing.Optional[builtins.str] = None,
|
|
29088
29179
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
29180
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
29089
29181
|
) -> _Metric_e396a4dc:
|
|
29090
29182
|
'''The amount of available random access memory, in bytes.
|
|
29091
29183
|
|
|
@@ -29094,6 +29186,7 @@ class _IDatabaseClusterProxy(
|
|
|
29094
29186
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
29095
29187
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
29096
29188
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
29189
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
29097
29190
|
: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
|
|
29098
29191
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
29099
29192
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -29101,11 +29194,13 @@ class _IDatabaseClusterProxy(
|
|
|
29101
29194
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
29102
29195
|
: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
|
|
29103
29196
|
: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
|
|
29197
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
29104
29198
|
'''
|
|
29105
29199
|
props = _MetricOptions_1788b62f(
|
|
29106
29200
|
account=account,
|
|
29107
29201
|
color=color,
|
|
29108
29202
|
dimensions_map=dimensions_map,
|
|
29203
|
+
id=id,
|
|
29109
29204
|
label=label,
|
|
29110
29205
|
period=period,
|
|
29111
29206
|
region=region,
|
|
@@ -29113,6 +29208,7 @@ class _IDatabaseClusterProxy(
|
|
|
29113
29208
|
stack_region=stack_region,
|
|
29114
29209
|
statistic=statistic,
|
|
29115
29210
|
unit=unit,
|
|
29211
|
+
visible=visible,
|
|
29116
29212
|
)
|
|
29117
29213
|
|
|
29118
29214
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricFreeableMemory", [props]))
|
|
@@ -29124,6 +29220,7 @@ class _IDatabaseClusterProxy(
|
|
|
29124
29220
|
account: typing.Optional[builtins.str] = None,
|
|
29125
29221
|
color: typing.Optional[builtins.str] = None,
|
|
29126
29222
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
29223
|
+
id: typing.Optional[builtins.str] = None,
|
|
29127
29224
|
label: typing.Optional[builtins.str] = None,
|
|
29128
29225
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
29129
29226
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -29131,6 +29228,7 @@ class _IDatabaseClusterProxy(
|
|
|
29131
29228
|
stack_region: typing.Optional[builtins.str] = None,
|
|
29132
29229
|
statistic: typing.Optional[builtins.str] = None,
|
|
29133
29230
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
29231
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
29134
29232
|
) -> _Metric_e396a4dc:
|
|
29135
29233
|
'''The amount of local storage available, in bytes.
|
|
29136
29234
|
|
|
@@ -29139,6 +29237,7 @@ class _IDatabaseClusterProxy(
|
|
|
29139
29237
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
29140
29238
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
29141
29239
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
29240
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
29142
29241
|
: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
|
|
29143
29242
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
29144
29243
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -29146,11 +29245,13 @@ class _IDatabaseClusterProxy(
|
|
|
29146
29245
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
29147
29246
|
: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
|
|
29148
29247
|
: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
|
|
29248
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
29149
29249
|
'''
|
|
29150
29250
|
props = _MetricOptions_1788b62f(
|
|
29151
29251
|
account=account,
|
|
29152
29252
|
color=color,
|
|
29153
29253
|
dimensions_map=dimensions_map,
|
|
29254
|
+
id=id,
|
|
29154
29255
|
label=label,
|
|
29155
29256
|
period=period,
|
|
29156
29257
|
region=region,
|
|
@@ -29158,6 +29259,7 @@ class _IDatabaseClusterProxy(
|
|
|
29158
29259
|
stack_region=stack_region,
|
|
29159
29260
|
statistic=statistic,
|
|
29160
29261
|
unit=unit,
|
|
29262
|
+
visible=visible,
|
|
29161
29263
|
)
|
|
29162
29264
|
|
|
29163
29265
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricFreeLocalStorage", [props]))
|
|
@@ -29169,6 +29271,7 @@ class _IDatabaseClusterProxy(
|
|
|
29169
29271
|
account: typing.Optional[builtins.str] = None,
|
|
29170
29272
|
color: typing.Optional[builtins.str] = None,
|
|
29171
29273
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
29274
|
+
id: typing.Optional[builtins.str] = None,
|
|
29172
29275
|
label: typing.Optional[builtins.str] = None,
|
|
29173
29276
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
29174
29277
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -29176,6 +29279,7 @@ class _IDatabaseClusterProxy(
|
|
|
29176
29279
|
stack_region: typing.Optional[builtins.str] = None,
|
|
29177
29280
|
statistic: typing.Optional[builtins.str] = None,
|
|
29178
29281
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
29282
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
29179
29283
|
) -> _Metric_e396a4dc:
|
|
29180
29284
|
'''The amount of network throughput received from clients by each instance, in bytes per second.
|
|
29181
29285
|
|
|
@@ -29184,6 +29288,7 @@ class _IDatabaseClusterProxy(
|
|
|
29184
29288
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
29185
29289
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
29186
29290
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
29291
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
29187
29292
|
: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
|
|
29188
29293
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
29189
29294
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -29191,11 +29296,13 @@ class _IDatabaseClusterProxy(
|
|
|
29191
29296
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
29192
29297
|
: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
|
|
29193
29298
|
: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
|
|
29299
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
29194
29300
|
'''
|
|
29195
29301
|
props = _MetricOptions_1788b62f(
|
|
29196
29302
|
account=account,
|
|
29197
29303
|
color=color,
|
|
29198
29304
|
dimensions_map=dimensions_map,
|
|
29305
|
+
id=id,
|
|
29199
29306
|
label=label,
|
|
29200
29307
|
period=period,
|
|
29201
29308
|
region=region,
|
|
@@ -29203,6 +29310,7 @@ class _IDatabaseClusterProxy(
|
|
|
29203
29310
|
stack_region=stack_region,
|
|
29204
29311
|
statistic=statistic,
|
|
29205
29312
|
unit=unit,
|
|
29313
|
+
visible=visible,
|
|
29206
29314
|
)
|
|
29207
29315
|
|
|
29208
29316
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricNetworkReceiveThroughput", [props]))
|
|
@@ -29214,6 +29322,7 @@ class _IDatabaseClusterProxy(
|
|
|
29214
29322
|
account: typing.Optional[builtins.str] = None,
|
|
29215
29323
|
color: typing.Optional[builtins.str] = None,
|
|
29216
29324
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
29325
|
+
id: typing.Optional[builtins.str] = None,
|
|
29217
29326
|
label: typing.Optional[builtins.str] = None,
|
|
29218
29327
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
29219
29328
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -29221,6 +29330,7 @@ class _IDatabaseClusterProxy(
|
|
|
29221
29330
|
stack_region: typing.Optional[builtins.str] = None,
|
|
29222
29331
|
statistic: typing.Optional[builtins.str] = None,
|
|
29223
29332
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
29333
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
29224
29334
|
) -> _Metric_e396a4dc:
|
|
29225
29335
|
'''The amount of network throughput both received from and transmitted to clients by each instance, in bytes per second.
|
|
29226
29336
|
|
|
@@ -29229,6 +29339,7 @@ class _IDatabaseClusterProxy(
|
|
|
29229
29339
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
29230
29340
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
29231
29341
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
29342
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
29232
29343
|
: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
|
|
29233
29344
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
29234
29345
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -29236,11 +29347,13 @@ class _IDatabaseClusterProxy(
|
|
|
29236
29347
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
29237
29348
|
: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
|
|
29238
29349
|
: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
|
|
29350
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
29239
29351
|
'''
|
|
29240
29352
|
props = _MetricOptions_1788b62f(
|
|
29241
29353
|
account=account,
|
|
29242
29354
|
color=color,
|
|
29243
29355
|
dimensions_map=dimensions_map,
|
|
29356
|
+
id=id,
|
|
29244
29357
|
label=label,
|
|
29245
29358
|
period=period,
|
|
29246
29359
|
region=region,
|
|
@@ -29248,6 +29361,7 @@ class _IDatabaseClusterProxy(
|
|
|
29248
29361
|
stack_region=stack_region,
|
|
29249
29362
|
statistic=statistic,
|
|
29250
29363
|
unit=unit,
|
|
29364
|
+
visible=visible,
|
|
29251
29365
|
)
|
|
29252
29366
|
|
|
29253
29367
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricNetworkThroughput", [props]))
|
|
@@ -29259,6 +29373,7 @@ class _IDatabaseClusterProxy(
|
|
|
29259
29373
|
account: typing.Optional[builtins.str] = None,
|
|
29260
29374
|
color: typing.Optional[builtins.str] = None,
|
|
29261
29375
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
29376
|
+
id: typing.Optional[builtins.str] = None,
|
|
29262
29377
|
label: typing.Optional[builtins.str] = None,
|
|
29263
29378
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
29264
29379
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -29266,6 +29381,7 @@ class _IDatabaseClusterProxy(
|
|
|
29266
29381
|
stack_region: typing.Optional[builtins.str] = None,
|
|
29267
29382
|
statistic: typing.Optional[builtins.str] = None,
|
|
29268
29383
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
29384
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
29269
29385
|
) -> _Metric_e396a4dc:
|
|
29270
29386
|
'''The amount of network throughput sent to clients by each instance, in bytes per second.
|
|
29271
29387
|
|
|
@@ -29274,6 +29390,7 @@ class _IDatabaseClusterProxy(
|
|
|
29274
29390
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
29275
29391
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
29276
29392
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
29393
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
29277
29394
|
: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
|
|
29278
29395
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
29279
29396
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -29281,11 +29398,13 @@ class _IDatabaseClusterProxy(
|
|
|
29281
29398
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
29282
29399
|
: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
|
|
29283
29400
|
: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
|
|
29401
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
29284
29402
|
'''
|
|
29285
29403
|
props = _MetricOptions_1788b62f(
|
|
29286
29404
|
account=account,
|
|
29287
29405
|
color=color,
|
|
29288
29406
|
dimensions_map=dimensions_map,
|
|
29407
|
+
id=id,
|
|
29289
29408
|
label=label,
|
|
29290
29409
|
period=period,
|
|
29291
29410
|
region=region,
|
|
@@ -29293,6 +29412,7 @@ class _IDatabaseClusterProxy(
|
|
|
29293
29412
|
stack_region=stack_region,
|
|
29294
29413
|
statistic=statistic,
|
|
29295
29414
|
unit=unit,
|
|
29415
|
+
visible=visible,
|
|
29296
29416
|
)
|
|
29297
29417
|
|
|
29298
29418
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricNetworkTransmitThroughput", [props]))
|
|
@@ -29304,6 +29424,7 @@ class _IDatabaseClusterProxy(
|
|
|
29304
29424
|
account: typing.Optional[builtins.str] = None,
|
|
29305
29425
|
color: typing.Optional[builtins.str] = None,
|
|
29306
29426
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
29427
|
+
id: typing.Optional[builtins.str] = None,
|
|
29307
29428
|
label: typing.Optional[builtins.str] = None,
|
|
29308
29429
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
29309
29430
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -29311,6 +29432,7 @@ class _IDatabaseClusterProxy(
|
|
|
29311
29432
|
stack_region: typing.Optional[builtins.str] = None,
|
|
29312
29433
|
statistic: typing.Optional[builtins.str] = None,
|
|
29313
29434
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
29435
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
29314
29436
|
) -> _Metric_e396a4dc:
|
|
29315
29437
|
'''The total amount of backup storage in bytes consumed by all Aurora snapshots outside its backup retention window.
|
|
29316
29438
|
|
|
@@ -29319,6 +29441,7 @@ class _IDatabaseClusterProxy(
|
|
|
29319
29441
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
29320
29442
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
29321
29443
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
29444
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
29322
29445
|
: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
|
|
29323
29446
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
29324
29447
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -29326,11 +29449,13 @@ class _IDatabaseClusterProxy(
|
|
|
29326
29449
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
29327
29450
|
: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
|
|
29328
29451
|
: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
|
|
29452
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
29329
29453
|
'''
|
|
29330
29454
|
props = _MetricOptions_1788b62f(
|
|
29331
29455
|
account=account,
|
|
29332
29456
|
color=color,
|
|
29333
29457
|
dimensions_map=dimensions_map,
|
|
29458
|
+
id=id,
|
|
29334
29459
|
label=label,
|
|
29335
29460
|
period=period,
|
|
29336
29461
|
region=region,
|
|
@@ -29338,6 +29463,7 @@ class _IDatabaseClusterProxy(
|
|
|
29338
29463
|
stack_region=stack_region,
|
|
29339
29464
|
statistic=statistic,
|
|
29340
29465
|
unit=unit,
|
|
29466
|
+
visible=visible,
|
|
29341
29467
|
)
|
|
29342
29468
|
|
|
29343
29469
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricSnapshotStorageUsed", [props]))
|
|
@@ -29349,6 +29475,7 @@ class _IDatabaseClusterProxy(
|
|
|
29349
29475
|
account: typing.Optional[builtins.str] = None,
|
|
29350
29476
|
color: typing.Optional[builtins.str] = None,
|
|
29351
29477
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
29478
|
+
id: typing.Optional[builtins.str] = None,
|
|
29352
29479
|
label: typing.Optional[builtins.str] = None,
|
|
29353
29480
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
29354
29481
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -29356,6 +29483,7 @@ class _IDatabaseClusterProxy(
|
|
|
29356
29483
|
stack_region: typing.Optional[builtins.str] = None,
|
|
29357
29484
|
statistic: typing.Optional[builtins.str] = None,
|
|
29358
29485
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
29486
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
29359
29487
|
) -> _Metric_e396a4dc:
|
|
29360
29488
|
'''The total amount of backup storage in bytes for which you are billed.
|
|
29361
29489
|
|
|
@@ -29364,6 +29492,7 @@ class _IDatabaseClusterProxy(
|
|
|
29364
29492
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
29365
29493
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
29366
29494
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
29495
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
29367
29496
|
: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
|
|
29368
29497
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
29369
29498
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -29371,11 +29500,13 @@ class _IDatabaseClusterProxy(
|
|
|
29371
29500
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
29372
29501
|
: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
|
|
29373
29502
|
: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
|
|
29503
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
29374
29504
|
'''
|
|
29375
29505
|
props = _MetricOptions_1788b62f(
|
|
29376
29506
|
account=account,
|
|
29377
29507
|
color=color,
|
|
29378
29508
|
dimensions_map=dimensions_map,
|
|
29509
|
+
id=id,
|
|
29379
29510
|
label=label,
|
|
29380
29511
|
period=period,
|
|
29381
29512
|
region=region,
|
|
@@ -29383,6 +29514,7 @@ class _IDatabaseClusterProxy(
|
|
|
29383
29514
|
stack_region=stack_region,
|
|
29384
29515
|
statistic=statistic,
|
|
29385
29516
|
unit=unit,
|
|
29517
|
+
visible=visible,
|
|
29386
29518
|
)
|
|
29387
29519
|
|
|
29388
29520
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricTotalBackupStorageBilled", [props]))
|
|
@@ -29394,6 +29526,7 @@ class _IDatabaseClusterProxy(
|
|
|
29394
29526
|
account: typing.Optional[builtins.str] = None,
|
|
29395
29527
|
color: typing.Optional[builtins.str] = None,
|
|
29396
29528
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
29529
|
+
id: typing.Optional[builtins.str] = None,
|
|
29397
29530
|
label: typing.Optional[builtins.str] = None,
|
|
29398
29531
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
29399
29532
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -29401,6 +29534,7 @@ class _IDatabaseClusterProxy(
|
|
|
29401
29534
|
stack_region: typing.Optional[builtins.str] = None,
|
|
29402
29535
|
statistic: typing.Optional[builtins.str] = None,
|
|
29403
29536
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
29537
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
29404
29538
|
) -> _Metric_e396a4dc:
|
|
29405
29539
|
'''The amount of storage used by your Aurora DB instance, in bytes.
|
|
29406
29540
|
|
|
@@ -29409,6 +29543,7 @@ class _IDatabaseClusterProxy(
|
|
|
29409
29543
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
29410
29544
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
29411
29545
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
29546
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
29412
29547
|
: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
|
|
29413
29548
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
29414
29549
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -29416,11 +29551,13 @@ class _IDatabaseClusterProxy(
|
|
|
29416
29551
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
29417
29552
|
: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
|
|
29418
29553
|
: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
|
|
29554
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
29419
29555
|
'''
|
|
29420
29556
|
props = _MetricOptions_1788b62f(
|
|
29421
29557
|
account=account,
|
|
29422
29558
|
color=color,
|
|
29423
29559
|
dimensions_map=dimensions_map,
|
|
29560
|
+
id=id,
|
|
29424
29561
|
label=label,
|
|
29425
29562
|
period=period,
|
|
29426
29563
|
region=region,
|
|
@@ -29428,6 +29565,7 @@ class _IDatabaseClusterProxy(
|
|
|
29428
29565
|
stack_region=stack_region,
|
|
29429
29566
|
statistic=statistic,
|
|
29430
29567
|
unit=unit,
|
|
29568
|
+
visible=visible,
|
|
29431
29569
|
)
|
|
29432
29570
|
|
|
29433
29571
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricVolumeBytesUsed", [props]))
|
|
@@ -29439,6 +29577,7 @@ class _IDatabaseClusterProxy(
|
|
|
29439
29577
|
account: typing.Optional[builtins.str] = None,
|
|
29440
29578
|
color: typing.Optional[builtins.str] = None,
|
|
29441
29579
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
29580
|
+
id: typing.Optional[builtins.str] = None,
|
|
29442
29581
|
label: typing.Optional[builtins.str] = None,
|
|
29443
29582
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
29444
29583
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -29446,6 +29585,7 @@ class _IDatabaseClusterProxy(
|
|
|
29446
29585
|
stack_region: typing.Optional[builtins.str] = None,
|
|
29447
29586
|
statistic: typing.Optional[builtins.str] = None,
|
|
29448
29587
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
29588
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
29449
29589
|
) -> _Metric_e396a4dc:
|
|
29450
29590
|
'''The number of billed read I/O operations from a cluster volume, reported at 5-minute intervals.
|
|
29451
29591
|
|
|
@@ -29454,6 +29594,7 @@ class _IDatabaseClusterProxy(
|
|
|
29454
29594
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
29455
29595
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
29456
29596
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
29597
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
29457
29598
|
: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
|
|
29458
29599
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
29459
29600
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -29461,11 +29602,13 @@ class _IDatabaseClusterProxy(
|
|
|
29461
29602
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
29462
29603
|
: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
|
|
29463
29604
|
: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
|
|
29605
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
29464
29606
|
'''
|
|
29465
29607
|
props = _MetricOptions_1788b62f(
|
|
29466
29608
|
account=account,
|
|
29467
29609
|
color=color,
|
|
29468
29610
|
dimensions_map=dimensions_map,
|
|
29611
|
+
id=id,
|
|
29469
29612
|
label=label,
|
|
29470
29613
|
period=period,
|
|
29471
29614
|
region=region,
|
|
@@ -29473,6 +29616,7 @@ class _IDatabaseClusterProxy(
|
|
|
29473
29616
|
stack_region=stack_region,
|
|
29474
29617
|
statistic=statistic,
|
|
29475
29618
|
unit=unit,
|
|
29619
|
+
visible=visible,
|
|
29476
29620
|
)
|
|
29477
29621
|
|
|
29478
29622
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricVolumeReadIOPs", [props]))
|
|
@@ -29484,6 +29628,7 @@ class _IDatabaseClusterProxy(
|
|
|
29484
29628
|
account: typing.Optional[builtins.str] = None,
|
|
29485
29629
|
color: typing.Optional[builtins.str] = None,
|
|
29486
29630
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
29631
|
+
id: typing.Optional[builtins.str] = None,
|
|
29487
29632
|
label: typing.Optional[builtins.str] = None,
|
|
29488
29633
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
29489
29634
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -29491,6 +29636,7 @@ class _IDatabaseClusterProxy(
|
|
|
29491
29636
|
stack_region: typing.Optional[builtins.str] = None,
|
|
29492
29637
|
statistic: typing.Optional[builtins.str] = None,
|
|
29493
29638
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
29639
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
29494
29640
|
) -> _Metric_e396a4dc:
|
|
29495
29641
|
'''The number of write disk I/O operations to the cluster volume, reported at 5-minute intervals.
|
|
29496
29642
|
|
|
@@ -29499,6 +29645,7 @@ class _IDatabaseClusterProxy(
|
|
|
29499
29645
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
29500
29646
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
29501
29647
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
29648
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
29502
29649
|
: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
|
|
29503
29650
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
29504
29651
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -29506,11 +29653,13 @@ class _IDatabaseClusterProxy(
|
|
|
29506
29653
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
29507
29654
|
: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
|
|
29508
29655
|
: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
|
|
29656
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
29509
29657
|
'''
|
|
29510
29658
|
props = _MetricOptions_1788b62f(
|
|
29511
29659
|
account=account,
|
|
29512
29660
|
color=color,
|
|
29513
29661
|
dimensions_map=dimensions_map,
|
|
29662
|
+
id=id,
|
|
29514
29663
|
label=label,
|
|
29515
29664
|
period=period,
|
|
29516
29665
|
region=region,
|
|
@@ -29518,6 +29667,7 @@ class _IDatabaseClusterProxy(
|
|
|
29518
29667
|
stack_region=stack_region,
|
|
29519
29668
|
statistic=statistic,
|
|
29520
29669
|
unit=unit,
|
|
29670
|
+
visible=visible,
|
|
29521
29671
|
)
|
|
29522
29672
|
|
|
29523
29673
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricVolumeWriteIOPs", [props]))
|
|
@@ -29657,6 +29807,7 @@ class IDatabaseInstance(
|
|
|
29657
29807
|
account: typing.Optional[builtins.str] = None,
|
|
29658
29808
|
color: typing.Optional[builtins.str] = None,
|
|
29659
29809
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
29810
|
+
id: typing.Optional[builtins.str] = None,
|
|
29660
29811
|
label: typing.Optional[builtins.str] = None,
|
|
29661
29812
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
29662
29813
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -29664,6 +29815,7 @@ class IDatabaseInstance(
|
|
|
29664
29815
|
stack_region: typing.Optional[builtins.str] = None,
|
|
29665
29816
|
statistic: typing.Optional[builtins.str] = None,
|
|
29666
29817
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
29818
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
29667
29819
|
) -> _Metric_e396a4dc:
|
|
29668
29820
|
'''Return the given named metric for this DBInstance.
|
|
29669
29821
|
|
|
@@ -29671,6 +29823,7 @@ class IDatabaseInstance(
|
|
|
29671
29823
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
29672
29824
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
29673
29825
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
29826
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
29674
29827
|
: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
|
|
29675
29828
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
29676
29829
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -29678,6 +29831,7 @@ class IDatabaseInstance(
|
|
|
29678
29831
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
29679
29832
|
: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
|
|
29680
29833
|
: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
|
|
29834
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
29681
29835
|
'''
|
|
29682
29836
|
...
|
|
29683
29837
|
|
|
@@ -29688,6 +29842,7 @@ class IDatabaseInstance(
|
|
|
29688
29842
|
account: typing.Optional[builtins.str] = None,
|
|
29689
29843
|
color: typing.Optional[builtins.str] = None,
|
|
29690
29844
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
29845
|
+
id: typing.Optional[builtins.str] = None,
|
|
29691
29846
|
label: typing.Optional[builtins.str] = None,
|
|
29692
29847
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
29693
29848
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -29695,6 +29850,7 @@ class IDatabaseInstance(
|
|
|
29695
29850
|
stack_region: typing.Optional[builtins.str] = None,
|
|
29696
29851
|
statistic: typing.Optional[builtins.str] = None,
|
|
29697
29852
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
29853
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
29698
29854
|
) -> _Metric_e396a4dc:
|
|
29699
29855
|
'''The percentage of CPU utilization.
|
|
29700
29856
|
|
|
@@ -29703,6 +29859,7 @@ class IDatabaseInstance(
|
|
|
29703
29859
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
29704
29860
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
29705
29861
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
29862
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
29706
29863
|
: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
|
|
29707
29864
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
29708
29865
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -29710,6 +29867,7 @@ class IDatabaseInstance(
|
|
|
29710
29867
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
29711
29868
|
: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
|
|
29712
29869
|
: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
|
|
29870
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
29713
29871
|
'''
|
|
29714
29872
|
...
|
|
29715
29873
|
|
|
@@ -29720,6 +29878,7 @@ class IDatabaseInstance(
|
|
|
29720
29878
|
account: typing.Optional[builtins.str] = None,
|
|
29721
29879
|
color: typing.Optional[builtins.str] = None,
|
|
29722
29880
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
29881
|
+
id: typing.Optional[builtins.str] = None,
|
|
29723
29882
|
label: typing.Optional[builtins.str] = None,
|
|
29724
29883
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
29725
29884
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -29727,6 +29886,7 @@ class IDatabaseInstance(
|
|
|
29727
29886
|
stack_region: typing.Optional[builtins.str] = None,
|
|
29728
29887
|
statistic: typing.Optional[builtins.str] = None,
|
|
29729
29888
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
29889
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
29730
29890
|
) -> _Metric_e396a4dc:
|
|
29731
29891
|
'''The number of database connections in use.
|
|
29732
29892
|
|
|
@@ -29735,6 +29895,7 @@ class IDatabaseInstance(
|
|
|
29735
29895
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
29736
29896
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
29737
29897
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
29898
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
29738
29899
|
: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
|
|
29739
29900
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
29740
29901
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -29742,6 +29903,7 @@ class IDatabaseInstance(
|
|
|
29742
29903
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
29743
29904
|
: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
|
|
29744
29905
|
: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
|
|
29906
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
29745
29907
|
'''
|
|
29746
29908
|
...
|
|
29747
29909
|
|
|
@@ -29752,6 +29914,7 @@ class IDatabaseInstance(
|
|
|
29752
29914
|
account: typing.Optional[builtins.str] = None,
|
|
29753
29915
|
color: typing.Optional[builtins.str] = None,
|
|
29754
29916
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
29917
|
+
id: typing.Optional[builtins.str] = None,
|
|
29755
29918
|
label: typing.Optional[builtins.str] = None,
|
|
29756
29919
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
29757
29920
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -29759,6 +29922,7 @@ class IDatabaseInstance(
|
|
|
29759
29922
|
stack_region: typing.Optional[builtins.str] = None,
|
|
29760
29923
|
statistic: typing.Optional[builtins.str] = None,
|
|
29761
29924
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
29925
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
29762
29926
|
) -> _Metric_e396a4dc:
|
|
29763
29927
|
'''The amount of available random access memory.
|
|
29764
29928
|
|
|
@@ -29767,6 +29931,7 @@ class IDatabaseInstance(
|
|
|
29767
29931
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
29768
29932
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
29769
29933
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
29934
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
29770
29935
|
: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
|
|
29771
29936
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
29772
29937
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -29774,6 +29939,7 @@ class IDatabaseInstance(
|
|
|
29774
29939
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
29775
29940
|
: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
|
|
29776
29941
|
: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
|
|
29942
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
29777
29943
|
'''
|
|
29778
29944
|
...
|
|
29779
29945
|
|
|
@@ -29784,6 +29950,7 @@ class IDatabaseInstance(
|
|
|
29784
29950
|
account: typing.Optional[builtins.str] = None,
|
|
29785
29951
|
color: typing.Optional[builtins.str] = None,
|
|
29786
29952
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
29953
|
+
id: typing.Optional[builtins.str] = None,
|
|
29787
29954
|
label: typing.Optional[builtins.str] = None,
|
|
29788
29955
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
29789
29956
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -29791,6 +29958,7 @@ class IDatabaseInstance(
|
|
|
29791
29958
|
stack_region: typing.Optional[builtins.str] = None,
|
|
29792
29959
|
statistic: typing.Optional[builtins.str] = None,
|
|
29793
29960
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
29961
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
29794
29962
|
) -> _Metric_e396a4dc:
|
|
29795
29963
|
'''The amount of available storage space.
|
|
29796
29964
|
|
|
@@ -29799,6 +29967,7 @@ class IDatabaseInstance(
|
|
|
29799
29967
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
29800
29968
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
29801
29969
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
29970
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
29802
29971
|
: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
|
|
29803
29972
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
29804
29973
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -29806,6 +29975,7 @@ class IDatabaseInstance(
|
|
|
29806
29975
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
29807
29976
|
: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
|
|
29808
29977
|
: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
|
|
29978
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
29809
29979
|
'''
|
|
29810
29980
|
...
|
|
29811
29981
|
|
|
@@ -29816,6 +29986,7 @@ class IDatabaseInstance(
|
|
|
29816
29986
|
account: typing.Optional[builtins.str] = None,
|
|
29817
29987
|
color: typing.Optional[builtins.str] = None,
|
|
29818
29988
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
29989
|
+
id: typing.Optional[builtins.str] = None,
|
|
29819
29990
|
label: typing.Optional[builtins.str] = None,
|
|
29820
29991
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
29821
29992
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -29823,6 +29994,7 @@ class IDatabaseInstance(
|
|
|
29823
29994
|
stack_region: typing.Optional[builtins.str] = None,
|
|
29824
29995
|
statistic: typing.Optional[builtins.str] = None,
|
|
29825
29996
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
29997
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
29826
29998
|
) -> _Metric_e396a4dc:
|
|
29827
29999
|
'''The average number of disk write I/O operations per second.
|
|
29828
30000
|
|
|
@@ -29831,6 +30003,7 @@ class IDatabaseInstance(
|
|
|
29831
30003
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
29832
30004
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
29833
30005
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
30006
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
29834
30007
|
: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
|
|
29835
30008
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
29836
30009
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -29838,6 +30011,7 @@ class IDatabaseInstance(
|
|
|
29838
30011
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
29839
30012
|
: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
|
|
29840
30013
|
: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
|
|
30014
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
29841
30015
|
'''
|
|
29842
30016
|
...
|
|
29843
30017
|
|
|
@@ -29848,6 +30022,7 @@ class IDatabaseInstance(
|
|
|
29848
30022
|
account: typing.Optional[builtins.str] = None,
|
|
29849
30023
|
color: typing.Optional[builtins.str] = None,
|
|
29850
30024
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
30025
|
+
id: typing.Optional[builtins.str] = None,
|
|
29851
30026
|
label: typing.Optional[builtins.str] = None,
|
|
29852
30027
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
29853
30028
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -29855,6 +30030,7 @@ class IDatabaseInstance(
|
|
|
29855
30030
|
stack_region: typing.Optional[builtins.str] = None,
|
|
29856
30031
|
statistic: typing.Optional[builtins.str] = None,
|
|
29857
30032
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
30033
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
29858
30034
|
) -> _Metric_e396a4dc:
|
|
29859
30035
|
'''The average number of disk read I/O operations per second.
|
|
29860
30036
|
|
|
@@ -29863,6 +30039,7 @@ class IDatabaseInstance(
|
|
|
29863
30039
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
29864
30040
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
29865
30041
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
30042
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
29866
30043
|
: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
|
|
29867
30044
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
29868
30045
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -29870,6 +30047,7 @@ class IDatabaseInstance(
|
|
|
29870
30047
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
29871
30048
|
: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
|
|
29872
30049
|
: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
|
|
30050
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
29873
30051
|
'''
|
|
29874
30052
|
...
|
|
29875
30053
|
|
|
@@ -30056,6 +30234,7 @@ class _IDatabaseInstanceProxy(
|
|
|
30056
30234
|
account: typing.Optional[builtins.str] = None,
|
|
30057
30235
|
color: typing.Optional[builtins.str] = None,
|
|
30058
30236
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
30237
|
+
id: typing.Optional[builtins.str] = None,
|
|
30059
30238
|
label: typing.Optional[builtins.str] = None,
|
|
30060
30239
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
30061
30240
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -30063,6 +30242,7 @@ class _IDatabaseInstanceProxy(
|
|
|
30063
30242
|
stack_region: typing.Optional[builtins.str] = None,
|
|
30064
30243
|
statistic: typing.Optional[builtins.str] = None,
|
|
30065
30244
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
30245
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
30066
30246
|
) -> _Metric_e396a4dc:
|
|
30067
30247
|
'''Return the given named metric for this DBInstance.
|
|
30068
30248
|
|
|
@@ -30070,6 +30250,7 @@ class _IDatabaseInstanceProxy(
|
|
|
30070
30250
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
30071
30251
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
30072
30252
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
30253
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
30073
30254
|
: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
|
|
30074
30255
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
30075
30256
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -30077,6 +30258,7 @@ class _IDatabaseInstanceProxy(
|
|
|
30077
30258
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
30078
30259
|
: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
|
|
30079
30260
|
: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
|
|
30261
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
30080
30262
|
'''
|
|
30081
30263
|
if __debug__:
|
|
30082
30264
|
type_hints = typing.get_type_hints(_typecheckingstub__7a74ddedb30a6a3825b0f7fa6abc3a5aa48e031b507410402659ee350e197fef)
|
|
@@ -30085,6 +30267,7 @@ class _IDatabaseInstanceProxy(
|
|
|
30085
30267
|
account=account,
|
|
30086
30268
|
color=color,
|
|
30087
30269
|
dimensions_map=dimensions_map,
|
|
30270
|
+
id=id,
|
|
30088
30271
|
label=label,
|
|
30089
30272
|
period=period,
|
|
30090
30273
|
region=region,
|
|
@@ -30092,6 +30275,7 @@ class _IDatabaseInstanceProxy(
|
|
|
30092
30275
|
stack_region=stack_region,
|
|
30093
30276
|
statistic=statistic,
|
|
30094
30277
|
unit=unit,
|
|
30278
|
+
visible=visible,
|
|
30095
30279
|
)
|
|
30096
30280
|
|
|
30097
30281
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metric", [metric_name, props]))
|
|
@@ -30103,6 +30287,7 @@ class _IDatabaseInstanceProxy(
|
|
|
30103
30287
|
account: typing.Optional[builtins.str] = None,
|
|
30104
30288
|
color: typing.Optional[builtins.str] = None,
|
|
30105
30289
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
30290
|
+
id: typing.Optional[builtins.str] = None,
|
|
30106
30291
|
label: typing.Optional[builtins.str] = None,
|
|
30107
30292
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
30108
30293
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -30110,6 +30295,7 @@ class _IDatabaseInstanceProxy(
|
|
|
30110
30295
|
stack_region: typing.Optional[builtins.str] = None,
|
|
30111
30296
|
statistic: typing.Optional[builtins.str] = None,
|
|
30112
30297
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
30298
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
30113
30299
|
) -> _Metric_e396a4dc:
|
|
30114
30300
|
'''The percentage of CPU utilization.
|
|
30115
30301
|
|
|
@@ -30118,6 +30304,7 @@ class _IDatabaseInstanceProxy(
|
|
|
30118
30304
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
30119
30305
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
30120
30306
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
30307
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
30121
30308
|
: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
|
|
30122
30309
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
30123
30310
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -30125,11 +30312,13 @@ class _IDatabaseInstanceProxy(
|
|
|
30125
30312
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
30126
30313
|
: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
|
|
30127
30314
|
: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
|
|
30315
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
30128
30316
|
'''
|
|
30129
30317
|
props = _MetricOptions_1788b62f(
|
|
30130
30318
|
account=account,
|
|
30131
30319
|
color=color,
|
|
30132
30320
|
dimensions_map=dimensions_map,
|
|
30321
|
+
id=id,
|
|
30133
30322
|
label=label,
|
|
30134
30323
|
period=period,
|
|
30135
30324
|
region=region,
|
|
@@ -30137,6 +30326,7 @@ class _IDatabaseInstanceProxy(
|
|
|
30137
30326
|
stack_region=stack_region,
|
|
30138
30327
|
statistic=statistic,
|
|
30139
30328
|
unit=unit,
|
|
30329
|
+
visible=visible,
|
|
30140
30330
|
)
|
|
30141
30331
|
|
|
30142
30332
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricCPUUtilization", [props]))
|
|
@@ -30148,6 +30338,7 @@ class _IDatabaseInstanceProxy(
|
|
|
30148
30338
|
account: typing.Optional[builtins.str] = None,
|
|
30149
30339
|
color: typing.Optional[builtins.str] = None,
|
|
30150
30340
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
30341
|
+
id: typing.Optional[builtins.str] = None,
|
|
30151
30342
|
label: typing.Optional[builtins.str] = None,
|
|
30152
30343
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
30153
30344
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -30155,6 +30346,7 @@ class _IDatabaseInstanceProxy(
|
|
|
30155
30346
|
stack_region: typing.Optional[builtins.str] = None,
|
|
30156
30347
|
statistic: typing.Optional[builtins.str] = None,
|
|
30157
30348
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
30349
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
30158
30350
|
) -> _Metric_e396a4dc:
|
|
30159
30351
|
'''The number of database connections in use.
|
|
30160
30352
|
|
|
@@ -30163,6 +30355,7 @@ class _IDatabaseInstanceProxy(
|
|
|
30163
30355
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
30164
30356
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
30165
30357
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
30358
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
30166
30359
|
: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
|
|
30167
30360
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
30168
30361
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -30170,11 +30363,13 @@ class _IDatabaseInstanceProxy(
|
|
|
30170
30363
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
30171
30364
|
: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
|
|
30172
30365
|
: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
|
|
30366
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
30173
30367
|
'''
|
|
30174
30368
|
props = _MetricOptions_1788b62f(
|
|
30175
30369
|
account=account,
|
|
30176
30370
|
color=color,
|
|
30177
30371
|
dimensions_map=dimensions_map,
|
|
30372
|
+
id=id,
|
|
30178
30373
|
label=label,
|
|
30179
30374
|
period=period,
|
|
30180
30375
|
region=region,
|
|
@@ -30182,6 +30377,7 @@ class _IDatabaseInstanceProxy(
|
|
|
30182
30377
|
stack_region=stack_region,
|
|
30183
30378
|
statistic=statistic,
|
|
30184
30379
|
unit=unit,
|
|
30380
|
+
visible=visible,
|
|
30185
30381
|
)
|
|
30186
30382
|
|
|
30187
30383
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricDatabaseConnections", [props]))
|
|
@@ -30193,6 +30389,7 @@ class _IDatabaseInstanceProxy(
|
|
|
30193
30389
|
account: typing.Optional[builtins.str] = None,
|
|
30194
30390
|
color: typing.Optional[builtins.str] = None,
|
|
30195
30391
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
30392
|
+
id: typing.Optional[builtins.str] = None,
|
|
30196
30393
|
label: typing.Optional[builtins.str] = None,
|
|
30197
30394
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
30198
30395
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -30200,6 +30397,7 @@ class _IDatabaseInstanceProxy(
|
|
|
30200
30397
|
stack_region: typing.Optional[builtins.str] = None,
|
|
30201
30398
|
statistic: typing.Optional[builtins.str] = None,
|
|
30202
30399
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
30400
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
30203
30401
|
) -> _Metric_e396a4dc:
|
|
30204
30402
|
'''The amount of available random access memory.
|
|
30205
30403
|
|
|
@@ -30208,6 +30406,7 @@ class _IDatabaseInstanceProxy(
|
|
|
30208
30406
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
30209
30407
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
30210
30408
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
30409
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
30211
30410
|
: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
|
|
30212
30411
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
30213
30412
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -30215,11 +30414,13 @@ class _IDatabaseInstanceProxy(
|
|
|
30215
30414
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
30216
30415
|
: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
|
|
30217
30416
|
: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
|
|
30417
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
30218
30418
|
'''
|
|
30219
30419
|
props = _MetricOptions_1788b62f(
|
|
30220
30420
|
account=account,
|
|
30221
30421
|
color=color,
|
|
30222
30422
|
dimensions_map=dimensions_map,
|
|
30423
|
+
id=id,
|
|
30223
30424
|
label=label,
|
|
30224
30425
|
period=period,
|
|
30225
30426
|
region=region,
|
|
@@ -30227,6 +30428,7 @@ class _IDatabaseInstanceProxy(
|
|
|
30227
30428
|
stack_region=stack_region,
|
|
30228
30429
|
statistic=statistic,
|
|
30229
30430
|
unit=unit,
|
|
30431
|
+
visible=visible,
|
|
30230
30432
|
)
|
|
30231
30433
|
|
|
30232
30434
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricFreeableMemory", [props]))
|
|
@@ -30238,6 +30440,7 @@ class _IDatabaseInstanceProxy(
|
|
|
30238
30440
|
account: typing.Optional[builtins.str] = None,
|
|
30239
30441
|
color: typing.Optional[builtins.str] = None,
|
|
30240
30442
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
30443
|
+
id: typing.Optional[builtins.str] = None,
|
|
30241
30444
|
label: typing.Optional[builtins.str] = None,
|
|
30242
30445
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
30243
30446
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -30245,6 +30448,7 @@ class _IDatabaseInstanceProxy(
|
|
|
30245
30448
|
stack_region: typing.Optional[builtins.str] = None,
|
|
30246
30449
|
statistic: typing.Optional[builtins.str] = None,
|
|
30247
30450
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
30451
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
30248
30452
|
) -> _Metric_e396a4dc:
|
|
30249
30453
|
'''The amount of available storage space.
|
|
30250
30454
|
|
|
@@ -30253,6 +30457,7 @@ class _IDatabaseInstanceProxy(
|
|
|
30253
30457
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
30254
30458
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
30255
30459
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
30460
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
30256
30461
|
: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
|
|
30257
30462
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
30258
30463
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -30260,11 +30465,13 @@ class _IDatabaseInstanceProxy(
|
|
|
30260
30465
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
30261
30466
|
: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
|
|
30262
30467
|
: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
|
|
30468
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
30263
30469
|
'''
|
|
30264
30470
|
props = _MetricOptions_1788b62f(
|
|
30265
30471
|
account=account,
|
|
30266
30472
|
color=color,
|
|
30267
30473
|
dimensions_map=dimensions_map,
|
|
30474
|
+
id=id,
|
|
30268
30475
|
label=label,
|
|
30269
30476
|
period=period,
|
|
30270
30477
|
region=region,
|
|
@@ -30272,6 +30479,7 @@ class _IDatabaseInstanceProxy(
|
|
|
30272
30479
|
stack_region=stack_region,
|
|
30273
30480
|
statistic=statistic,
|
|
30274
30481
|
unit=unit,
|
|
30482
|
+
visible=visible,
|
|
30275
30483
|
)
|
|
30276
30484
|
|
|
30277
30485
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricFreeStorageSpace", [props]))
|
|
@@ -30283,6 +30491,7 @@ class _IDatabaseInstanceProxy(
|
|
|
30283
30491
|
account: typing.Optional[builtins.str] = None,
|
|
30284
30492
|
color: typing.Optional[builtins.str] = None,
|
|
30285
30493
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
30494
|
+
id: typing.Optional[builtins.str] = None,
|
|
30286
30495
|
label: typing.Optional[builtins.str] = None,
|
|
30287
30496
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
30288
30497
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -30290,6 +30499,7 @@ class _IDatabaseInstanceProxy(
|
|
|
30290
30499
|
stack_region: typing.Optional[builtins.str] = None,
|
|
30291
30500
|
statistic: typing.Optional[builtins.str] = None,
|
|
30292
30501
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
30502
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
30293
30503
|
) -> _Metric_e396a4dc:
|
|
30294
30504
|
'''The average number of disk write I/O operations per second.
|
|
30295
30505
|
|
|
@@ -30298,6 +30508,7 @@ class _IDatabaseInstanceProxy(
|
|
|
30298
30508
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
30299
30509
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
30300
30510
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
30511
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
30301
30512
|
: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
|
|
30302
30513
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
30303
30514
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -30305,11 +30516,13 @@ class _IDatabaseInstanceProxy(
|
|
|
30305
30516
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
30306
30517
|
: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
|
|
30307
30518
|
: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
|
|
30519
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
30308
30520
|
'''
|
|
30309
30521
|
props = _MetricOptions_1788b62f(
|
|
30310
30522
|
account=account,
|
|
30311
30523
|
color=color,
|
|
30312
30524
|
dimensions_map=dimensions_map,
|
|
30525
|
+
id=id,
|
|
30313
30526
|
label=label,
|
|
30314
30527
|
period=period,
|
|
30315
30528
|
region=region,
|
|
@@ -30317,6 +30530,7 @@ class _IDatabaseInstanceProxy(
|
|
|
30317
30530
|
stack_region=stack_region,
|
|
30318
30531
|
statistic=statistic,
|
|
30319
30532
|
unit=unit,
|
|
30533
|
+
visible=visible,
|
|
30320
30534
|
)
|
|
30321
30535
|
|
|
30322
30536
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricReadIOPS", [props]))
|
|
@@ -30328,6 +30542,7 @@ class _IDatabaseInstanceProxy(
|
|
|
30328
30542
|
account: typing.Optional[builtins.str] = None,
|
|
30329
30543
|
color: typing.Optional[builtins.str] = None,
|
|
30330
30544
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
30545
|
+
id: typing.Optional[builtins.str] = None,
|
|
30331
30546
|
label: typing.Optional[builtins.str] = None,
|
|
30332
30547
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
30333
30548
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -30335,6 +30550,7 @@ class _IDatabaseInstanceProxy(
|
|
|
30335
30550
|
stack_region: typing.Optional[builtins.str] = None,
|
|
30336
30551
|
statistic: typing.Optional[builtins.str] = None,
|
|
30337
30552
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
30553
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
30338
30554
|
) -> _Metric_e396a4dc:
|
|
30339
30555
|
'''The average number of disk read I/O operations per second.
|
|
30340
30556
|
|
|
@@ -30343,6 +30559,7 @@ class _IDatabaseInstanceProxy(
|
|
|
30343
30559
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
30344
30560
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
30345
30561
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
30562
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
30346
30563
|
: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
|
|
30347
30564
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
30348
30565
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -30350,11 +30567,13 @@ class _IDatabaseInstanceProxy(
|
|
|
30350
30567
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
30351
30568
|
: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
|
|
30352
30569
|
: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
|
|
30570
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
30353
30571
|
'''
|
|
30354
30572
|
props = _MetricOptions_1788b62f(
|
|
30355
30573
|
account=account,
|
|
30356
30574
|
color=color,
|
|
30357
30575
|
dimensions_map=dimensions_map,
|
|
30576
|
+
id=id,
|
|
30358
30577
|
label=label,
|
|
30359
30578
|
period=period,
|
|
30360
30579
|
region=region,
|
|
@@ -30362,6 +30581,7 @@ class _IDatabaseInstanceProxy(
|
|
|
30362
30581
|
stack_region=stack_region,
|
|
30363
30582
|
statistic=statistic,
|
|
30364
30583
|
unit=unit,
|
|
30584
|
+
visible=visible,
|
|
30365
30585
|
)
|
|
30366
30586
|
|
|
30367
30587
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricWriteIOPS", [props]))
|
|
@@ -41986,6 +42206,7 @@ class DatabaseClusterBase(
|
|
|
41986
42206
|
account: typing.Optional[builtins.str] = None,
|
|
41987
42207
|
color: typing.Optional[builtins.str] = None,
|
|
41988
42208
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
42209
|
+
id: typing.Optional[builtins.str] = None,
|
|
41989
42210
|
label: typing.Optional[builtins.str] = None,
|
|
41990
42211
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
41991
42212
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -41993,6 +42214,7 @@ class DatabaseClusterBase(
|
|
|
41993
42214
|
stack_region: typing.Optional[builtins.str] = None,
|
|
41994
42215
|
statistic: typing.Optional[builtins.str] = None,
|
|
41995
42216
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
42217
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
41996
42218
|
) -> _Metric_e396a4dc:
|
|
41997
42219
|
'''Return the given named metric for this DBCluster.
|
|
41998
42220
|
|
|
@@ -42000,6 +42222,7 @@ class DatabaseClusterBase(
|
|
|
42000
42222
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
42001
42223
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
42002
42224
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
42225
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
42003
42226
|
: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
|
|
42004
42227
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
42005
42228
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -42007,6 +42230,7 @@ class DatabaseClusterBase(
|
|
|
42007
42230
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
42008
42231
|
: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
|
|
42009
42232
|
: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
|
|
42233
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
42010
42234
|
'''
|
|
42011
42235
|
if __debug__:
|
|
42012
42236
|
type_hints = typing.get_type_hints(_typecheckingstub__4f4ce592b81574a1f6a9ee4b6ab1c756352bb31fa97575b7cf7708b9d4100962)
|
|
@@ -42015,6 +42239,7 @@ class DatabaseClusterBase(
|
|
|
42015
42239
|
account=account,
|
|
42016
42240
|
color=color,
|
|
42017
42241
|
dimensions_map=dimensions_map,
|
|
42242
|
+
id=id,
|
|
42018
42243
|
label=label,
|
|
42019
42244
|
period=period,
|
|
42020
42245
|
region=region,
|
|
@@ -42022,6 +42247,7 @@ class DatabaseClusterBase(
|
|
|
42022
42247
|
stack_region=stack_region,
|
|
42023
42248
|
statistic=statistic,
|
|
42024
42249
|
unit=unit,
|
|
42250
|
+
visible=visible,
|
|
42025
42251
|
)
|
|
42026
42252
|
|
|
42027
42253
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metric", [metric_name, props]))
|
|
@@ -42033,6 +42259,7 @@ class DatabaseClusterBase(
|
|
|
42033
42259
|
account: typing.Optional[builtins.str] = None,
|
|
42034
42260
|
color: typing.Optional[builtins.str] = None,
|
|
42035
42261
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
42262
|
+
id: typing.Optional[builtins.str] = None,
|
|
42036
42263
|
label: typing.Optional[builtins.str] = None,
|
|
42037
42264
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
42038
42265
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -42040,6 +42267,7 @@ class DatabaseClusterBase(
|
|
|
42040
42267
|
stack_region: typing.Optional[builtins.str] = None,
|
|
42041
42268
|
statistic: typing.Optional[builtins.str] = None,
|
|
42042
42269
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
42270
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
42043
42271
|
) -> _Metric_e396a4dc:
|
|
42044
42272
|
'''The percentage of CPU utilization.
|
|
42045
42273
|
|
|
@@ -42048,6 +42276,7 @@ class DatabaseClusterBase(
|
|
|
42048
42276
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
42049
42277
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
42050
42278
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
42279
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
42051
42280
|
: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
|
|
42052
42281
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
42053
42282
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -42055,11 +42284,13 @@ class DatabaseClusterBase(
|
|
|
42055
42284
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
42056
42285
|
: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
|
|
42057
42286
|
: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
|
|
42287
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
42058
42288
|
'''
|
|
42059
42289
|
props = _MetricOptions_1788b62f(
|
|
42060
42290
|
account=account,
|
|
42061
42291
|
color=color,
|
|
42062
42292
|
dimensions_map=dimensions_map,
|
|
42293
|
+
id=id,
|
|
42063
42294
|
label=label,
|
|
42064
42295
|
period=period,
|
|
42065
42296
|
region=region,
|
|
@@ -42067,6 +42298,7 @@ class DatabaseClusterBase(
|
|
|
42067
42298
|
stack_region=stack_region,
|
|
42068
42299
|
statistic=statistic,
|
|
42069
42300
|
unit=unit,
|
|
42301
|
+
visible=visible,
|
|
42070
42302
|
)
|
|
42071
42303
|
|
|
42072
42304
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricCPUUtilization", [props]))
|
|
@@ -42078,6 +42310,7 @@ class DatabaseClusterBase(
|
|
|
42078
42310
|
account: typing.Optional[builtins.str] = None,
|
|
42079
42311
|
color: typing.Optional[builtins.str] = None,
|
|
42080
42312
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
42313
|
+
id: typing.Optional[builtins.str] = None,
|
|
42081
42314
|
label: typing.Optional[builtins.str] = None,
|
|
42082
42315
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
42083
42316
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -42085,6 +42318,7 @@ class DatabaseClusterBase(
|
|
|
42085
42318
|
stack_region: typing.Optional[builtins.str] = None,
|
|
42086
42319
|
statistic: typing.Optional[builtins.str] = None,
|
|
42087
42320
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
42321
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
42088
42322
|
) -> _Metric_e396a4dc:
|
|
42089
42323
|
'''The number of database connections in use.
|
|
42090
42324
|
|
|
@@ -42093,6 +42327,7 @@ class DatabaseClusterBase(
|
|
|
42093
42327
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
42094
42328
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
42095
42329
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
42330
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
42096
42331
|
: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
|
|
42097
42332
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
42098
42333
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -42100,11 +42335,13 @@ class DatabaseClusterBase(
|
|
|
42100
42335
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
42101
42336
|
: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
|
|
42102
42337
|
: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
|
|
42338
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
42103
42339
|
'''
|
|
42104
42340
|
props = _MetricOptions_1788b62f(
|
|
42105
42341
|
account=account,
|
|
42106
42342
|
color=color,
|
|
42107
42343
|
dimensions_map=dimensions_map,
|
|
42344
|
+
id=id,
|
|
42108
42345
|
label=label,
|
|
42109
42346
|
period=period,
|
|
42110
42347
|
region=region,
|
|
@@ -42112,6 +42349,7 @@ class DatabaseClusterBase(
|
|
|
42112
42349
|
stack_region=stack_region,
|
|
42113
42350
|
statistic=statistic,
|
|
42114
42351
|
unit=unit,
|
|
42352
|
+
visible=visible,
|
|
42115
42353
|
)
|
|
42116
42354
|
|
|
42117
42355
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricDatabaseConnections", [props]))
|
|
@@ -42123,6 +42361,7 @@ class DatabaseClusterBase(
|
|
|
42123
42361
|
account: typing.Optional[builtins.str] = None,
|
|
42124
42362
|
color: typing.Optional[builtins.str] = None,
|
|
42125
42363
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
42364
|
+
id: typing.Optional[builtins.str] = None,
|
|
42126
42365
|
label: typing.Optional[builtins.str] = None,
|
|
42127
42366
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
42128
42367
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -42130,6 +42369,7 @@ class DatabaseClusterBase(
|
|
|
42130
42369
|
stack_region: typing.Optional[builtins.str] = None,
|
|
42131
42370
|
statistic: typing.Optional[builtins.str] = None,
|
|
42132
42371
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
42372
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
42133
42373
|
) -> _Metric_e396a4dc:
|
|
42134
42374
|
'''The average number of deadlocks in the database per second.
|
|
42135
42375
|
|
|
@@ -42138,6 +42378,7 @@ class DatabaseClusterBase(
|
|
|
42138
42378
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
42139
42379
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
42140
42380
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
42381
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
42141
42382
|
: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
|
|
42142
42383
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
42143
42384
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -42145,11 +42386,13 @@ class DatabaseClusterBase(
|
|
|
42145
42386
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
42146
42387
|
: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
|
|
42147
42388
|
: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
|
|
42389
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
42148
42390
|
'''
|
|
42149
42391
|
props = _MetricOptions_1788b62f(
|
|
42150
42392
|
account=account,
|
|
42151
42393
|
color=color,
|
|
42152
42394
|
dimensions_map=dimensions_map,
|
|
42395
|
+
id=id,
|
|
42153
42396
|
label=label,
|
|
42154
42397
|
period=period,
|
|
42155
42398
|
region=region,
|
|
@@ -42157,6 +42400,7 @@ class DatabaseClusterBase(
|
|
|
42157
42400
|
stack_region=stack_region,
|
|
42158
42401
|
statistic=statistic,
|
|
42159
42402
|
unit=unit,
|
|
42403
|
+
visible=visible,
|
|
42160
42404
|
)
|
|
42161
42405
|
|
|
42162
42406
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricDeadlocks", [props]))
|
|
@@ -42168,6 +42412,7 @@ class DatabaseClusterBase(
|
|
|
42168
42412
|
account: typing.Optional[builtins.str] = None,
|
|
42169
42413
|
color: typing.Optional[builtins.str] = None,
|
|
42170
42414
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
42415
|
+
id: typing.Optional[builtins.str] = None,
|
|
42171
42416
|
label: typing.Optional[builtins.str] = None,
|
|
42172
42417
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
42173
42418
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -42175,6 +42420,7 @@ class DatabaseClusterBase(
|
|
|
42175
42420
|
stack_region: typing.Optional[builtins.str] = None,
|
|
42176
42421
|
statistic: typing.Optional[builtins.str] = None,
|
|
42177
42422
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
42423
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
42178
42424
|
) -> _Metric_e396a4dc:
|
|
42179
42425
|
'''The amount of time that the instance has been running, in seconds.
|
|
42180
42426
|
|
|
@@ -42183,6 +42429,7 @@ class DatabaseClusterBase(
|
|
|
42183
42429
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
42184
42430
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
42185
42431
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
42432
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
42186
42433
|
: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
|
|
42187
42434
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
42188
42435
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -42190,11 +42437,13 @@ class DatabaseClusterBase(
|
|
|
42190
42437
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
42191
42438
|
: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
|
|
42192
42439
|
: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
|
|
42440
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
42193
42441
|
'''
|
|
42194
42442
|
props = _MetricOptions_1788b62f(
|
|
42195
42443
|
account=account,
|
|
42196
42444
|
color=color,
|
|
42197
42445
|
dimensions_map=dimensions_map,
|
|
42446
|
+
id=id,
|
|
42198
42447
|
label=label,
|
|
42199
42448
|
period=period,
|
|
42200
42449
|
region=region,
|
|
@@ -42202,6 +42451,7 @@ class DatabaseClusterBase(
|
|
|
42202
42451
|
stack_region=stack_region,
|
|
42203
42452
|
statistic=statistic,
|
|
42204
42453
|
unit=unit,
|
|
42454
|
+
visible=visible,
|
|
42205
42455
|
)
|
|
42206
42456
|
|
|
42207
42457
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricEngineUptime", [props]))
|
|
@@ -42213,6 +42463,7 @@ class DatabaseClusterBase(
|
|
|
42213
42463
|
account: typing.Optional[builtins.str] = None,
|
|
42214
42464
|
color: typing.Optional[builtins.str] = None,
|
|
42215
42465
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
42466
|
+
id: typing.Optional[builtins.str] = None,
|
|
42216
42467
|
label: typing.Optional[builtins.str] = None,
|
|
42217
42468
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
42218
42469
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -42220,6 +42471,7 @@ class DatabaseClusterBase(
|
|
|
42220
42471
|
stack_region: typing.Optional[builtins.str] = None,
|
|
42221
42472
|
statistic: typing.Optional[builtins.str] = None,
|
|
42222
42473
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
42474
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
42223
42475
|
) -> _Metric_e396a4dc:
|
|
42224
42476
|
'''The amount of available random access memory, in bytes.
|
|
42225
42477
|
|
|
@@ -42228,6 +42480,7 @@ class DatabaseClusterBase(
|
|
|
42228
42480
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
42229
42481
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
42230
42482
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
42483
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
42231
42484
|
: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
|
|
42232
42485
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
42233
42486
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -42235,11 +42488,13 @@ class DatabaseClusterBase(
|
|
|
42235
42488
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
42236
42489
|
: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
|
|
42237
42490
|
: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
|
|
42491
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
42238
42492
|
'''
|
|
42239
42493
|
props = _MetricOptions_1788b62f(
|
|
42240
42494
|
account=account,
|
|
42241
42495
|
color=color,
|
|
42242
42496
|
dimensions_map=dimensions_map,
|
|
42497
|
+
id=id,
|
|
42243
42498
|
label=label,
|
|
42244
42499
|
period=period,
|
|
42245
42500
|
region=region,
|
|
@@ -42247,6 +42502,7 @@ class DatabaseClusterBase(
|
|
|
42247
42502
|
stack_region=stack_region,
|
|
42248
42503
|
statistic=statistic,
|
|
42249
42504
|
unit=unit,
|
|
42505
|
+
visible=visible,
|
|
42250
42506
|
)
|
|
42251
42507
|
|
|
42252
42508
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricFreeableMemory", [props]))
|
|
@@ -42258,6 +42514,7 @@ class DatabaseClusterBase(
|
|
|
42258
42514
|
account: typing.Optional[builtins.str] = None,
|
|
42259
42515
|
color: typing.Optional[builtins.str] = None,
|
|
42260
42516
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
42517
|
+
id: typing.Optional[builtins.str] = None,
|
|
42261
42518
|
label: typing.Optional[builtins.str] = None,
|
|
42262
42519
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
42263
42520
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -42265,6 +42522,7 @@ class DatabaseClusterBase(
|
|
|
42265
42522
|
stack_region: typing.Optional[builtins.str] = None,
|
|
42266
42523
|
statistic: typing.Optional[builtins.str] = None,
|
|
42267
42524
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
42525
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
42268
42526
|
) -> _Metric_e396a4dc:
|
|
42269
42527
|
'''The amount of local storage available, in bytes.
|
|
42270
42528
|
|
|
@@ -42273,6 +42531,7 @@ class DatabaseClusterBase(
|
|
|
42273
42531
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
42274
42532
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
42275
42533
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
42534
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
42276
42535
|
: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
|
|
42277
42536
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
42278
42537
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -42280,11 +42539,13 @@ class DatabaseClusterBase(
|
|
|
42280
42539
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
42281
42540
|
: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
|
|
42282
42541
|
: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
|
|
42542
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
42283
42543
|
'''
|
|
42284
42544
|
props = _MetricOptions_1788b62f(
|
|
42285
42545
|
account=account,
|
|
42286
42546
|
color=color,
|
|
42287
42547
|
dimensions_map=dimensions_map,
|
|
42548
|
+
id=id,
|
|
42288
42549
|
label=label,
|
|
42289
42550
|
period=period,
|
|
42290
42551
|
region=region,
|
|
@@ -42292,6 +42553,7 @@ class DatabaseClusterBase(
|
|
|
42292
42553
|
stack_region=stack_region,
|
|
42293
42554
|
statistic=statistic,
|
|
42294
42555
|
unit=unit,
|
|
42556
|
+
visible=visible,
|
|
42295
42557
|
)
|
|
42296
42558
|
|
|
42297
42559
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricFreeLocalStorage", [props]))
|
|
@@ -42303,6 +42565,7 @@ class DatabaseClusterBase(
|
|
|
42303
42565
|
account: typing.Optional[builtins.str] = None,
|
|
42304
42566
|
color: typing.Optional[builtins.str] = None,
|
|
42305
42567
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
42568
|
+
id: typing.Optional[builtins.str] = None,
|
|
42306
42569
|
label: typing.Optional[builtins.str] = None,
|
|
42307
42570
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
42308
42571
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -42310,6 +42573,7 @@ class DatabaseClusterBase(
|
|
|
42310
42573
|
stack_region: typing.Optional[builtins.str] = None,
|
|
42311
42574
|
statistic: typing.Optional[builtins.str] = None,
|
|
42312
42575
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
42576
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
42313
42577
|
) -> _Metric_e396a4dc:
|
|
42314
42578
|
'''The amount of network throughput received from clients by each instance, in bytes per second.
|
|
42315
42579
|
|
|
@@ -42318,6 +42582,7 @@ class DatabaseClusterBase(
|
|
|
42318
42582
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
42319
42583
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
42320
42584
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
42585
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
42321
42586
|
: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
|
|
42322
42587
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
42323
42588
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -42325,11 +42590,13 @@ class DatabaseClusterBase(
|
|
|
42325
42590
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
42326
42591
|
: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
|
|
42327
42592
|
: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
|
|
42593
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
42328
42594
|
'''
|
|
42329
42595
|
props = _MetricOptions_1788b62f(
|
|
42330
42596
|
account=account,
|
|
42331
42597
|
color=color,
|
|
42332
42598
|
dimensions_map=dimensions_map,
|
|
42599
|
+
id=id,
|
|
42333
42600
|
label=label,
|
|
42334
42601
|
period=period,
|
|
42335
42602
|
region=region,
|
|
@@ -42337,6 +42604,7 @@ class DatabaseClusterBase(
|
|
|
42337
42604
|
stack_region=stack_region,
|
|
42338
42605
|
statistic=statistic,
|
|
42339
42606
|
unit=unit,
|
|
42607
|
+
visible=visible,
|
|
42340
42608
|
)
|
|
42341
42609
|
|
|
42342
42610
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricNetworkReceiveThroughput", [props]))
|
|
@@ -42348,6 +42616,7 @@ class DatabaseClusterBase(
|
|
|
42348
42616
|
account: typing.Optional[builtins.str] = None,
|
|
42349
42617
|
color: typing.Optional[builtins.str] = None,
|
|
42350
42618
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
42619
|
+
id: typing.Optional[builtins.str] = None,
|
|
42351
42620
|
label: typing.Optional[builtins.str] = None,
|
|
42352
42621
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
42353
42622
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -42355,6 +42624,7 @@ class DatabaseClusterBase(
|
|
|
42355
42624
|
stack_region: typing.Optional[builtins.str] = None,
|
|
42356
42625
|
statistic: typing.Optional[builtins.str] = None,
|
|
42357
42626
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
42627
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
42358
42628
|
) -> _Metric_e396a4dc:
|
|
42359
42629
|
'''The amount of network throughput both received from and transmitted to clients by each instance, in bytes per second.
|
|
42360
42630
|
|
|
@@ -42363,6 +42633,7 @@ class DatabaseClusterBase(
|
|
|
42363
42633
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
42364
42634
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
42365
42635
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
42636
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
42366
42637
|
: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
|
|
42367
42638
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
42368
42639
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -42370,11 +42641,13 @@ class DatabaseClusterBase(
|
|
|
42370
42641
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
42371
42642
|
: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
|
|
42372
42643
|
: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
|
|
42644
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
42373
42645
|
'''
|
|
42374
42646
|
props = _MetricOptions_1788b62f(
|
|
42375
42647
|
account=account,
|
|
42376
42648
|
color=color,
|
|
42377
42649
|
dimensions_map=dimensions_map,
|
|
42650
|
+
id=id,
|
|
42378
42651
|
label=label,
|
|
42379
42652
|
period=period,
|
|
42380
42653
|
region=region,
|
|
@@ -42382,6 +42655,7 @@ class DatabaseClusterBase(
|
|
|
42382
42655
|
stack_region=stack_region,
|
|
42383
42656
|
statistic=statistic,
|
|
42384
42657
|
unit=unit,
|
|
42658
|
+
visible=visible,
|
|
42385
42659
|
)
|
|
42386
42660
|
|
|
42387
42661
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricNetworkThroughput", [props]))
|
|
@@ -42393,6 +42667,7 @@ class DatabaseClusterBase(
|
|
|
42393
42667
|
account: typing.Optional[builtins.str] = None,
|
|
42394
42668
|
color: typing.Optional[builtins.str] = None,
|
|
42395
42669
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
42670
|
+
id: typing.Optional[builtins.str] = None,
|
|
42396
42671
|
label: typing.Optional[builtins.str] = None,
|
|
42397
42672
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
42398
42673
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -42400,6 +42675,7 @@ class DatabaseClusterBase(
|
|
|
42400
42675
|
stack_region: typing.Optional[builtins.str] = None,
|
|
42401
42676
|
statistic: typing.Optional[builtins.str] = None,
|
|
42402
42677
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
42678
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
42403
42679
|
) -> _Metric_e396a4dc:
|
|
42404
42680
|
'''The amount of network throughput sent to clients by each instance, in bytes per second.
|
|
42405
42681
|
|
|
@@ -42408,6 +42684,7 @@ class DatabaseClusterBase(
|
|
|
42408
42684
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
42409
42685
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
42410
42686
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
42687
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
42411
42688
|
: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
|
|
42412
42689
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
42413
42690
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -42415,11 +42692,13 @@ class DatabaseClusterBase(
|
|
|
42415
42692
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
42416
42693
|
: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
|
|
42417
42694
|
: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
|
|
42695
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
42418
42696
|
'''
|
|
42419
42697
|
props = _MetricOptions_1788b62f(
|
|
42420
42698
|
account=account,
|
|
42421
42699
|
color=color,
|
|
42422
42700
|
dimensions_map=dimensions_map,
|
|
42701
|
+
id=id,
|
|
42423
42702
|
label=label,
|
|
42424
42703
|
period=period,
|
|
42425
42704
|
region=region,
|
|
@@ -42427,6 +42706,7 @@ class DatabaseClusterBase(
|
|
|
42427
42706
|
stack_region=stack_region,
|
|
42428
42707
|
statistic=statistic,
|
|
42429
42708
|
unit=unit,
|
|
42709
|
+
visible=visible,
|
|
42430
42710
|
)
|
|
42431
42711
|
|
|
42432
42712
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricNetworkTransmitThroughput", [props]))
|
|
@@ -42438,6 +42718,7 @@ class DatabaseClusterBase(
|
|
|
42438
42718
|
account: typing.Optional[builtins.str] = None,
|
|
42439
42719
|
color: typing.Optional[builtins.str] = None,
|
|
42440
42720
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
42721
|
+
id: typing.Optional[builtins.str] = None,
|
|
42441
42722
|
label: typing.Optional[builtins.str] = None,
|
|
42442
42723
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
42443
42724
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -42445,6 +42726,7 @@ class DatabaseClusterBase(
|
|
|
42445
42726
|
stack_region: typing.Optional[builtins.str] = None,
|
|
42446
42727
|
statistic: typing.Optional[builtins.str] = None,
|
|
42447
42728
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
42729
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
42448
42730
|
) -> _Metric_e396a4dc:
|
|
42449
42731
|
'''The total amount of backup storage in bytes consumed by all Aurora snapshots outside its backup retention window.
|
|
42450
42732
|
|
|
@@ -42453,6 +42735,7 @@ class DatabaseClusterBase(
|
|
|
42453
42735
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
42454
42736
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
42455
42737
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
42738
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
42456
42739
|
: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
|
|
42457
42740
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
42458
42741
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -42460,11 +42743,13 @@ class DatabaseClusterBase(
|
|
|
42460
42743
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
42461
42744
|
: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
|
|
42462
42745
|
: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
|
|
42746
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
42463
42747
|
'''
|
|
42464
42748
|
props = _MetricOptions_1788b62f(
|
|
42465
42749
|
account=account,
|
|
42466
42750
|
color=color,
|
|
42467
42751
|
dimensions_map=dimensions_map,
|
|
42752
|
+
id=id,
|
|
42468
42753
|
label=label,
|
|
42469
42754
|
period=period,
|
|
42470
42755
|
region=region,
|
|
@@ -42472,6 +42757,7 @@ class DatabaseClusterBase(
|
|
|
42472
42757
|
stack_region=stack_region,
|
|
42473
42758
|
statistic=statistic,
|
|
42474
42759
|
unit=unit,
|
|
42760
|
+
visible=visible,
|
|
42475
42761
|
)
|
|
42476
42762
|
|
|
42477
42763
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricSnapshotStorageUsed", [props]))
|
|
@@ -42483,6 +42769,7 @@ class DatabaseClusterBase(
|
|
|
42483
42769
|
account: typing.Optional[builtins.str] = None,
|
|
42484
42770
|
color: typing.Optional[builtins.str] = None,
|
|
42485
42771
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
42772
|
+
id: typing.Optional[builtins.str] = None,
|
|
42486
42773
|
label: typing.Optional[builtins.str] = None,
|
|
42487
42774
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
42488
42775
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -42490,6 +42777,7 @@ class DatabaseClusterBase(
|
|
|
42490
42777
|
stack_region: typing.Optional[builtins.str] = None,
|
|
42491
42778
|
statistic: typing.Optional[builtins.str] = None,
|
|
42492
42779
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
42780
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
42493
42781
|
) -> _Metric_e396a4dc:
|
|
42494
42782
|
'''The total amount of backup storage in bytes for which you are billed.
|
|
42495
42783
|
|
|
@@ -42498,6 +42786,7 @@ class DatabaseClusterBase(
|
|
|
42498
42786
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
42499
42787
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
42500
42788
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
42789
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
42501
42790
|
: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
|
|
42502
42791
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
42503
42792
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -42505,11 +42794,13 @@ class DatabaseClusterBase(
|
|
|
42505
42794
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
42506
42795
|
: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
|
|
42507
42796
|
: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
|
|
42797
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
42508
42798
|
'''
|
|
42509
42799
|
props = _MetricOptions_1788b62f(
|
|
42510
42800
|
account=account,
|
|
42511
42801
|
color=color,
|
|
42512
42802
|
dimensions_map=dimensions_map,
|
|
42803
|
+
id=id,
|
|
42513
42804
|
label=label,
|
|
42514
42805
|
period=period,
|
|
42515
42806
|
region=region,
|
|
@@ -42517,6 +42808,7 @@ class DatabaseClusterBase(
|
|
|
42517
42808
|
stack_region=stack_region,
|
|
42518
42809
|
statistic=statistic,
|
|
42519
42810
|
unit=unit,
|
|
42811
|
+
visible=visible,
|
|
42520
42812
|
)
|
|
42521
42813
|
|
|
42522
42814
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricTotalBackupStorageBilled", [props]))
|
|
@@ -42528,6 +42820,7 @@ class DatabaseClusterBase(
|
|
|
42528
42820
|
account: typing.Optional[builtins.str] = None,
|
|
42529
42821
|
color: typing.Optional[builtins.str] = None,
|
|
42530
42822
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
42823
|
+
id: typing.Optional[builtins.str] = None,
|
|
42531
42824
|
label: typing.Optional[builtins.str] = None,
|
|
42532
42825
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
42533
42826
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -42535,6 +42828,7 @@ class DatabaseClusterBase(
|
|
|
42535
42828
|
stack_region: typing.Optional[builtins.str] = None,
|
|
42536
42829
|
statistic: typing.Optional[builtins.str] = None,
|
|
42537
42830
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
42831
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
42538
42832
|
) -> _Metric_e396a4dc:
|
|
42539
42833
|
'''The amount of storage used by your Aurora DB instance, in bytes.
|
|
42540
42834
|
|
|
@@ -42543,6 +42837,7 @@ class DatabaseClusterBase(
|
|
|
42543
42837
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
42544
42838
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
42545
42839
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
42840
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
42546
42841
|
: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
|
|
42547
42842
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
42548
42843
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -42550,11 +42845,13 @@ class DatabaseClusterBase(
|
|
|
42550
42845
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
42551
42846
|
: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
|
|
42552
42847
|
: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
|
|
42848
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
42553
42849
|
'''
|
|
42554
42850
|
props = _MetricOptions_1788b62f(
|
|
42555
42851
|
account=account,
|
|
42556
42852
|
color=color,
|
|
42557
42853
|
dimensions_map=dimensions_map,
|
|
42854
|
+
id=id,
|
|
42558
42855
|
label=label,
|
|
42559
42856
|
period=period,
|
|
42560
42857
|
region=region,
|
|
@@ -42562,6 +42859,7 @@ class DatabaseClusterBase(
|
|
|
42562
42859
|
stack_region=stack_region,
|
|
42563
42860
|
statistic=statistic,
|
|
42564
42861
|
unit=unit,
|
|
42862
|
+
visible=visible,
|
|
42565
42863
|
)
|
|
42566
42864
|
|
|
42567
42865
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricVolumeBytesUsed", [props]))
|
|
@@ -42573,6 +42871,7 @@ class DatabaseClusterBase(
|
|
|
42573
42871
|
account: typing.Optional[builtins.str] = None,
|
|
42574
42872
|
color: typing.Optional[builtins.str] = None,
|
|
42575
42873
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
42874
|
+
id: typing.Optional[builtins.str] = None,
|
|
42576
42875
|
label: typing.Optional[builtins.str] = None,
|
|
42577
42876
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
42578
42877
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -42580,6 +42879,7 @@ class DatabaseClusterBase(
|
|
|
42580
42879
|
stack_region: typing.Optional[builtins.str] = None,
|
|
42581
42880
|
statistic: typing.Optional[builtins.str] = None,
|
|
42582
42881
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
42882
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
42583
42883
|
) -> _Metric_e396a4dc:
|
|
42584
42884
|
'''The number of billed read I/O operations from a cluster volume, reported at 5-minute intervals.
|
|
42585
42885
|
|
|
@@ -42588,6 +42888,7 @@ class DatabaseClusterBase(
|
|
|
42588
42888
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
42589
42889
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
42590
42890
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
42891
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
42591
42892
|
: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
|
|
42592
42893
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
42593
42894
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -42595,11 +42896,13 @@ class DatabaseClusterBase(
|
|
|
42595
42896
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
42596
42897
|
: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
|
|
42597
42898
|
: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
|
|
42899
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
42598
42900
|
'''
|
|
42599
42901
|
props = _MetricOptions_1788b62f(
|
|
42600
42902
|
account=account,
|
|
42601
42903
|
color=color,
|
|
42602
42904
|
dimensions_map=dimensions_map,
|
|
42905
|
+
id=id,
|
|
42603
42906
|
label=label,
|
|
42604
42907
|
period=period,
|
|
42605
42908
|
region=region,
|
|
@@ -42607,6 +42910,7 @@ class DatabaseClusterBase(
|
|
|
42607
42910
|
stack_region=stack_region,
|
|
42608
42911
|
statistic=statistic,
|
|
42609
42912
|
unit=unit,
|
|
42913
|
+
visible=visible,
|
|
42610
42914
|
)
|
|
42611
42915
|
|
|
42612
42916
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricVolumeReadIOPs", [props]))
|
|
@@ -42618,6 +42922,7 @@ class DatabaseClusterBase(
|
|
|
42618
42922
|
account: typing.Optional[builtins.str] = None,
|
|
42619
42923
|
color: typing.Optional[builtins.str] = None,
|
|
42620
42924
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
42925
|
+
id: typing.Optional[builtins.str] = None,
|
|
42621
42926
|
label: typing.Optional[builtins.str] = None,
|
|
42622
42927
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
42623
42928
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -42625,6 +42930,7 @@ class DatabaseClusterBase(
|
|
|
42625
42930
|
stack_region: typing.Optional[builtins.str] = None,
|
|
42626
42931
|
statistic: typing.Optional[builtins.str] = None,
|
|
42627
42932
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
42933
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
42628
42934
|
) -> _Metric_e396a4dc:
|
|
42629
42935
|
'''The number of write disk I/O operations to the cluster volume, reported at 5-minute intervals.
|
|
42630
42936
|
|
|
@@ -42633,6 +42939,7 @@ class DatabaseClusterBase(
|
|
|
42633
42939
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
42634
42940
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
42635
42941
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
42942
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
42636
42943
|
: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
|
|
42637
42944
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
42638
42945
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -42640,11 +42947,13 @@ class DatabaseClusterBase(
|
|
|
42640
42947
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
42641
42948
|
: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
|
|
42642
42949
|
: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
|
|
42950
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
42643
42951
|
'''
|
|
42644
42952
|
props = _MetricOptions_1788b62f(
|
|
42645
42953
|
account=account,
|
|
42646
42954
|
color=color,
|
|
42647
42955
|
dimensions_map=dimensions_map,
|
|
42956
|
+
id=id,
|
|
42648
42957
|
label=label,
|
|
42649
42958
|
period=period,
|
|
42650
42959
|
region=region,
|
|
@@ -42652,6 +42961,7 @@ class DatabaseClusterBase(
|
|
|
42652
42961
|
stack_region=stack_region,
|
|
42653
42962
|
statistic=statistic,
|
|
42654
42963
|
unit=unit,
|
|
42964
|
+
visible=visible,
|
|
42655
42965
|
)
|
|
42656
42966
|
|
|
42657
42967
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricVolumeWriteIOPs", [props]))
|
|
@@ -43110,6 +43420,7 @@ class DatabaseClusterFromSnapshot(
|
|
|
43110
43420
|
account: typing.Optional[builtins.str] = None,
|
|
43111
43421
|
color: typing.Optional[builtins.str] = None,
|
|
43112
43422
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
43423
|
+
id: typing.Optional[builtins.str] = None,
|
|
43113
43424
|
label: typing.Optional[builtins.str] = None,
|
|
43114
43425
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
43115
43426
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -43117,6 +43428,7 @@ class DatabaseClusterFromSnapshot(
|
|
|
43117
43428
|
stack_region: typing.Optional[builtins.str] = None,
|
|
43118
43429
|
statistic: typing.Optional[builtins.str] = None,
|
|
43119
43430
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
43431
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
43120
43432
|
) -> _Metric_e396a4dc:
|
|
43121
43433
|
'''This value is represented as a percentage.
|
|
43122
43434
|
|
|
@@ -43129,6 +43441,7 @@ class DatabaseClusterFromSnapshot(
|
|
|
43129
43441
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
43130
43442
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
43131
43443
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
43444
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
43132
43445
|
: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
|
|
43133
43446
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
43134
43447
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -43136,11 +43449,13 @@ class DatabaseClusterFromSnapshot(
|
|
|
43136
43449
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
43137
43450
|
: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
|
|
43138
43451
|
: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
|
|
43452
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
43139
43453
|
'''
|
|
43140
43454
|
props = _MetricOptions_1788b62f(
|
|
43141
43455
|
account=account,
|
|
43142
43456
|
color=color,
|
|
43143
43457
|
dimensions_map=dimensions_map,
|
|
43458
|
+
id=id,
|
|
43144
43459
|
label=label,
|
|
43145
43460
|
period=period,
|
|
43146
43461
|
region=region,
|
|
@@ -43148,6 +43463,7 @@ class DatabaseClusterFromSnapshot(
|
|
|
43148
43463
|
stack_region=stack_region,
|
|
43149
43464
|
statistic=statistic,
|
|
43150
43465
|
unit=unit,
|
|
43466
|
+
visible=visible,
|
|
43151
43467
|
)
|
|
43152
43468
|
|
|
43153
43469
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricACUUtilization", [props]))
|
|
@@ -43159,6 +43475,7 @@ class DatabaseClusterFromSnapshot(
|
|
|
43159
43475
|
account: typing.Optional[builtins.str] = None,
|
|
43160
43476
|
color: typing.Optional[builtins.str] = None,
|
|
43161
43477
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
43478
|
+
id: typing.Optional[builtins.str] = None,
|
|
43162
43479
|
label: typing.Optional[builtins.str] = None,
|
|
43163
43480
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
43164
43481
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -43166,12 +43483,14 @@ class DatabaseClusterFromSnapshot(
|
|
|
43166
43483
|
stack_region: typing.Optional[builtins.str] = None,
|
|
43167
43484
|
statistic: typing.Optional[builtins.str] = None,
|
|
43168
43485
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
43486
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
43169
43487
|
) -> _Metric_e396a4dc:
|
|
43170
43488
|
'''As a cluster-level metric, it represents the average of the ServerlessDatabaseCapacity values of all the Aurora Serverless v2 DB instances in the cluster.
|
|
43171
43489
|
|
|
43172
43490
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
43173
43491
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
43174
43492
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
43493
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
43175
43494
|
: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
|
|
43176
43495
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
43177
43496
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -43179,11 +43498,13 @@ class DatabaseClusterFromSnapshot(
|
|
|
43179
43498
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
43180
43499
|
: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
|
|
43181
43500
|
: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
|
|
43501
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
43182
43502
|
'''
|
|
43183
43503
|
props = _MetricOptions_1788b62f(
|
|
43184
43504
|
account=account,
|
|
43185
43505
|
color=color,
|
|
43186
43506
|
dimensions_map=dimensions_map,
|
|
43507
|
+
id=id,
|
|
43187
43508
|
label=label,
|
|
43188
43509
|
period=period,
|
|
43189
43510
|
region=region,
|
|
@@ -43191,6 +43512,7 @@ class DatabaseClusterFromSnapshot(
|
|
|
43191
43512
|
stack_region=stack_region,
|
|
43192
43513
|
statistic=statistic,
|
|
43193
43514
|
unit=unit,
|
|
43515
|
+
visible=visible,
|
|
43194
43516
|
)
|
|
43195
43517
|
|
|
43196
43518
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricServerlessDatabaseCapacity", [props]))
|
|
@@ -43607,6 +43929,7 @@ class DatabaseInstanceBase(
|
|
|
43607
43929
|
account: typing.Optional[builtins.str] = None,
|
|
43608
43930
|
color: typing.Optional[builtins.str] = None,
|
|
43609
43931
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
43932
|
+
id: typing.Optional[builtins.str] = None,
|
|
43610
43933
|
label: typing.Optional[builtins.str] = None,
|
|
43611
43934
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
43612
43935
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -43614,6 +43937,7 @@ class DatabaseInstanceBase(
|
|
|
43614
43937
|
stack_region: typing.Optional[builtins.str] = None,
|
|
43615
43938
|
statistic: typing.Optional[builtins.str] = None,
|
|
43616
43939
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
43940
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
43617
43941
|
) -> _Metric_e396a4dc:
|
|
43618
43942
|
'''Return the given named metric for this DBInstance.
|
|
43619
43943
|
|
|
@@ -43621,6 +43945,7 @@ class DatabaseInstanceBase(
|
|
|
43621
43945
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
43622
43946
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
43623
43947
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
43948
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
43624
43949
|
: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
|
|
43625
43950
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
43626
43951
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -43628,6 +43953,7 @@ class DatabaseInstanceBase(
|
|
|
43628
43953
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
43629
43954
|
: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
|
|
43630
43955
|
: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
|
|
43956
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
43631
43957
|
'''
|
|
43632
43958
|
if __debug__:
|
|
43633
43959
|
type_hints = typing.get_type_hints(_typecheckingstub__d3b875972d333f05c29d29ce0f29c0cd026377583d9fad46eb5cc05f031ef7f2)
|
|
@@ -43636,6 +43962,7 @@ class DatabaseInstanceBase(
|
|
|
43636
43962
|
account=account,
|
|
43637
43963
|
color=color,
|
|
43638
43964
|
dimensions_map=dimensions_map,
|
|
43965
|
+
id=id,
|
|
43639
43966
|
label=label,
|
|
43640
43967
|
period=period,
|
|
43641
43968
|
region=region,
|
|
@@ -43643,6 +43970,7 @@ class DatabaseInstanceBase(
|
|
|
43643
43970
|
stack_region=stack_region,
|
|
43644
43971
|
statistic=statistic,
|
|
43645
43972
|
unit=unit,
|
|
43973
|
+
visible=visible,
|
|
43646
43974
|
)
|
|
43647
43975
|
|
|
43648
43976
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metric", [metric_name, props]))
|
|
@@ -43654,6 +43982,7 @@ class DatabaseInstanceBase(
|
|
|
43654
43982
|
account: typing.Optional[builtins.str] = None,
|
|
43655
43983
|
color: typing.Optional[builtins.str] = None,
|
|
43656
43984
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
43985
|
+
id: typing.Optional[builtins.str] = None,
|
|
43657
43986
|
label: typing.Optional[builtins.str] = None,
|
|
43658
43987
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
43659
43988
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -43661,6 +43990,7 @@ class DatabaseInstanceBase(
|
|
|
43661
43990
|
stack_region: typing.Optional[builtins.str] = None,
|
|
43662
43991
|
statistic: typing.Optional[builtins.str] = None,
|
|
43663
43992
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
43993
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
43664
43994
|
) -> _Metric_e396a4dc:
|
|
43665
43995
|
'''The percentage of CPU utilization.
|
|
43666
43996
|
|
|
@@ -43669,6 +43999,7 @@ class DatabaseInstanceBase(
|
|
|
43669
43999
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
43670
44000
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
43671
44001
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
44002
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
43672
44003
|
: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
|
|
43673
44004
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
43674
44005
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -43676,11 +44007,13 @@ class DatabaseInstanceBase(
|
|
|
43676
44007
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
43677
44008
|
: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
|
|
43678
44009
|
: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
|
|
44010
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
43679
44011
|
'''
|
|
43680
44012
|
props = _MetricOptions_1788b62f(
|
|
43681
44013
|
account=account,
|
|
43682
44014
|
color=color,
|
|
43683
44015
|
dimensions_map=dimensions_map,
|
|
44016
|
+
id=id,
|
|
43684
44017
|
label=label,
|
|
43685
44018
|
period=period,
|
|
43686
44019
|
region=region,
|
|
@@ -43688,6 +44021,7 @@ class DatabaseInstanceBase(
|
|
|
43688
44021
|
stack_region=stack_region,
|
|
43689
44022
|
statistic=statistic,
|
|
43690
44023
|
unit=unit,
|
|
44024
|
+
visible=visible,
|
|
43691
44025
|
)
|
|
43692
44026
|
|
|
43693
44027
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricCPUUtilization", [props]))
|
|
@@ -43699,6 +44033,7 @@ class DatabaseInstanceBase(
|
|
|
43699
44033
|
account: typing.Optional[builtins.str] = None,
|
|
43700
44034
|
color: typing.Optional[builtins.str] = None,
|
|
43701
44035
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
44036
|
+
id: typing.Optional[builtins.str] = None,
|
|
43702
44037
|
label: typing.Optional[builtins.str] = None,
|
|
43703
44038
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
43704
44039
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -43706,6 +44041,7 @@ class DatabaseInstanceBase(
|
|
|
43706
44041
|
stack_region: typing.Optional[builtins.str] = None,
|
|
43707
44042
|
statistic: typing.Optional[builtins.str] = None,
|
|
43708
44043
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
44044
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
43709
44045
|
) -> _Metric_e396a4dc:
|
|
43710
44046
|
'''The number of database connections in use.
|
|
43711
44047
|
|
|
@@ -43714,6 +44050,7 @@ class DatabaseInstanceBase(
|
|
|
43714
44050
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
43715
44051
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
43716
44052
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
44053
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
43717
44054
|
: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
|
|
43718
44055
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
43719
44056
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -43721,11 +44058,13 @@ class DatabaseInstanceBase(
|
|
|
43721
44058
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
43722
44059
|
: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
|
|
43723
44060
|
: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
|
|
44061
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
43724
44062
|
'''
|
|
43725
44063
|
props = _MetricOptions_1788b62f(
|
|
43726
44064
|
account=account,
|
|
43727
44065
|
color=color,
|
|
43728
44066
|
dimensions_map=dimensions_map,
|
|
44067
|
+
id=id,
|
|
43729
44068
|
label=label,
|
|
43730
44069
|
period=period,
|
|
43731
44070
|
region=region,
|
|
@@ -43733,6 +44072,7 @@ class DatabaseInstanceBase(
|
|
|
43733
44072
|
stack_region=stack_region,
|
|
43734
44073
|
statistic=statistic,
|
|
43735
44074
|
unit=unit,
|
|
44075
|
+
visible=visible,
|
|
43736
44076
|
)
|
|
43737
44077
|
|
|
43738
44078
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricDatabaseConnections", [props]))
|
|
@@ -43744,6 +44084,7 @@ class DatabaseInstanceBase(
|
|
|
43744
44084
|
account: typing.Optional[builtins.str] = None,
|
|
43745
44085
|
color: typing.Optional[builtins.str] = None,
|
|
43746
44086
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
44087
|
+
id: typing.Optional[builtins.str] = None,
|
|
43747
44088
|
label: typing.Optional[builtins.str] = None,
|
|
43748
44089
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
43749
44090
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -43751,6 +44092,7 @@ class DatabaseInstanceBase(
|
|
|
43751
44092
|
stack_region: typing.Optional[builtins.str] = None,
|
|
43752
44093
|
statistic: typing.Optional[builtins.str] = None,
|
|
43753
44094
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
44095
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
43754
44096
|
) -> _Metric_e396a4dc:
|
|
43755
44097
|
'''The amount of available random access memory.
|
|
43756
44098
|
|
|
@@ -43759,6 +44101,7 @@ class DatabaseInstanceBase(
|
|
|
43759
44101
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
43760
44102
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
43761
44103
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
44104
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
43762
44105
|
: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
|
|
43763
44106
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
43764
44107
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -43766,11 +44109,13 @@ class DatabaseInstanceBase(
|
|
|
43766
44109
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
43767
44110
|
: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
|
|
43768
44111
|
: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
|
|
44112
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
43769
44113
|
'''
|
|
43770
44114
|
props = _MetricOptions_1788b62f(
|
|
43771
44115
|
account=account,
|
|
43772
44116
|
color=color,
|
|
43773
44117
|
dimensions_map=dimensions_map,
|
|
44118
|
+
id=id,
|
|
43774
44119
|
label=label,
|
|
43775
44120
|
period=period,
|
|
43776
44121
|
region=region,
|
|
@@ -43778,6 +44123,7 @@ class DatabaseInstanceBase(
|
|
|
43778
44123
|
stack_region=stack_region,
|
|
43779
44124
|
statistic=statistic,
|
|
43780
44125
|
unit=unit,
|
|
44126
|
+
visible=visible,
|
|
43781
44127
|
)
|
|
43782
44128
|
|
|
43783
44129
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricFreeableMemory", [props]))
|
|
@@ -43789,6 +44135,7 @@ class DatabaseInstanceBase(
|
|
|
43789
44135
|
account: typing.Optional[builtins.str] = None,
|
|
43790
44136
|
color: typing.Optional[builtins.str] = None,
|
|
43791
44137
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
44138
|
+
id: typing.Optional[builtins.str] = None,
|
|
43792
44139
|
label: typing.Optional[builtins.str] = None,
|
|
43793
44140
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
43794
44141
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -43796,6 +44143,7 @@ class DatabaseInstanceBase(
|
|
|
43796
44143
|
stack_region: typing.Optional[builtins.str] = None,
|
|
43797
44144
|
statistic: typing.Optional[builtins.str] = None,
|
|
43798
44145
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
44146
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
43799
44147
|
) -> _Metric_e396a4dc:
|
|
43800
44148
|
'''The amount of available storage space.
|
|
43801
44149
|
|
|
@@ -43804,6 +44152,7 @@ class DatabaseInstanceBase(
|
|
|
43804
44152
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
43805
44153
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
43806
44154
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
44155
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
43807
44156
|
: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
|
|
43808
44157
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
43809
44158
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -43811,11 +44160,13 @@ class DatabaseInstanceBase(
|
|
|
43811
44160
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
43812
44161
|
: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
|
|
43813
44162
|
: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
|
|
44163
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
43814
44164
|
'''
|
|
43815
44165
|
props = _MetricOptions_1788b62f(
|
|
43816
44166
|
account=account,
|
|
43817
44167
|
color=color,
|
|
43818
44168
|
dimensions_map=dimensions_map,
|
|
44169
|
+
id=id,
|
|
43819
44170
|
label=label,
|
|
43820
44171
|
period=period,
|
|
43821
44172
|
region=region,
|
|
@@ -43823,6 +44174,7 @@ class DatabaseInstanceBase(
|
|
|
43823
44174
|
stack_region=stack_region,
|
|
43824
44175
|
statistic=statistic,
|
|
43825
44176
|
unit=unit,
|
|
44177
|
+
visible=visible,
|
|
43826
44178
|
)
|
|
43827
44179
|
|
|
43828
44180
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricFreeStorageSpace", [props]))
|
|
@@ -43834,6 +44186,7 @@ class DatabaseInstanceBase(
|
|
|
43834
44186
|
account: typing.Optional[builtins.str] = None,
|
|
43835
44187
|
color: typing.Optional[builtins.str] = None,
|
|
43836
44188
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
44189
|
+
id: typing.Optional[builtins.str] = None,
|
|
43837
44190
|
label: typing.Optional[builtins.str] = None,
|
|
43838
44191
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
43839
44192
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -43841,6 +44194,7 @@ class DatabaseInstanceBase(
|
|
|
43841
44194
|
stack_region: typing.Optional[builtins.str] = None,
|
|
43842
44195
|
statistic: typing.Optional[builtins.str] = None,
|
|
43843
44196
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
44197
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
43844
44198
|
) -> _Metric_e396a4dc:
|
|
43845
44199
|
'''The average number of disk write I/O operations per second.
|
|
43846
44200
|
|
|
@@ -43849,6 +44203,7 @@ class DatabaseInstanceBase(
|
|
|
43849
44203
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
43850
44204
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
43851
44205
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
44206
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
43852
44207
|
: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
|
|
43853
44208
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
43854
44209
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -43856,11 +44211,13 @@ class DatabaseInstanceBase(
|
|
|
43856
44211
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
43857
44212
|
: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
|
|
43858
44213
|
: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
|
|
44214
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
43859
44215
|
'''
|
|
43860
44216
|
props = _MetricOptions_1788b62f(
|
|
43861
44217
|
account=account,
|
|
43862
44218
|
color=color,
|
|
43863
44219
|
dimensions_map=dimensions_map,
|
|
44220
|
+
id=id,
|
|
43864
44221
|
label=label,
|
|
43865
44222
|
period=period,
|
|
43866
44223
|
region=region,
|
|
@@ -43868,6 +44225,7 @@ class DatabaseInstanceBase(
|
|
|
43868
44225
|
stack_region=stack_region,
|
|
43869
44226
|
statistic=statistic,
|
|
43870
44227
|
unit=unit,
|
|
44228
|
+
visible=visible,
|
|
43871
44229
|
)
|
|
43872
44230
|
|
|
43873
44231
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricReadIOPS", [props]))
|
|
@@ -43879,6 +44237,7 @@ class DatabaseInstanceBase(
|
|
|
43879
44237
|
account: typing.Optional[builtins.str] = None,
|
|
43880
44238
|
color: typing.Optional[builtins.str] = None,
|
|
43881
44239
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
44240
|
+
id: typing.Optional[builtins.str] = None,
|
|
43882
44241
|
label: typing.Optional[builtins.str] = None,
|
|
43883
44242
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
43884
44243
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -43886,6 +44245,7 @@ class DatabaseInstanceBase(
|
|
|
43886
44245
|
stack_region: typing.Optional[builtins.str] = None,
|
|
43887
44246
|
statistic: typing.Optional[builtins.str] = None,
|
|
43888
44247
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
44248
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
43889
44249
|
) -> _Metric_e396a4dc:
|
|
43890
44250
|
'''The average number of disk read I/O operations per second.
|
|
43891
44251
|
|
|
@@ -43894,6 +44254,7 @@ class DatabaseInstanceBase(
|
|
|
43894
44254
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
43895
44255
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
43896
44256
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
44257
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
43897
44258
|
: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
|
|
43898
44259
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
43899
44260
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -43901,11 +44262,13 @@ class DatabaseInstanceBase(
|
|
|
43901
44262
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
43902
44263
|
: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
|
|
43903
44264
|
: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
|
|
44265
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
43904
44266
|
'''
|
|
43905
44267
|
props = _MetricOptions_1788b62f(
|
|
43906
44268
|
account=account,
|
|
43907
44269
|
color=color,
|
|
43908
44270
|
dimensions_map=dimensions_map,
|
|
44271
|
+
id=id,
|
|
43909
44272
|
label=label,
|
|
43910
44273
|
period=period,
|
|
43911
44274
|
region=region,
|
|
@@ -43913,6 +44276,7 @@ class DatabaseInstanceBase(
|
|
|
43913
44276
|
stack_region=stack_region,
|
|
43914
44277
|
statistic=statistic,
|
|
43915
44278
|
unit=unit,
|
|
44279
|
+
visible=visible,
|
|
43916
44280
|
)
|
|
43917
44281
|
|
|
43918
44282
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricWriteIOPS", [props]))
|
|
@@ -47457,6 +47821,7 @@ class DatabaseCluster(
|
|
|
47457
47821
|
account: typing.Optional[builtins.str] = None,
|
|
47458
47822
|
color: typing.Optional[builtins.str] = None,
|
|
47459
47823
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
47824
|
+
id: typing.Optional[builtins.str] = None,
|
|
47460
47825
|
label: typing.Optional[builtins.str] = None,
|
|
47461
47826
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
47462
47827
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -47464,6 +47829,7 @@ class DatabaseCluster(
|
|
|
47464
47829
|
stack_region: typing.Optional[builtins.str] = None,
|
|
47465
47830
|
statistic: typing.Optional[builtins.str] = None,
|
|
47466
47831
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
47832
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
47467
47833
|
) -> _Metric_e396a4dc:
|
|
47468
47834
|
'''This value is represented as a percentage.
|
|
47469
47835
|
|
|
@@ -47476,6 +47842,7 @@ class DatabaseCluster(
|
|
|
47476
47842
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
47477
47843
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
47478
47844
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
47845
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
47479
47846
|
: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
|
|
47480
47847
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
47481
47848
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -47483,11 +47850,13 @@ class DatabaseCluster(
|
|
|
47483
47850
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
47484
47851
|
: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
|
|
47485
47852
|
: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
|
|
47853
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
47486
47854
|
'''
|
|
47487
47855
|
props = _MetricOptions_1788b62f(
|
|
47488
47856
|
account=account,
|
|
47489
47857
|
color=color,
|
|
47490
47858
|
dimensions_map=dimensions_map,
|
|
47859
|
+
id=id,
|
|
47491
47860
|
label=label,
|
|
47492
47861
|
period=period,
|
|
47493
47862
|
region=region,
|
|
@@ -47495,6 +47864,7 @@ class DatabaseCluster(
|
|
|
47495
47864
|
stack_region=stack_region,
|
|
47496
47865
|
statistic=statistic,
|
|
47497
47866
|
unit=unit,
|
|
47867
|
+
visible=visible,
|
|
47498
47868
|
)
|
|
47499
47869
|
|
|
47500
47870
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricACUUtilization", [props]))
|
|
@@ -47506,6 +47876,7 @@ class DatabaseCluster(
|
|
|
47506
47876
|
account: typing.Optional[builtins.str] = None,
|
|
47507
47877
|
color: typing.Optional[builtins.str] = None,
|
|
47508
47878
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
47879
|
+
id: typing.Optional[builtins.str] = None,
|
|
47509
47880
|
label: typing.Optional[builtins.str] = None,
|
|
47510
47881
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
47511
47882
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -47513,12 +47884,14 @@ class DatabaseCluster(
|
|
|
47513
47884
|
stack_region: typing.Optional[builtins.str] = None,
|
|
47514
47885
|
statistic: typing.Optional[builtins.str] = None,
|
|
47515
47886
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
47887
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
47516
47888
|
) -> _Metric_e396a4dc:
|
|
47517
47889
|
'''As a cluster-level metric, it represents the average of the ServerlessDatabaseCapacity values of all the Aurora Serverless v2 DB instances in the cluster.
|
|
47518
47890
|
|
|
47519
47891
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
47520
47892
|
:param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
|
|
47521
47893
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
47894
|
+
:param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
|
|
47522
47895
|
: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
|
|
47523
47896
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
47524
47897
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -47526,11 +47899,13 @@ class DatabaseCluster(
|
|
|
47526
47899
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
47527
47900
|
: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
|
|
47528
47901
|
: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
|
|
47902
|
+
:param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
|
|
47529
47903
|
'''
|
|
47530
47904
|
props = _MetricOptions_1788b62f(
|
|
47531
47905
|
account=account,
|
|
47532
47906
|
color=color,
|
|
47533
47907
|
dimensions_map=dimensions_map,
|
|
47908
|
+
id=id,
|
|
47534
47909
|
label=label,
|
|
47535
47910
|
period=period,
|
|
47536
47911
|
region=region,
|
|
@@ -47538,6 +47913,7 @@ class DatabaseCluster(
|
|
|
47538
47913
|
stack_region=stack_region,
|
|
47539
47914
|
statistic=statistic,
|
|
47540
47915
|
unit=unit,
|
|
47916
|
+
visible=visible,
|
|
47541
47917
|
)
|
|
47542
47918
|
|
|
47543
47919
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricServerlessDatabaseCapacity", [props]))
|
|
@@ -51435,6 +51811,7 @@ def _typecheckingstub__cb438e41c5d27e4b968b536ac8e59048e5a810f9216c9316ab7091ead
|
|
|
51435
51811
|
account: typing.Optional[builtins.str] = None,
|
|
51436
51812
|
color: typing.Optional[builtins.str] = None,
|
|
51437
51813
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
51814
|
+
id: typing.Optional[builtins.str] = None,
|
|
51438
51815
|
label: typing.Optional[builtins.str] = None,
|
|
51439
51816
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
51440
51817
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -51442,6 +51819,7 @@ def _typecheckingstub__cb438e41c5d27e4b968b536ac8e59048e5a810f9216c9316ab7091ead
|
|
|
51442
51819
|
stack_region: typing.Optional[builtins.str] = None,
|
|
51443
51820
|
statistic: typing.Optional[builtins.str] = None,
|
|
51444
51821
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
51822
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
51445
51823
|
) -> None:
|
|
51446
51824
|
"""Type checking stubs"""
|
|
51447
51825
|
pass
|
|
@@ -51482,6 +51860,7 @@ def _typecheckingstub__7a74ddedb30a6a3825b0f7fa6abc3a5aa48e031b507410402659ee350
|
|
|
51482
51860
|
account: typing.Optional[builtins.str] = None,
|
|
51483
51861
|
color: typing.Optional[builtins.str] = None,
|
|
51484
51862
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
51863
|
+
id: typing.Optional[builtins.str] = None,
|
|
51485
51864
|
label: typing.Optional[builtins.str] = None,
|
|
51486
51865
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
51487
51866
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -51489,6 +51868,7 @@ def _typecheckingstub__7a74ddedb30a6a3825b0f7fa6abc3a5aa48e031b507410402659ee350
|
|
|
51489
51868
|
stack_region: typing.Optional[builtins.str] = None,
|
|
51490
51869
|
statistic: typing.Optional[builtins.str] = None,
|
|
51491
51870
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
51871
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
51492
51872
|
) -> None:
|
|
51493
51873
|
"""Type checking stubs"""
|
|
51494
51874
|
pass
|
|
@@ -52261,6 +52641,7 @@ def _typecheckingstub__4f4ce592b81574a1f6a9ee4b6ab1c756352bb31fa97575b7cf7708b9d
|
|
|
52261
52641
|
account: typing.Optional[builtins.str] = None,
|
|
52262
52642
|
color: typing.Optional[builtins.str] = None,
|
|
52263
52643
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
52644
|
+
id: typing.Optional[builtins.str] = None,
|
|
52264
52645
|
label: typing.Optional[builtins.str] = None,
|
|
52265
52646
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
52266
52647
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -52268,6 +52649,7 @@ def _typecheckingstub__4f4ce592b81574a1f6a9ee4b6ab1c756352bb31fa97575b7cf7708b9d
|
|
|
52268
52649
|
stack_region: typing.Optional[builtins.str] = None,
|
|
52269
52650
|
statistic: typing.Optional[builtins.str] = None,
|
|
52270
52651
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
52652
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
52271
52653
|
) -> None:
|
|
52272
52654
|
"""Type checking stubs"""
|
|
52273
52655
|
pass
|
|
@@ -52438,6 +52820,7 @@ def _typecheckingstub__d3b875972d333f05c29d29ce0f29c0cd026377583d9fad46eb5cc05f0
|
|
|
52438
52820
|
account: typing.Optional[builtins.str] = None,
|
|
52439
52821
|
color: typing.Optional[builtins.str] = None,
|
|
52440
52822
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
52823
|
+
id: typing.Optional[builtins.str] = None,
|
|
52441
52824
|
label: typing.Optional[builtins.str] = None,
|
|
52442
52825
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
52443
52826
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -52445,6 +52828,7 @@ def _typecheckingstub__d3b875972d333f05c29d29ce0f29c0cd026377583d9fad46eb5cc05f0
|
|
|
52445
52828
|
stack_region: typing.Optional[builtins.str] = None,
|
|
52446
52829
|
statistic: typing.Optional[builtins.str] = None,
|
|
52447
52830
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
52831
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
52448
52832
|
) -> None:
|
|
52449
52833
|
"""Type checking stubs"""
|
|
52450
52834
|
pass
|