aws-cdk-lib 2.203.1__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.1.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.1.dist-info → aws_cdk_lib-2.204.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.204.0.dist-info}/RECORD +33 -33
- {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.204.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.204.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.204.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.204.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_dynamodb/__init__.py
CHANGED
|
@@ -8141,6 +8141,7 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
8141
8141
|
account: typing.Optional[builtins.str] = None,
|
|
8142
8142
|
color: typing.Optional[builtins.str] = None,
|
|
8143
8143
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
8144
|
+
id: typing.Optional[builtins.str] = None,
|
|
8144
8145
|
label: typing.Optional[builtins.str] = None,
|
|
8145
8146
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
8146
8147
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -8148,6 +8149,7 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
8148
8149
|
stack_region: typing.Optional[builtins.str] = None,
|
|
8149
8150
|
statistic: typing.Optional[builtins.str] = None,
|
|
8150
8151
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
8152
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
8151
8153
|
) -> _Metric_e396a4dc:
|
|
8152
8154
|
'''Metric for the number of Errors executing all Lambdas.
|
|
8153
8155
|
|
|
@@ -8155,6 +8157,7 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
8155
8157
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
8156
8158
|
: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
|
|
8157
8159
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
8160
|
+
: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
|
|
8158
8161
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
8159
8162
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
8160
8163
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -8162,6 +8165,7 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
8162
8165
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
8163
8166
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
8164
8167
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
8168
|
+
: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
|
|
8165
8169
|
'''
|
|
8166
8170
|
...
|
|
8167
8171
|
|
|
@@ -8172,6 +8176,7 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
8172
8176
|
account: typing.Optional[builtins.str] = None,
|
|
8173
8177
|
color: typing.Optional[builtins.str] = None,
|
|
8174
8178
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
8179
|
+
id: typing.Optional[builtins.str] = None,
|
|
8175
8180
|
label: typing.Optional[builtins.str] = None,
|
|
8176
8181
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
8177
8182
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -8179,12 +8184,14 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
8179
8184
|
stack_region: typing.Optional[builtins.str] = None,
|
|
8180
8185
|
statistic: typing.Optional[builtins.str] = None,
|
|
8181
8186
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
8187
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
8182
8188
|
) -> _Metric_e396a4dc:
|
|
8183
8189
|
'''Metric for the conditional check failed requests.
|
|
8184
8190
|
|
|
8185
8191
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
8186
8192
|
: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
|
|
8187
8193
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
8194
|
+
: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
|
|
8188
8195
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
8189
8196
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
8190
8197
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -8192,6 +8199,7 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
8192
8199
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
8193
8200
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
8194
8201
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
8202
|
+
: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
|
|
8195
8203
|
'''
|
|
8196
8204
|
...
|
|
8197
8205
|
|
|
@@ -8202,6 +8210,7 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
8202
8210
|
account: typing.Optional[builtins.str] = None,
|
|
8203
8211
|
color: typing.Optional[builtins.str] = None,
|
|
8204
8212
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
8213
|
+
id: typing.Optional[builtins.str] = None,
|
|
8205
8214
|
label: typing.Optional[builtins.str] = None,
|
|
8206
8215
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
8207
8216
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -8209,12 +8218,14 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
8209
8218
|
stack_region: typing.Optional[builtins.str] = None,
|
|
8210
8219
|
statistic: typing.Optional[builtins.str] = None,
|
|
8211
8220
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
8221
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
8212
8222
|
) -> _Metric_e396a4dc:
|
|
8213
8223
|
'''Metric for the consumed read capacity units.
|
|
8214
8224
|
|
|
8215
8225
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
8216
8226
|
: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
|
|
8217
8227
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
8228
|
+
: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
|
|
8218
8229
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
8219
8230
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
8220
8231
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -8222,6 +8233,7 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
8222
8233
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
8223
8234
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
8224
8235
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
8236
|
+
: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
|
|
8225
8237
|
'''
|
|
8226
8238
|
...
|
|
8227
8239
|
|
|
@@ -8232,6 +8244,7 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
8232
8244
|
account: typing.Optional[builtins.str] = None,
|
|
8233
8245
|
color: typing.Optional[builtins.str] = None,
|
|
8234
8246
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
8247
|
+
id: typing.Optional[builtins.str] = None,
|
|
8235
8248
|
label: typing.Optional[builtins.str] = None,
|
|
8236
8249
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
8237
8250
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -8239,12 +8252,14 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
8239
8252
|
stack_region: typing.Optional[builtins.str] = None,
|
|
8240
8253
|
statistic: typing.Optional[builtins.str] = None,
|
|
8241
8254
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
8255
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
8242
8256
|
) -> _Metric_e396a4dc:
|
|
8243
8257
|
'''Metric for the consumed write capacity units.
|
|
8244
8258
|
|
|
8245
8259
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
8246
8260
|
: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
|
|
8247
8261
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
8262
|
+
: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
|
|
8248
8263
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
8249
8264
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
8250
8265
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -8252,6 +8267,7 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
8252
8267
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
8253
8268
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
8254
8269
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
8270
|
+
: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
|
|
8255
8271
|
'''
|
|
8256
8272
|
...
|
|
8257
8273
|
|
|
@@ -8262,6 +8278,7 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
8262
8278
|
account: typing.Optional[builtins.str] = None,
|
|
8263
8279
|
color: typing.Optional[builtins.str] = None,
|
|
8264
8280
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
8281
|
+
id: typing.Optional[builtins.str] = None,
|
|
8265
8282
|
label: typing.Optional[builtins.str] = None,
|
|
8266
8283
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
8267
8284
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -8269,12 +8286,14 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
8269
8286
|
stack_region: typing.Optional[builtins.str] = None,
|
|
8270
8287
|
statistic: typing.Optional[builtins.str] = None,
|
|
8271
8288
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
8289
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
8272
8290
|
) -> _Metric_e396a4dc:
|
|
8273
8291
|
'''Metric for the successful request latency.
|
|
8274
8292
|
|
|
8275
8293
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
8276
8294
|
: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
|
|
8277
8295
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
8296
|
+
: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
|
|
8278
8297
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
8279
8298
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
8280
8299
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -8282,6 +8301,7 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
8282
8301
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
8283
8302
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
8284
8303
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
8304
|
+
: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
|
|
8285
8305
|
'''
|
|
8286
8306
|
...
|
|
8287
8307
|
|
|
@@ -8293,6 +8313,7 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
8293
8313
|
account: typing.Optional[builtins.str] = None,
|
|
8294
8314
|
color: typing.Optional[builtins.str] = None,
|
|
8295
8315
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
8316
|
+
id: typing.Optional[builtins.str] = None,
|
|
8296
8317
|
label: typing.Optional[builtins.str] = None,
|
|
8297
8318
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
8298
8319
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -8300,6 +8321,7 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
8300
8321
|
stack_region: typing.Optional[builtins.str] = None,
|
|
8301
8322
|
statistic: typing.Optional[builtins.str] = None,
|
|
8302
8323
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
8324
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
8303
8325
|
) -> _IMetric_c7fd29de:
|
|
8304
8326
|
'''Metric for the system errors this table.
|
|
8305
8327
|
|
|
@@ -8307,6 +8329,7 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
8307
8329
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
8308
8330
|
: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
|
|
8309
8331
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
8332
|
+
: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
|
|
8310
8333
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
8311
8334
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
8312
8335
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -8314,6 +8337,7 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
8314
8337
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
8315
8338
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
8316
8339
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
8340
|
+
: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
|
|
8317
8341
|
'''
|
|
8318
8342
|
...
|
|
8319
8343
|
|
|
@@ -8324,6 +8348,7 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
8324
8348
|
account: typing.Optional[builtins.str] = None,
|
|
8325
8349
|
color: typing.Optional[builtins.str] = None,
|
|
8326
8350
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
8351
|
+
id: typing.Optional[builtins.str] = None,
|
|
8327
8352
|
label: typing.Optional[builtins.str] = None,
|
|
8328
8353
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
8329
8354
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -8331,12 +8356,14 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
8331
8356
|
stack_region: typing.Optional[builtins.str] = None,
|
|
8332
8357
|
statistic: typing.Optional[builtins.str] = None,
|
|
8333
8358
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
8359
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
8334
8360
|
) -> _Metric_e396a4dc:
|
|
8335
8361
|
'''(deprecated) Metric for throttled requests.
|
|
8336
8362
|
|
|
8337
8363
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
8338
8364
|
: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
|
|
8339
8365
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
8366
|
+
: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
|
|
8340
8367
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
8341
8368
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
8342
8369
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -8344,6 +8371,7 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
8344
8371
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
8345
8372
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
8346
8373
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
8374
|
+
: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
|
|
8347
8375
|
|
|
8348
8376
|
:deprecated: use ``metricThrottledRequestsForOperations``
|
|
8349
8377
|
|
|
@@ -8359,6 +8387,7 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
8359
8387
|
account: typing.Optional[builtins.str] = None,
|
|
8360
8388
|
color: typing.Optional[builtins.str] = None,
|
|
8361
8389
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
8390
|
+
id: typing.Optional[builtins.str] = None,
|
|
8362
8391
|
label: typing.Optional[builtins.str] = None,
|
|
8363
8392
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
8364
8393
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -8366,6 +8395,7 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
8366
8395
|
stack_region: typing.Optional[builtins.str] = None,
|
|
8367
8396
|
statistic: typing.Optional[builtins.str] = None,
|
|
8368
8397
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
8398
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
8369
8399
|
) -> _IMetric_c7fd29de:
|
|
8370
8400
|
'''Metric for throttled requests.
|
|
8371
8401
|
|
|
@@ -8373,6 +8403,7 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
8373
8403
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
8374
8404
|
: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
|
|
8375
8405
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
8406
|
+
: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
|
|
8376
8407
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
8377
8408
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
8378
8409
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -8380,6 +8411,7 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
8380
8411
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
8381
8412
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
8382
8413
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
8414
|
+
: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
|
|
8383
8415
|
'''
|
|
8384
8416
|
...
|
|
8385
8417
|
|
|
@@ -8390,6 +8422,7 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
8390
8422
|
account: typing.Optional[builtins.str] = None,
|
|
8391
8423
|
color: typing.Optional[builtins.str] = None,
|
|
8392
8424
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
8425
|
+
id: typing.Optional[builtins.str] = None,
|
|
8393
8426
|
label: typing.Optional[builtins.str] = None,
|
|
8394
8427
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
8395
8428
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -8397,12 +8430,14 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
8397
8430
|
stack_region: typing.Optional[builtins.str] = None,
|
|
8398
8431
|
statistic: typing.Optional[builtins.str] = None,
|
|
8399
8432
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
8433
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
8400
8434
|
) -> _Metric_e396a4dc:
|
|
8401
8435
|
'''Metric for the user errors.
|
|
8402
8436
|
|
|
8403
8437
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
8404
8438
|
: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
|
|
8405
8439
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
8440
|
+
: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
|
|
8406
8441
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
8407
8442
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
8408
8443
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -8410,6 +8445,7 @@ class ITable(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
8410
8445
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
8411
8446
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
8412
8447
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
8448
|
+
: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
|
|
8413
8449
|
'''
|
|
8414
8450
|
...
|
|
8415
8451
|
|
|
@@ -8589,6 +8625,7 @@ class _ITableProxy(
|
|
|
8589
8625
|
account: typing.Optional[builtins.str] = None,
|
|
8590
8626
|
color: typing.Optional[builtins.str] = None,
|
|
8591
8627
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
8628
|
+
id: typing.Optional[builtins.str] = None,
|
|
8592
8629
|
label: typing.Optional[builtins.str] = None,
|
|
8593
8630
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
8594
8631
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -8596,6 +8633,7 @@ class _ITableProxy(
|
|
|
8596
8633
|
stack_region: typing.Optional[builtins.str] = None,
|
|
8597
8634
|
statistic: typing.Optional[builtins.str] = None,
|
|
8598
8635
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
8636
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
8599
8637
|
) -> _Metric_e396a4dc:
|
|
8600
8638
|
'''Metric for the number of Errors executing all Lambdas.
|
|
8601
8639
|
|
|
@@ -8603,6 +8641,7 @@ class _ITableProxy(
|
|
|
8603
8641
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
8604
8642
|
: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
|
|
8605
8643
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
8644
|
+
: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
|
|
8606
8645
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
8607
8646
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
8608
8647
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -8610,6 +8649,7 @@ class _ITableProxy(
|
|
|
8610
8649
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
8611
8650
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
8612
8651
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
8652
|
+
: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
|
|
8613
8653
|
'''
|
|
8614
8654
|
if __debug__:
|
|
8615
8655
|
type_hints = typing.get_type_hints(_typecheckingstub__44aae7bfccb81f7147f788917765a21288aff5fe772bb7c0c84ceb7a7f83c6a4)
|
|
@@ -8618,6 +8658,7 @@ class _ITableProxy(
|
|
|
8618
8658
|
account=account,
|
|
8619
8659
|
color=color,
|
|
8620
8660
|
dimensions_map=dimensions_map,
|
|
8661
|
+
id=id,
|
|
8621
8662
|
label=label,
|
|
8622
8663
|
period=period,
|
|
8623
8664
|
region=region,
|
|
@@ -8625,6 +8666,7 @@ class _ITableProxy(
|
|
|
8625
8666
|
stack_region=stack_region,
|
|
8626
8667
|
statistic=statistic,
|
|
8627
8668
|
unit=unit,
|
|
8669
|
+
visible=visible,
|
|
8628
8670
|
)
|
|
8629
8671
|
|
|
8630
8672
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metric", [metric_name, props]))
|
|
@@ -8636,6 +8678,7 @@ class _ITableProxy(
|
|
|
8636
8678
|
account: typing.Optional[builtins.str] = None,
|
|
8637
8679
|
color: typing.Optional[builtins.str] = None,
|
|
8638
8680
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
8681
|
+
id: typing.Optional[builtins.str] = None,
|
|
8639
8682
|
label: typing.Optional[builtins.str] = None,
|
|
8640
8683
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
8641
8684
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -8643,12 +8686,14 @@ class _ITableProxy(
|
|
|
8643
8686
|
stack_region: typing.Optional[builtins.str] = None,
|
|
8644
8687
|
statistic: typing.Optional[builtins.str] = None,
|
|
8645
8688
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
8689
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
8646
8690
|
) -> _Metric_e396a4dc:
|
|
8647
8691
|
'''Metric for the conditional check failed requests.
|
|
8648
8692
|
|
|
8649
8693
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
8650
8694
|
: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
|
|
8651
8695
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
8696
|
+
: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
|
|
8652
8697
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
8653
8698
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
8654
8699
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -8656,11 +8701,13 @@ class _ITableProxy(
|
|
|
8656
8701
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
8657
8702
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
8658
8703
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
8704
|
+
: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
|
|
8659
8705
|
'''
|
|
8660
8706
|
props = _MetricOptions_1788b62f(
|
|
8661
8707
|
account=account,
|
|
8662
8708
|
color=color,
|
|
8663
8709
|
dimensions_map=dimensions_map,
|
|
8710
|
+
id=id,
|
|
8664
8711
|
label=label,
|
|
8665
8712
|
period=period,
|
|
8666
8713
|
region=region,
|
|
@@ -8668,6 +8715,7 @@ class _ITableProxy(
|
|
|
8668
8715
|
stack_region=stack_region,
|
|
8669
8716
|
statistic=statistic,
|
|
8670
8717
|
unit=unit,
|
|
8718
|
+
visible=visible,
|
|
8671
8719
|
)
|
|
8672
8720
|
|
|
8673
8721
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricConditionalCheckFailedRequests", [props]))
|
|
@@ -8679,6 +8727,7 @@ class _ITableProxy(
|
|
|
8679
8727
|
account: typing.Optional[builtins.str] = None,
|
|
8680
8728
|
color: typing.Optional[builtins.str] = None,
|
|
8681
8729
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
8730
|
+
id: typing.Optional[builtins.str] = None,
|
|
8682
8731
|
label: typing.Optional[builtins.str] = None,
|
|
8683
8732
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
8684
8733
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -8686,12 +8735,14 @@ class _ITableProxy(
|
|
|
8686
8735
|
stack_region: typing.Optional[builtins.str] = None,
|
|
8687
8736
|
statistic: typing.Optional[builtins.str] = None,
|
|
8688
8737
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
8738
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
8689
8739
|
) -> _Metric_e396a4dc:
|
|
8690
8740
|
'''Metric for the consumed read capacity units.
|
|
8691
8741
|
|
|
8692
8742
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
8693
8743
|
: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
|
|
8694
8744
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
8745
|
+
: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
|
|
8695
8746
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
8696
8747
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
8697
8748
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -8699,11 +8750,13 @@ class _ITableProxy(
|
|
|
8699
8750
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
8700
8751
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
8701
8752
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
8753
|
+
: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
|
|
8702
8754
|
'''
|
|
8703
8755
|
props = _MetricOptions_1788b62f(
|
|
8704
8756
|
account=account,
|
|
8705
8757
|
color=color,
|
|
8706
8758
|
dimensions_map=dimensions_map,
|
|
8759
|
+
id=id,
|
|
8707
8760
|
label=label,
|
|
8708
8761
|
period=period,
|
|
8709
8762
|
region=region,
|
|
@@ -8711,6 +8764,7 @@ class _ITableProxy(
|
|
|
8711
8764
|
stack_region=stack_region,
|
|
8712
8765
|
statistic=statistic,
|
|
8713
8766
|
unit=unit,
|
|
8767
|
+
visible=visible,
|
|
8714
8768
|
)
|
|
8715
8769
|
|
|
8716
8770
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricConsumedReadCapacityUnits", [props]))
|
|
@@ -8722,6 +8776,7 @@ class _ITableProxy(
|
|
|
8722
8776
|
account: typing.Optional[builtins.str] = None,
|
|
8723
8777
|
color: typing.Optional[builtins.str] = None,
|
|
8724
8778
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
8779
|
+
id: typing.Optional[builtins.str] = None,
|
|
8725
8780
|
label: typing.Optional[builtins.str] = None,
|
|
8726
8781
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
8727
8782
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -8729,12 +8784,14 @@ class _ITableProxy(
|
|
|
8729
8784
|
stack_region: typing.Optional[builtins.str] = None,
|
|
8730
8785
|
statistic: typing.Optional[builtins.str] = None,
|
|
8731
8786
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
8787
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
8732
8788
|
) -> _Metric_e396a4dc:
|
|
8733
8789
|
'''Metric for the consumed write capacity units.
|
|
8734
8790
|
|
|
8735
8791
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
8736
8792
|
: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
|
|
8737
8793
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
8794
|
+
: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
|
|
8738
8795
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
8739
8796
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
8740
8797
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -8742,11 +8799,13 @@ class _ITableProxy(
|
|
|
8742
8799
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
8743
8800
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
8744
8801
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
8802
|
+
: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
|
|
8745
8803
|
'''
|
|
8746
8804
|
props = _MetricOptions_1788b62f(
|
|
8747
8805
|
account=account,
|
|
8748
8806
|
color=color,
|
|
8749
8807
|
dimensions_map=dimensions_map,
|
|
8808
|
+
id=id,
|
|
8750
8809
|
label=label,
|
|
8751
8810
|
period=period,
|
|
8752
8811
|
region=region,
|
|
@@ -8754,6 +8813,7 @@ class _ITableProxy(
|
|
|
8754
8813
|
stack_region=stack_region,
|
|
8755
8814
|
statistic=statistic,
|
|
8756
8815
|
unit=unit,
|
|
8816
|
+
visible=visible,
|
|
8757
8817
|
)
|
|
8758
8818
|
|
|
8759
8819
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricConsumedWriteCapacityUnits", [props]))
|
|
@@ -8765,6 +8825,7 @@ class _ITableProxy(
|
|
|
8765
8825
|
account: typing.Optional[builtins.str] = None,
|
|
8766
8826
|
color: typing.Optional[builtins.str] = None,
|
|
8767
8827
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
8828
|
+
id: typing.Optional[builtins.str] = None,
|
|
8768
8829
|
label: typing.Optional[builtins.str] = None,
|
|
8769
8830
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
8770
8831
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -8772,12 +8833,14 @@ class _ITableProxy(
|
|
|
8772
8833
|
stack_region: typing.Optional[builtins.str] = None,
|
|
8773
8834
|
statistic: typing.Optional[builtins.str] = None,
|
|
8774
8835
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
8836
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
8775
8837
|
) -> _Metric_e396a4dc:
|
|
8776
8838
|
'''Metric for the successful request latency.
|
|
8777
8839
|
|
|
8778
8840
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
8779
8841
|
: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
|
|
8780
8842
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
8843
|
+
: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
|
|
8781
8844
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
8782
8845
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
8783
8846
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -8785,11 +8848,13 @@ class _ITableProxy(
|
|
|
8785
8848
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
8786
8849
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
8787
8850
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
8851
|
+
: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
|
|
8788
8852
|
'''
|
|
8789
8853
|
props = _MetricOptions_1788b62f(
|
|
8790
8854
|
account=account,
|
|
8791
8855
|
color=color,
|
|
8792
8856
|
dimensions_map=dimensions_map,
|
|
8857
|
+
id=id,
|
|
8793
8858
|
label=label,
|
|
8794
8859
|
period=period,
|
|
8795
8860
|
region=region,
|
|
@@ -8797,6 +8862,7 @@ class _ITableProxy(
|
|
|
8797
8862
|
stack_region=stack_region,
|
|
8798
8863
|
statistic=statistic,
|
|
8799
8864
|
unit=unit,
|
|
8865
|
+
visible=visible,
|
|
8800
8866
|
)
|
|
8801
8867
|
|
|
8802
8868
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricSuccessfulRequestLatency", [props]))
|
|
@@ -8809,6 +8875,7 @@ class _ITableProxy(
|
|
|
8809
8875
|
account: typing.Optional[builtins.str] = None,
|
|
8810
8876
|
color: typing.Optional[builtins.str] = None,
|
|
8811
8877
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
8878
|
+
id: typing.Optional[builtins.str] = None,
|
|
8812
8879
|
label: typing.Optional[builtins.str] = None,
|
|
8813
8880
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
8814
8881
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -8816,6 +8883,7 @@ class _ITableProxy(
|
|
|
8816
8883
|
stack_region: typing.Optional[builtins.str] = None,
|
|
8817
8884
|
statistic: typing.Optional[builtins.str] = None,
|
|
8818
8885
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
8886
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
8819
8887
|
) -> _IMetric_c7fd29de:
|
|
8820
8888
|
'''Metric for the system errors this table.
|
|
8821
8889
|
|
|
@@ -8823,6 +8891,7 @@ class _ITableProxy(
|
|
|
8823
8891
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
8824
8892
|
: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
|
|
8825
8893
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
8894
|
+
: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
|
|
8826
8895
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
8827
8896
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
8828
8897
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -8830,12 +8899,14 @@ class _ITableProxy(
|
|
|
8830
8899
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
8831
8900
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
8832
8901
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
8902
|
+
: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
|
|
8833
8903
|
'''
|
|
8834
8904
|
props = SystemErrorsForOperationsMetricOptions(
|
|
8835
8905
|
operations=operations,
|
|
8836
8906
|
account=account,
|
|
8837
8907
|
color=color,
|
|
8838
8908
|
dimensions_map=dimensions_map,
|
|
8909
|
+
id=id,
|
|
8839
8910
|
label=label,
|
|
8840
8911
|
period=period,
|
|
8841
8912
|
region=region,
|
|
@@ -8843,6 +8914,7 @@ class _ITableProxy(
|
|
|
8843
8914
|
stack_region=stack_region,
|
|
8844
8915
|
statistic=statistic,
|
|
8845
8916
|
unit=unit,
|
|
8917
|
+
visible=visible,
|
|
8846
8918
|
)
|
|
8847
8919
|
|
|
8848
8920
|
return typing.cast(_IMetric_c7fd29de, jsii.invoke(self, "metricSystemErrorsForOperations", [props]))
|
|
@@ -8854,6 +8926,7 @@ class _ITableProxy(
|
|
|
8854
8926
|
account: typing.Optional[builtins.str] = None,
|
|
8855
8927
|
color: typing.Optional[builtins.str] = None,
|
|
8856
8928
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
8929
|
+
id: typing.Optional[builtins.str] = None,
|
|
8857
8930
|
label: typing.Optional[builtins.str] = None,
|
|
8858
8931
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
8859
8932
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -8861,12 +8934,14 @@ class _ITableProxy(
|
|
|
8861
8934
|
stack_region: typing.Optional[builtins.str] = None,
|
|
8862
8935
|
statistic: typing.Optional[builtins.str] = None,
|
|
8863
8936
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
8937
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
8864
8938
|
) -> _Metric_e396a4dc:
|
|
8865
8939
|
'''(deprecated) Metric for throttled requests.
|
|
8866
8940
|
|
|
8867
8941
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
8868
8942
|
: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
|
|
8869
8943
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
8944
|
+
: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
|
|
8870
8945
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
8871
8946
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
8872
8947
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -8874,6 +8949,7 @@ class _ITableProxy(
|
|
|
8874
8949
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
8875
8950
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
8876
8951
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
8952
|
+
: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
|
|
8877
8953
|
|
|
8878
8954
|
:deprecated: use ``metricThrottledRequestsForOperations``
|
|
8879
8955
|
|
|
@@ -8883,6 +8959,7 @@ class _ITableProxy(
|
|
|
8883
8959
|
account=account,
|
|
8884
8960
|
color=color,
|
|
8885
8961
|
dimensions_map=dimensions_map,
|
|
8962
|
+
id=id,
|
|
8886
8963
|
label=label,
|
|
8887
8964
|
period=period,
|
|
8888
8965
|
region=region,
|
|
@@ -8890,6 +8967,7 @@ class _ITableProxy(
|
|
|
8890
8967
|
stack_region=stack_region,
|
|
8891
8968
|
statistic=statistic,
|
|
8892
8969
|
unit=unit,
|
|
8970
|
+
visible=visible,
|
|
8893
8971
|
)
|
|
8894
8972
|
|
|
8895
8973
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricThrottledRequests", [props]))
|
|
@@ -8902,6 +8980,7 @@ class _ITableProxy(
|
|
|
8902
8980
|
account: typing.Optional[builtins.str] = None,
|
|
8903
8981
|
color: typing.Optional[builtins.str] = None,
|
|
8904
8982
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
8983
|
+
id: typing.Optional[builtins.str] = None,
|
|
8905
8984
|
label: typing.Optional[builtins.str] = None,
|
|
8906
8985
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
8907
8986
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -8909,6 +8988,7 @@ class _ITableProxy(
|
|
|
8909
8988
|
stack_region: typing.Optional[builtins.str] = None,
|
|
8910
8989
|
statistic: typing.Optional[builtins.str] = None,
|
|
8911
8990
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
8991
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
8912
8992
|
) -> _IMetric_c7fd29de:
|
|
8913
8993
|
'''Metric for throttled requests.
|
|
8914
8994
|
|
|
@@ -8916,6 +8996,7 @@ class _ITableProxy(
|
|
|
8916
8996
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
8917
8997
|
: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
|
|
8918
8998
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
8999
|
+
: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
|
|
8919
9000
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
8920
9001
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
8921
9002
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -8923,12 +9004,14 @@ class _ITableProxy(
|
|
|
8923
9004
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
8924
9005
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
8925
9006
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
9007
|
+
: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
|
|
8926
9008
|
'''
|
|
8927
9009
|
props = OperationsMetricOptions(
|
|
8928
9010
|
operations=operations,
|
|
8929
9011
|
account=account,
|
|
8930
9012
|
color=color,
|
|
8931
9013
|
dimensions_map=dimensions_map,
|
|
9014
|
+
id=id,
|
|
8932
9015
|
label=label,
|
|
8933
9016
|
period=period,
|
|
8934
9017
|
region=region,
|
|
@@ -8936,6 +9019,7 @@ class _ITableProxy(
|
|
|
8936
9019
|
stack_region=stack_region,
|
|
8937
9020
|
statistic=statistic,
|
|
8938
9021
|
unit=unit,
|
|
9022
|
+
visible=visible,
|
|
8939
9023
|
)
|
|
8940
9024
|
|
|
8941
9025
|
return typing.cast(_IMetric_c7fd29de, jsii.invoke(self, "metricThrottledRequestsForOperations", [props]))
|
|
@@ -8947,6 +9031,7 @@ class _ITableProxy(
|
|
|
8947
9031
|
account: typing.Optional[builtins.str] = None,
|
|
8948
9032
|
color: typing.Optional[builtins.str] = None,
|
|
8949
9033
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
9034
|
+
id: typing.Optional[builtins.str] = None,
|
|
8950
9035
|
label: typing.Optional[builtins.str] = None,
|
|
8951
9036
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
8952
9037
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -8954,12 +9039,14 @@ class _ITableProxy(
|
|
|
8954
9039
|
stack_region: typing.Optional[builtins.str] = None,
|
|
8955
9040
|
statistic: typing.Optional[builtins.str] = None,
|
|
8956
9041
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
9042
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
8957
9043
|
) -> _Metric_e396a4dc:
|
|
8958
9044
|
'''Metric for the user errors.
|
|
8959
9045
|
|
|
8960
9046
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
8961
9047
|
: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
|
|
8962
9048
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
9049
|
+
: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
|
|
8963
9050
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
8964
9051
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
8965
9052
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -8967,11 +9054,13 @@ class _ITableProxy(
|
|
|
8967
9054
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
8968
9055
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
8969
9056
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
9057
|
+
: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
|
|
8970
9058
|
'''
|
|
8971
9059
|
props = _MetricOptions_1788b62f(
|
|
8972
9060
|
account=account,
|
|
8973
9061
|
color=color,
|
|
8974
9062
|
dimensions_map=dimensions_map,
|
|
9063
|
+
id=id,
|
|
8975
9064
|
label=label,
|
|
8976
9065
|
period=period,
|
|
8977
9066
|
region=region,
|
|
@@ -8979,6 +9068,7 @@ class _ITableProxy(
|
|
|
8979
9068
|
stack_region=stack_region,
|
|
8980
9069
|
statistic=statistic,
|
|
8981
9070
|
unit=unit,
|
|
9071
|
+
visible=visible,
|
|
8982
9072
|
)
|
|
8983
9073
|
|
|
8984
9074
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricUserErrors", [props]))
|
|
@@ -9810,6 +9900,7 @@ class StreamViewType(enum.Enum):
|
|
|
9810
9900
|
"account": "account",
|
|
9811
9901
|
"color": "color",
|
|
9812
9902
|
"dimensions_map": "dimensionsMap",
|
|
9903
|
+
"id": "id",
|
|
9813
9904
|
"label": "label",
|
|
9814
9905
|
"period": "period",
|
|
9815
9906
|
"region": "region",
|
|
@@ -9817,6 +9908,7 @@ class StreamViewType(enum.Enum):
|
|
|
9817
9908
|
"stack_region": "stackRegion",
|
|
9818
9909
|
"statistic": "statistic",
|
|
9819
9910
|
"unit": "unit",
|
|
9911
|
+
"visible": "visible",
|
|
9820
9912
|
"operations": "operations",
|
|
9821
9913
|
},
|
|
9822
9914
|
)
|
|
@@ -9827,6 +9919,7 @@ class SystemErrorsForOperationsMetricOptions(_MetricOptions_1788b62f):
|
|
|
9827
9919
|
account: typing.Optional[builtins.str] = None,
|
|
9828
9920
|
color: typing.Optional[builtins.str] = None,
|
|
9829
9921
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
9922
|
+
id: typing.Optional[builtins.str] = None,
|
|
9830
9923
|
label: typing.Optional[builtins.str] = None,
|
|
9831
9924
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
9832
9925
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -9834,6 +9927,7 @@ class SystemErrorsForOperationsMetricOptions(_MetricOptions_1788b62f):
|
|
|
9834
9927
|
stack_region: typing.Optional[builtins.str] = None,
|
|
9835
9928
|
statistic: typing.Optional[builtins.str] = None,
|
|
9836
9929
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
9930
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
9837
9931
|
operations: typing.Optional[typing.Sequence[Operation]] = None,
|
|
9838
9932
|
) -> None:
|
|
9839
9933
|
'''Options for configuring a system errors metric that considers multiple operations.
|
|
@@ -9841,6 +9935,7 @@ class SystemErrorsForOperationsMetricOptions(_MetricOptions_1788b62f):
|
|
|
9841
9935
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
9842
9936
|
: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
|
|
9843
9937
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
9938
|
+
: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
|
|
9844
9939
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
9845
9940
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
9846
9941
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -9848,6 +9943,7 @@ class SystemErrorsForOperationsMetricOptions(_MetricOptions_1788b62f):
|
|
|
9848
9943
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
9849
9944
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
9850
9945
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
9946
|
+
: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
|
|
9851
9947
|
:param operations: The operations to apply the metric to. Default: - All operations available by DynamoDB tables will be considered.
|
|
9852
9948
|
|
|
9853
9949
|
:exampleMetadata: fixture=_generated
|
|
@@ -9866,6 +9962,7 @@ class SystemErrorsForOperationsMetricOptions(_MetricOptions_1788b62f):
|
|
|
9866
9962
|
dimensions_map={
|
|
9867
9963
|
"dimensions_map_key": "dimensionsMap"
|
|
9868
9964
|
},
|
|
9965
|
+
id="id",
|
|
9869
9966
|
label="label",
|
|
9870
9967
|
operations=[dynamodb.Operation.GET_ITEM],
|
|
9871
9968
|
period=cdk.Duration.minutes(30),
|
|
@@ -9873,7 +9970,8 @@ class SystemErrorsForOperationsMetricOptions(_MetricOptions_1788b62f):
|
|
|
9873
9970
|
stack_account="stackAccount",
|
|
9874
9971
|
stack_region="stackRegion",
|
|
9875
9972
|
statistic="statistic",
|
|
9876
|
-
unit=cloudwatch.Unit.SECONDS
|
|
9973
|
+
unit=cloudwatch.Unit.SECONDS,
|
|
9974
|
+
visible=False
|
|
9877
9975
|
)
|
|
9878
9976
|
'''
|
|
9879
9977
|
if __debug__:
|
|
@@ -9881,6 +9979,7 @@ class SystemErrorsForOperationsMetricOptions(_MetricOptions_1788b62f):
|
|
|
9881
9979
|
check_type(argname="argument account", value=account, expected_type=type_hints["account"])
|
|
9882
9980
|
check_type(argname="argument color", value=color, expected_type=type_hints["color"])
|
|
9883
9981
|
check_type(argname="argument dimensions_map", value=dimensions_map, expected_type=type_hints["dimensions_map"])
|
|
9982
|
+
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
9884
9983
|
check_type(argname="argument label", value=label, expected_type=type_hints["label"])
|
|
9885
9984
|
check_type(argname="argument period", value=period, expected_type=type_hints["period"])
|
|
9886
9985
|
check_type(argname="argument region", value=region, expected_type=type_hints["region"])
|
|
@@ -9888,6 +9987,7 @@ class SystemErrorsForOperationsMetricOptions(_MetricOptions_1788b62f):
|
|
|
9888
9987
|
check_type(argname="argument stack_region", value=stack_region, expected_type=type_hints["stack_region"])
|
|
9889
9988
|
check_type(argname="argument statistic", value=statistic, expected_type=type_hints["statistic"])
|
|
9890
9989
|
check_type(argname="argument unit", value=unit, expected_type=type_hints["unit"])
|
|
9990
|
+
check_type(argname="argument visible", value=visible, expected_type=type_hints["visible"])
|
|
9891
9991
|
check_type(argname="argument operations", value=operations, expected_type=type_hints["operations"])
|
|
9892
9992
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
9893
9993
|
if account is not None:
|
|
@@ -9896,6 +9996,8 @@ class SystemErrorsForOperationsMetricOptions(_MetricOptions_1788b62f):
|
|
|
9896
9996
|
self._values["color"] = color
|
|
9897
9997
|
if dimensions_map is not None:
|
|
9898
9998
|
self._values["dimensions_map"] = dimensions_map
|
|
9999
|
+
if id is not None:
|
|
10000
|
+
self._values["id"] = id
|
|
9899
10001
|
if label is not None:
|
|
9900
10002
|
self._values["label"] = label
|
|
9901
10003
|
if period is not None:
|
|
@@ -9910,6 +10012,8 @@ class SystemErrorsForOperationsMetricOptions(_MetricOptions_1788b62f):
|
|
|
9910
10012
|
self._values["statistic"] = statistic
|
|
9911
10013
|
if unit is not None:
|
|
9912
10014
|
self._values["unit"] = unit
|
|
10015
|
+
if visible is not None:
|
|
10016
|
+
self._values["visible"] = visible
|
|
9913
10017
|
if operations is not None:
|
|
9914
10018
|
self._values["operations"] = operations
|
|
9915
10019
|
|
|
@@ -9942,6 +10046,19 @@ class SystemErrorsForOperationsMetricOptions(_MetricOptions_1788b62f):
|
|
|
9942
10046
|
result = self._values.get("dimensions_map")
|
|
9943
10047
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, builtins.str]], result)
|
|
9944
10048
|
|
|
10049
|
+
@builtins.property
|
|
10050
|
+
def id(self) -> typing.Optional[builtins.str]:
|
|
10051
|
+
'''Unique identifier for this metric when used in dashboard widgets.
|
|
10052
|
+
|
|
10053
|
+
The id can be used as a variable to represent this metric in math expressions.
|
|
10054
|
+
Valid characters are letters, numbers, and underscore. The first character
|
|
10055
|
+
must be a lowercase letter.
|
|
10056
|
+
|
|
10057
|
+
:default: - No ID
|
|
10058
|
+
'''
|
|
10059
|
+
result = self._values.get("id")
|
|
10060
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
10061
|
+
|
|
9945
10062
|
@builtins.property
|
|
9946
10063
|
def label(self) -> typing.Optional[builtins.str]:
|
|
9947
10064
|
'''Label for this metric when added to a Graph in a Dashboard.
|
|
@@ -10039,6 +10156,18 @@ class SystemErrorsForOperationsMetricOptions(_MetricOptions_1788b62f):
|
|
|
10039
10156
|
result = self._values.get("unit")
|
|
10040
10157
|
return typing.cast(typing.Optional[_Unit_61bc6f70], result)
|
|
10041
10158
|
|
|
10159
|
+
@builtins.property
|
|
10160
|
+
def visible(self) -> typing.Optional[builtins.bool]:
|
|
10161
|
+
'''Whether this metric should be visible in dashboard graphs.
|
|
10162
|
+
|
|
10163
|
+
Setting this to false is useful when you want to hide raw metrics
|
|
10164
|
+
that are used in math expressions, and show only the expression results.
|
|
10165
|
+
|
|
10166
|
+
:default: true
|
|
10167
|
+
'''
|
|
10168
|
+
result = self._values.get("visible")
|
|
10169
|
+
return typing.cast(typing.Optional[builtins.bool], result)
|
|
10170
|
+
|
|
10042
10171
|
@builtins.property
|
|
10043
10172
|
def operations(self) -> typing.Optional[typing.List[Operation]]:
|
|
10044
10173
|
'''The operations to apply the metric to.
|
|
@@ -10608,6 +10737,7 @@ class TableBase(
|
|
|
10608
10737
|
account: typing.Optional[builtins.str] = None,
|
|
10609
10738
|
color: typing.Optional[builtins.str] = None,
|
|
10610
10739
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
10740
|
+
id: typing.Optional[builtins.str] = None,
|
|
10611
10741
|
label: typing.Optional[builtins.str] = None,
|
|
10612
10742
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
10613
10743
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -10615,6 +10745,7 @@ class TableBase(
|
|
|
10615
10745
|
stack_region: typing.Optional[builtins.str] = None,
|
|
10616
10746
|
statistic: typing.Optional[builtins.str] = None,
|
|
10617
10747
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
10748
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
10618
10749
|
) -> _Metric_e396a4dc:
|
|
10619
10750
|
'''Return the given named metric for this Table.
|
|
10620
10751
|
|
|
@@ -10625,6 +10756,7 @@ class TableBase(
|
|
|
10625
10756
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
10626
10757
|
: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
|
|
10627
10758
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
10759
|
+
: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
|
|
10628
10760
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
10629
10761
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
10630
10762
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -10632,6 +10764,7 @@ class TableBase(
|
|
|
10632
10764
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
10633
10765
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
10634
10766
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
10767
|
+
: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
|
|
10635
10768
|
'''
|
|
10636
10769
|
if __debug__:
|
|
10637
10770
|
type_hints = typing.get_type_hints(_typecheckingstub__1b1ff6b5154d6682d8764a47052a06d5305d9f6a41c79c8c293c1994970bd818)
|
|
@@ -10640,6 +10773,7 @@ class TableBase(
|
|
|
10640
10773
|
account=account,
|
|
10641
10774
|
color=color,
|
|
10642
10775
|
dimensions_map=dimensions_map,
|
|
10776
|
+
id=id,
|
|
10643
10777
|
label=label,
|
|
10644
10778
|
period=period,
|
|
10645
10779
|
region=region,
|
|
@@ -10647,6 +10781,7 @@ class TableBase(
|
|
|
10647
10781
|
stack_region=stack_region,
|
|
10648
10782
|
statistic=statistic,
|
|
10649
10783
|
unit=unit,
|
|
10784
|
+
visible=visible,
|
|
10650
10785
|
)
|
|
10651
10786
|
|
|
10652
10787
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metric", [metric_name, props]))
|
|
@@ -10658,6 +10793,7 @@ class TableBase(
|
|
|
10658
10793
|
account: typing.Optional[builtins.str] = None,
|
|
10659
10794
|
color: typing.Optional[builtins.str] = None,
|
|
10660
10795
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
10796
|
+
id: typing.Optional[builtins.str] = None,
|
|
10661
10797
|
label: typing.Optional[builtins.str] = None,
|
|
10662
10798
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
10663
10799
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -10665,6 +10801,7 @@ class TableBase(
|
|
|
10665
10801
|
stack_region: typing.Optional[builtins.str] = None,
|
|
10666
10802
|
statistic: typing.Optional[builtins.str] = None,
|
|
10667
10803
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
10804
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
10668
10805
|
) -> _Metric_e396a4dc:
|
|
10669
10806
|
'''Metric for the conditional check failed requests this table.
|
|
10670
10807
|
|
|
@@ -10674,6 +10811,7 @@ class TableBase(
|
|
|
10674
10811
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
10675
10812
|
: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
|
|
10676
10813
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
10814
|
+
: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
|
|
10677
10815
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
10678
10816
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
10679
10817
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -10681,11 +10819,13 @@ class TableBase(
|
|
|
10681
10819
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
10682
10820
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
10683
10821
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
10822
|
+
: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
|
|
10684
10823
|
'''
|
|
10685
10824
|
props = _MetricOptions_1788b62f(
|
|
10686
10825
|
account=account,
|
|
10687
10826
|
color=color,
|
|
10688
10827
|
dimensions_map=dimensions_map,
|
|
10828
|
+
id=id,
|
|
10689
10829
|
label=label,
|
|
10690
10830
|
period=period,
|
|
10691
10831
|
region=region,
|
|
@@ -10693,6 +10833,7 @@ class TableBase(
|
|
|
10693
10833
|
stack_region=stack_region,
|
|
10694
10834
|
statistic=statistic,
|
|
10695
10835
|
unit=unit,
|
|
10836
|
+
visible=visible,
|
|
10696
10837
|
)
|
|
10697
10838
|
|
|
10698
10839
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricConditionalCheckFailedRequests", [props]))
|
|
@@ -10704,6 +10845,7 @@ class TableBase(
|
|
|
10704
10845
|
account: typing.Optional[builtins.str] = None,
|
|
10705
10846
|
color: typing.Optional[builtins.str] = None,
|
|
10706
10847
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
10848
|
+
id: typing.Optional[builtins.str] = None,
|
|
10707
10849
|
label: typing.Optional[builtins.str] = None,
|
|
10708
10850
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
10709
10851
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -10711,6 +10853,7 @@ class TableBase(
|
|
|
10711
10853
|
stack_region: typing.Optional[builtins.str] = None,
|
|
10712
10854
|
statistic: typing.Optional[builtins.str] = None,
|
|
10713
10855
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
10856
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
10714
10857
|
) -> _Metric_e396a4dc:
|
|
10715
10858
|
'''Metric for the consumed read capacity units this table.
|
|
10716
10859
|
|
|
@@ -10720,6 +10863,7 @@ class TableBase(
|
|
|
10720
10863
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
10721
10864
|
: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
|
|
10722
10865
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
10866
|
+
: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
|
|
10723
10867
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
10724
10868
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
10725
10869
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -10727,11 +10871,13 @@ class TableBase(
|
|
|
10727
10871
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
10728
10872
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
10729
10873
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
10874
|
+
: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
|
|
10730
10875
|
'''
|
|
10731
10876
|
props = _MetricOptions_1788b62f(
|
|
10732
10877
|
account=account,
|
|
10733
10878
|
color=color,
|
|
10734
10879
|
dimensions_map=dimensions_map,
|
|
10880
|
+
id=id,
|
|
10735
10881
|
label=label,
|
|
10736
10882
|
period=period,
|
|
10737
10883
|
region=region,
|
|
@@ -10739,6 +10885,7 @@ class TableBase(
|
|
|
10739
10885
|
stack_region=stack_region,
|
|
10740
10886
|
statistic=statistic,
|
|
10741
10887
|
unit=unit,
|
|
10888
|
+
visible=visible,
|
|
10742
10889
|
)
|
|
10743
10890
|
|
|
10744
10891
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricConsumedReadCapacityUnits", [props]))
|
|
@@ -10750,6 +10897,7 @@ class TableBase(
|
|
|
10750
10897
|
account: typing.Optional[builtins.str] = None,
|
|
10751
10898
|
color: typing.Optional[builtins.str] = None,
|
|
10752
10899
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
10900
|
+
id: typing.Optional[builtins.str] = None,
|
|
10753
10901
|
label: typing.Optional[builtins.str] = None,
|
|
10754
10902
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
10755
10903
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -10757,6 +10905,7 @@ class TableBase(
|
|
|
10757
10905
|
stack_region: typing.Optional[builtins.str] = None,
|
|
10758
10906
|
statistic: typing.Optional[builtins.str] = None,
|
|
10759
10907
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
10908
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
10760
10909
|
) -> _Metric_e396a4dc:
|
|
10761
10910
|
'''Metric for the consumed write capacity units this table.
|
|
10762
10911
|
|
|
@@ -10766,6 +10915,7 @@ class TableBase(
|
|
|
10766
10915
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
10767
10916
|
: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
|
|
10768
10917
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
10918
|
+
: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
|
|
10769
10919
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
10770
10920
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
10771
10921
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -10773,11 +10923,13 @@ class TableBase(
|
|
|
10773
10923
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
10774
10924
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
10775
10925
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
10926
|
+
: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
|
|
10776
10927
|
'''
|
|
10777
10928
|
props = _MetricOptions_1788b62f(
|
|
10778
10929
|
account=account,
|
|
10779
10930
|
color=color,
|
|
10780
10931
|
dimensions_map=dimensions_map,
|
|
10932
|
+
id=id,
|
|
10781
10933
|
label=label,
|
|
10782
10934
|
period=period,
|
|
10783
10935
|
region=region,
|
|
@@ -10785,6 +10937,7 @@ class TableBase(
|
|
|
10785
10937
|
stack_region=stack_region,
|
|
10786
10938
|
statistic=statistic,
|
|
10787
10939
|
unit=unit,
|
|
10940
|
+
visible=visible,
|
|
10788
10941
|
)
|
|
10789
10942
|
|
|
10790
10943
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricConsumedWriteCapacityUnits", [props]))
|
|
@@ -10796,6 +10949,7 @@ class TableBase(
|
|
|
10796
10949
|
account: typing.Optional[builtins.str] = None,
|
|
10797
10950
|
color: typing.Optional[builtins.str] = None,
|
|
10798
10951
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
10952
|
+
id: typing.Optional[builtins.str] = None,
|
|
10799
10953
|
label: typing.Optional[builtins.str] = None,
|
|
10800
10954
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
10801
10955
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -10803,6 +10957,7 @@ class TableBase(
|
|
|
10803
10957
|
stack_region: typing.Optional[builtins.str] = None,
|
|
10804
10958
|
statistic: typing.Optional[builtins.str] = None,
|
|
10805
10959
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
10960
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
10806
10961
|
) -> _Metric_e396a4dc:
|
|
10807
10962
|
'''Metric for the successful request latency this table.
|
|
10808
10963
|
|
|
@@ -10812,6 +10967,7 @@ class TableBase(
|
|
|
10812
10967
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
10813
10968
|
: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
|
|
10814
10969
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
10970
|
+
: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
|
|
10815
10971
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
10816
10972
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
10817
10973
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -10819,11 +10975,13 @@ class TableBase(
|
|
|
10819
10975
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
10820
10976
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
10821
10977
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
10978
|
+
: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
|
|
10822
10979
|
'''
|
|
10823
10980
|
props = _MetricOptions_1788b62f(
|
|
10824
10981
|
account=account,
|
|
10825
10982
|
color=color,
|
|
10826
10983
|
dimensions_map=dimensions_map,
|
|
10984
|
+
id=id,
|
|
10827
10985
|
label=label,
|
|
10828
10986
|
period=period,
|
|
10829
10987
|
region=region,
|
|
@@ -10831,6 +10989,7 @@ class TableBase(
|
|
|
10831
10989
|
stack_region=stack_region,
|
|
10832
10990
|
statistic=statistic,
|
|
10833
10991
|
unit=unit,
|
|
10992
|
+
visible=visible,
|
|
10834
10993
|
)
|
|
10835
10994
|
|
|
10836
10995
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricSuccessfulRequestLatency", [props]))
|
|
@@ -10842,6 +11001,7 @@ class TableBase(
|
|
|
10842
11001
|
account: typing.Optional[builtins.str] = None,
|
|
10843
11002
|
color: typing.Optional[builtins.str] = None,
|
|
10844
11003
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
11004
|
+
id: typing.Optional[builtins.str] = None,
|
|
10845
11005
|
label: typing.Optional[builtins.str] = None,
|
|
10846
11006
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
10847
11007
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -10849,12 +11009,14 @@ class TableBase(
|
|
|
10849
11009
|
stack_region: typing.Optional[builtins.str] = None,
|
|
10850
11010
|
statistic: typing.Optional[builtins.str] = None,
|
|
10851
11011
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11012
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
10852
11013
|
) -> _Metric_e396a4dc:
|
|
10853
11014
|
'''(deprecated) Metric for the system errors this table.
|
|
10854
11015
|
|
|
10855
11016
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
10856
11017
|
: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
|
|
10857
11018
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
11019
|
+
: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
|
|
10858
11020
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
10859
11021
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
10860
11022
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -10862,6 +11024,7 @@ class TableBase(
|
|
|
10862
11024
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
10863
11025
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
10864
11026
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
11027
|
+
: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
|
|
10865
11028
|
|
|
10866
11029
|
:deprecated: use ``metricSystemErrorsForOperations``.
|
|
10867
11030
|
|
|
@@ -10871,6 +11034,7 @@ class TableBase(
|
|
|
10871
11034
|
account=account,
|
|
10872
11035
|
color=color,
|
|
10873
11036
|
dimensions_map=dimensions_map,
|
|
11037
|
+
id=id,
|
|
10874
11038
|
label=label,
|
|
10875
11039
|
period=period,
|
|
10876
11040
|
region=region,
|
|
@@ -10878,6 +11042,7 @@ class TableBase(
|
|
|
10878
11042
|
stack_region=stack_region,
|
|
10879
11043
|
statistic=statistic,
|
|
10880
11044
|
unit=unit,
|
|
11045
|
+
visible=visible,
|
|
10881
11046
|
)
|
|
10882
11047
|
|
|
10883
11048
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricSystemErrors", [props]))
|
|
@@ -10890,6 +11055,7 @@ class TableBase(
|
|
|
10890
11055
|
account: typing.Optional[builtins.str] = None,
|
|
10891
11056
|
color: typing.Optional[builtins.str] = None,
|
|
10892
11057
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
11058
|
+
id: typing.Optional[builtins.str] = None,
|
|
10893
11059
|
label: typing.Optional[builtins.str] = None,
|
|
10894
11060
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
10895
11061
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -10897,6 +11063,7 @@ class TableBase(
|
|
|
10897
11063
|
stack_region: typing.Optional[builtins.str] = None,
|
|
10898
11064
|
statistic: typing.Optional[builtins.str] = None,
|
|
10899
11065
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11066
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
10900
11067
|
) -> _IMetric_c7fd29de:
|
|
10901
11068
|
'''Metric for the system errors this table.
|
|
10902
11069
|
|
|
@@ -10908,6 +11075,7 @@ class TableBase(
|
|
|
10908
11075
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
10909
11076
|
: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
|
|
10910
11077
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
11078
|
+
: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
|
|
10911
11079
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
10912
11080
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
10913
11081
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -10915,12 +11083,14 @@ class TableBase(
|
|
|
10915
11083
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
10916
11084
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
10917
11085
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
11086
|
+
: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
|
|
10918
11087
|
'''
|
|
10919
11088
|
props = SystemErrorsForOperationsMetricOptions(
|
|
10920
11089
|
operations=operations,
|
|
10921
11090
|
account=account,
|
|
10922
11091
|
color=color,
|
|
10923
11092
|
dimensions_map=dimensions_map,
|
|
11093
|
+
id=id,
|
|
10924
11094
|
label=label,
|
|
10925
11095
|
period=period,
|
|
10926
11096
|
region=region,
|
|
@@ -10928,6 +11098,7 @@ class TableBase(
|
|
|
10928
11098
|
stack_region=stack_region,
|
|
10929
11099
|
statistic=statistic,
|
|
10930
11100
|
unit=unit,
|
|
11101
|
+
visible=visible,
|
|
10931
11102
|
)
|
|
10932
11103
|
|
|
10933
11104
|
return typing.cast(_IMetric_c7fd29de, jsii.invoke(self, "metricSystemErrorsForOperations", [props]))
|
|
@@ -10939,6 +11110,7 @@ class TableBase(
|
|
|
10939
11110
|
account: typing.Optional[builtins.str] = None,
|
|
10940
11111
|
color: typing.Optional[builtins.str] = None,
|
|
10941
11112
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
11113
|
+
id: typing.Optional[builtins.str] = None,
|
|
10942
11114
|
label: typing.Optional[builtins.str] = None,
|
|
10943
11115
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
10944
11116
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -10946,6 +11118,7 @@ class TableBase(
|
|
|
10946
11118
|
stack_region: typing.Optional[builtins.str] = None,
|
|
10947
11119
|
statistic: typing.Optional[builtins.str] = None,
|
|
10948
11120
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11121
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
10949
11122
|
) -> _Metric_e396a4dc:
|
|
10950
11123
|
'''(deprecated) How many requests are throttled on this table.
|
|
10951
11124
|
|
|
@@ -10954,6 +11127,7 @@ class TableBase(
|
|
|
10954
11127
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
10955
11128
|
: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
|
|
10956
11129
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
11130
|
+
: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
|
|
10957
11131
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
10958
11132
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
10959
11133
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -10961,6 +11135,7 @@ class TableBase(
|
|
|
10961
11135
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
10962
11136
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
10963
11137
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
11138
|
+
: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
|
|
10964
11139
|
|
|
10965
11140
|
:deprecated: Do not use this function. It returns an invalid metric. Use ``metricThrottledRequestsForOperation`` instead.
|
|
10966
11141
|
|
|
@@ -10970,6 +11145,7 @@ class TableBase(
|
|
|
10970
11145
|
account=account,
|
|
10971
11146
|
color=color,
|
|
10972
11147
|
dimensions_map=dimensions_map,
|
|
11148
|
+
id=id,
|
|
10973
11149
|
label=label,
|
|
10974
11150
|
period=period,
|
|
10975
11151
|
region=region,
|
|
@@ -10977,6 +11153,7 @@ class TableBase(
|
|
|
10977
11153
|
stack_region=stack_region,
|
|
10978
11154
|
statistic=statistic,
|
|
10979
11155
|
unit=unit,
|
|
11156
|
+
visible=visible,
|
|
10980
11157
|
)
|
|
10981
11158
|
|
|
10982
11159
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricThrottledRequests", [props]))
|
|
@@ -10989,6 +11166,7 @@ class TableBase(
|
|
|
10989
11166
|
account: typing.Optional[builtins.str] = None,
|
|
10990
11167
|
color: typing.Optional[builtins.str] = None,
|
|
10991
11168
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
11169
|
+
id: typing.Optional[builtins.str] = None,
|
|
10992
11170
|
label: typing.Optional[builtins.str] = None,
|
|
10993
11171
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
10994
11172
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -10996,6 +11174,7 @@ class TableBase(
|
|
|
10996
11174
|
stack_region: typing.Optional[builtins.str] = None,
|
|
10997
11175
|
statistic: typing.Optional[builtins.str] = None,
|
|
10998
11176
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11177
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
10999
11178
|
) -> _Metric_e396a4dc:
|
|
11000
11179
|
'''How many requests are throttled on this table, for the given operation.
|
|
11001
11180
|
|
|
@@ -11005,6 +11184,7 @@ class TableBase(
|
|
|
11005
11184
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
11006
11185
|
: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
|
|
11007
11186
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
11187
|
+
: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
|
|
11008
11188
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
11009
11189
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11010
11190
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -11012,6 +11192,7 @@ class TableBase(
|
|
|
11012
11192
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11013
11193
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
11014
11194
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
11195
|
+
: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
|
|
11015
11196
|
'''
|
|
11016
11197
|
if __debug__:
|
|
11017
11198
|
type_hints = typing.get_type_hints(_typecheckingstub__95d33a70a83403322cdc035963638859f588f5d47bae922a6083d3acdae99d8c)
|
|
@@ -11020,6 +11201,7 @@ class TableBase(
|
|
|
11020
11201
|
account=account,
|
|
11021
11202
|
color=color,
|
|
11022
11203
|
dimensions_map=dimensions_map,
|
|
11204
|
+
id=id,
|
|
11023
11205
|
label=label,
|
|
11024
11206
|
period=period,
|
|
11025
11207
|
region=region,
|
|
@@ -11027,6 +11209,7 @@ class TableBase(
|
|
|
11027
11209
|
stack_region=stack_region,
|
|
11028
11210
|
statistic=statistic,
|
|
11029
11211
|
unit=unit,
|
|
11212
|
+
visible=visible,
|
|
11030
11213
|
)
|
|
11031
11214
|
|
|
11032
11215
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricThrottledRequestsForOperation", [operation, props]))
|
|
@@ -11039,6 +11222,7 @@ class TableBase(
|
|
|
11039
11222
|
account: typing.Optional[builtins.str] = None,
|
|
11040
11223
|
color: typing.Optional[builtins.str] = None,
|
|
11041
11224
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
11225
|
+
id: typing.Optional[builtins.str] = None,
|
|
11042
11226
|
label: typing.Optional[builtins.str] = None,
|
|
11043
11227
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11044
11228
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -11046,6 +11230,7 @@ class TableBase(
|
|
|
11046
11230
|
stack_region: typing.Optional[builtins.str] = None,
|
|
11047
11231
|
statistic: typing.Optional[builtins.str] = None,
|
|
11048
11232
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11233
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
11049
11234
|
) -> _IMetric_c7fd29de:
|
|
11050
11235
|
'''How many requests are throttled on this table.
|
|
11051
11236
|
|
|
@@ -11057,6 +11242,7 @@ class TableBase(
|
|
|
11057
11242
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
11058
11243
|
: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
|
|
11059
11244
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
11245
|
+
: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
|
|
11060
11246
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
11061
11247
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11062
11248
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -11064,12 +11250,14 @@ class TableBase(
|
|
|
11064
11250
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11065
11251
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
11066
11252
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
11253
|
+
: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
|
|
11067
11254
|
'''
|
|
11068
11255
|
props = OperationsMetricOptions(
|
|
11069
11256
|
operations=operations,
|
|
11070
11257
|
account=account,
|
|
11071
11258
|
color=color,
|
|
11072
11259
|
dimensions_map=dimensions_map,
|
|
11260
|
+
id=id,
|
|
11073
11261
|
label=label,
|
|
11074
11262
|
period=period,
|
|
11075
11263
|
region=region,
|
|
@@ -11077,6 +11265,7 @@ class TableBase(
|
|
|
11077
11265
|
stack_region=stack_region,
|
|
11078
11266
|
statistic=statistic,
|
|
11079
11267
|
unit=unit,
|
|
11268
|
+
visible=visible,
|
|
11080
11269
|
)
|
|
11081
11270
|
|
|
11082
11271
|
return typing.cast(_IMetric_c7fd29de, jsii.invoke(self, "metricThrottledRequestsForOperations", [props]))
|
|
@@ -11088,6 +11277,7 @@ class TableBase(
|
|
|
11088
11277
|
account: typing.Optional[builtins.str] = None,
|
|
11089
11278
|
color: typing.Optional[builtins.str] = None,
|
|
11090
11279
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
11280
|
+
id: typing.Optional[builtins.str] = None,
|
|
11091
11281
|
label: typing.Optional[builtins.str] = None,
|
|
11092
11282
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11093
11283
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -11095,6 +11285,7 @@ class TableBase(
|
|
|
11095
11285
|
stack_region: typing.Optional[builtins.str] = None,
|
|
11096
11286
|
statistic: typing.Optional[builtins.str] = None,
|
|
11097
11287
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11288
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
11098
11289
|
) -> _Metric_e396a4dc:
|
|
11099
11290
|
'''Metric for the user errors.
|
|
11100
11291
|
|
|
@@ -11107,6 +11298,7 @@ class TableBase(
|
|
|
11107
11298
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
11108
11299
|
: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
|
|
11109
11300
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
11301
|
+
: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
|
|
11110
11302
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
11111
11303
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11112
11304
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -11114,11 +11306,13 @@ class TableBase(
|
|
|
11114
11306
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11115
11307
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
11116
11308
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
11309
|
+
: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
|
|
11117
11310
|
'''
|
|
11118
11311
|
props = _MetricOptions_1788b62f(
|
|
11119
11312
|
account=account,
|
|
11120
11313
|
color=color,
|
|
11121
11314
|
dimensions_map=dimensions_map,
|
|
11315
|
+
id=id,
|
|
11122
11316
|
label=label,
|
|
11123
11317
|
period=period,
|
|
11124
11318
|
region=region,
|
|
@@ -11126,6 +11320,7 @@ class TableBase(
|
|
|
11126
11320
|
stack_region=stack_region,
|
|
11127
11321
|
statistic=statistic,
|
|
11128
11322
|
unit=unit,
|
|
11323
|
+
visible=visible,
|
|
11129
11324
|
)
|
|
11130
11325
|
|
|
11131
11326
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricUserErrors", [props]))
|
|
@@ -11454,6 +11649,7 @@ class TableBaseV2(
|
|
|
11454
11649
|
account: typing.Optional[builtins.str] = None,
|
|
11455
11650
|
color: typing.Optional[builtins.str] = None,
|
|
11456
11651
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
11652
|
+
id: typing.Optional[builtins.str] = None,
|
|
11457
11653
|
label: typing.Optional[builtins.str] = None,
|
|
11458
11654
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11459
11655
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -11461,6 +11657,7 @@ class TableBaseV2(
|
|
|
11461
11657
|
stack_region: typing.Optional[builtins.str] = None,
|
|
11462
11658
|
statistic: typing.Optional[builtins.str] = None,
|
|
11463
11659
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11660
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
11464
11661
|
) -> _Metric_e396a4dc:
|
|
11465
11662
|
'''Return the given named metric for this table.
|
|
11466
11663
|
|
|
@@ -11471,6 +11668,7 @@ class TableBaseV2(
|
|
|
11471
11668
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
11472
11669
|
: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
|
|
11473
11670
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
11671
|
+
: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
|
|
11474
11672
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
11475
11673
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11476
11674
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -11478,6 +11676,7 @@ class TableBaseV2(
|
|
|
11478
11676
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11479
11677
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
11480
11678
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
11679
|
+
: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
|
|
11481
11680
|
'''
|
|
11482
11681
|
if __debug__:
|
|
11483
11682
|
type_hints = typing.get_type_hints(_typecheckingstub__b9d12f99f3c2bb32f060be7bea286ff36b58ea207a391685b9ca44957b9fecd8)
|
|
@@ -11486,6 +11685,7 @@ class TableBaseV2(
|
|
|
11486
11685
|
account=account,
|
|
11487
11686
|
color=color,
|
|
11488
11687
|
dimensions_map=dimensions_map,
|
|
11688
|
+
id=id,
|
|
11489
11689
|
label=label,
|
|
11490
11690
|
period=period,
|
|
11491
11691
|
region=region,
|
|
@@ -11493,6 +11693,7 @@ class TableBaseV2(
|
|
|
11493
11693
|
stack_region=stack_region,
|
|
11494
11694
|
statistic=statistic,
|
|
11495
11695
|
unit=unit,
|
|
11696
|
+
visible=visible,
|
|
11496
11697
|
)
|
|
11497
11698
|
|
|
11498
11699
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metric", [metric_name, props]))
|
|
@@ -11504,6 +11705,7 @@ class TableBaseV2(
|
|
|
11504
11705
|
account: typing.Optional[builtins.str] = None,
|
|
11505
11706
|
color: typing.Optional[builtins.str] = None,
|
|
11506
11707
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
11708
|
+
id: typing.Optional[builtins.str] = None,
|
|
11507
11709
|
label: typing.Optional[builtins.str] = None,
|
|
11508
11710
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11509
11711
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -11511,6 +11713,7 @@ class TableBaseV2(
|
|
|
11511
11713
|
stack_region: typing.Optional[builtins.str] = None,
|
|
11512
11714
|
statistic: typing.Optional[builtins.str] = None,
|
|
11513
11715
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11716
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
11514
11717
|
) -> _Metric_e396a4dc:
|
|
11515
11718
|
'''Metric for the conditional check failed requests for this table.
|
|
11516
11719
|
|
|
@@ -11520,6 +11723,7 @@ class TableBaseV2(
|
|
|
11520
11723
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
11521
11724
|
: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
|
|
11522
11725
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
11726
|
+
: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
|
|
11523
11727
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
11524
11728
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11525
11729
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -11527,11 +11731,13 @@ class TableBaseV2(
|
|
|
11527
11731
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11528
11732
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
11529
11733
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
11734
|
+
: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
|
|
11530
11735
|
'''
|
|
11531
11736
|
props = _MetricOptions_1788b62f(
|
|
11532
11737
|
account=account,
|
|
11533
11738
|
color=color,
|
|
11534
11739
|
dimensions_map=dimensions_map,
|
|
11740
|
+
id=id,
|
|
11535
11741
|
label=label,
|
|
11536
11742
|
period=period,
|
|
11537
11743
|
region=region,
|
|
@@ -11539,6 +11745,7 @@ class TableBaseV2(
|
|
|
11539
11745
|
stack_region=stack_region,
|
|
11540
11746
|
statistic=statistic,
|
|
11541
11747
|
unit=unit,
|
|
11748
|
+
visible=visible,
|
|
11542
11749
|
)
|
|
11543
11750
|
|
|
11544
11751
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricConditionalCheckFailedRequests", [props]))
|
|
@@ -11550,6 +11757,7 @@ class TableBaseV2(
|
|
|
11550
11757
|
account: typing.Optional[builtins.str] = None,
|
|
11551
11758
|
color: typing.Optional[builtins.str] = None,
|
|
11552
11759
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
11760
|
+
id: typing.Optional[builtins.str] = None,
|
|
11553
11761
|
label: typing.Optional[builtins.str] = None,
|
|
11554
11762
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11555
11763
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -11557,6 +11765,7 @@ class TableBaseV2(
|
|
|
11557
11765
|
stack_region: typing.Optional[builtins.str] = None,
|
|
11558
11766
|
statistic: typing.Optional[builtins.str] = None,
|
|
11559
11767
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11768
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
11560
11769
|
) -> _Metric_e396a4dc:
|
|
11561
11770
|
'''Metric for the consumed read capacity units for this table.
|
|
11562
11771
|
|
|
@@ -11566,6 +11775,7 @@ class TableBaseV2(
|
|
|
11566
11775
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
11567
11776
|
: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
|
|
11568
11777
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
11778
|
+
: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
|
|
11569
11779
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
11570
11780
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11571
11781
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -11573,11 +11783,13 @@ class TableBaseV2(
|
|
|
11573
11783
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11574
11784
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
11575
11785
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
11786
|
+
: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
|
|
11576
11787
|
'''
|
|
11577
11788
|
props = _MetricOptions_1788b62f(
|
|
11578
11789
|
account=account,
|
|
11579
11790
|
color=color,
|
|
11580
11791
|
dimensions_map=dimensions_map,
|
|
11792
|
+
id=id,
|
|
11581
11793
|
label=label,
|
|
11582
11794
|
period=period,
|
|
11583
11795
|
region=region,
|
|
@@ -11585,6 +11797,7 @@ class TableBaseV2(
|
|
|
11585
11797
|
stack_region=stack_region,
|
|
11586
11798
|
statistic=statistic,
|
|
11587
11799
|
unit=unit,
|
|
11800
|
+
visible=visible,
|
|
11588
11801
|
)
|
|
11589
11802
|
|
|
11590
11803
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricConsumedReadCapacityUnits", [props]))
|
|
@@ -11596,6 +11809,7 @@ class TableBaseV2(
|
|
|
11596
11809
|
account: typing.Optional[builtins.str] = None,
|
|
11597
11810
|
color: typing.Optional[builtins.str] = None,
|
|
11598
11811
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
11812
|
+
id: typing.Optional[builtins.str] = None,
|
|
11599
11813
|
label: typing.Optional[builtins.str] = None,
|
|
11600
11814
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11601
11815
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -11603,6 +11817,7 @@ class TableBaseV2(
|
|
|
11603
11817
|
stack_region: typing.Optional[builtins.str] = None,
|
|
11604
11818
|
statistic: typing.Optional[builtins.str] = None,
|
|
11605
11819
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11820
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
11606
11821
|
) -> _Metric_e396a4dc:
|
|
11607
11822
|
'''Metric for the consumed write capacity units for this table.
|
|
11608
11823
|
|
|
@@ -11612,6 +11827,7 @@ class TableBaseV2(
|
|
|
11612
11827
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
11613
11828
|
: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
|
|
11614
11829
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
11830
|
+
: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
|
|
11615
11831
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
11616
11832
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11617
11833
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -11619,11 +11835,13 @@ class TableBaseV2(
|
|
|
11619
11835
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11620
11836
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
11621
11837
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
11838
|
+
: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
|
|
11622
11839
|
'''
|
|
11623
11840
|
props = _MetricOptions_1788b62f(
|
|
11624
11841
|
account=account,
|
|
11625
11842
|
color=color,
|
|
11626
11843
|
dimensions_map=dimensions_map,
|
|
11844
|
+
id=id,
|
|
11627
11845
|
label=label,
|
|
11628
11846
|
period=period,
|
|
11629
11847
|
region=region,
|
|
@@ -11631,6 +11849,7 @@ class TableBaseV2(
|
|
|
11631
11849
|
stack_region=stack_region,
|
|
11632
11850
|
statistic=statistic,
|
|
11633
11851
|
unit=unit,
|
|
11852
|
+
visible=visible,
|
|
11634
11853
|
)
|
|
11635
11854
|
|
|
11636
11855
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricConsumedWriteCapacityUnits", [props]))
|
|
@@ -11642,6 +11861,7 @@ class TableBaseV2(
|
|
|
11642
11861
|
account: typing.Optional[builtins.str] = None,
|
|
11643
11862
|
color: typing.Optional[builtins.str] = None,
|
|
11644
11863
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
11864
|
+
id: typing.Optional[builtins.str] = None,
|
|
11645
11865
|
label: typing.Optional[builtins.str] = None,
|
|
11646
11866
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11647
11867
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -11649,6 +11869,7 @@ class TableBaseV2(
|
|
|
11649
11869
|
stack_region: typing.Optional[builtins.str] = None,
|
|
11650
11870
|
statistic: typing.Optional[builtins.str] = None,
|
|
11651
11871
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11872
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
11652
11873
|
) -> _Metric_e396a4dc:
|
|
11653
11874
|
'''Metric for the successful request latency for this table.
|
|
11654
11875
|
|
|
@@ -11658,6 +11879,7 @@ class TableBaseV2(
|
|
|
11658
11879
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
11659
11880
|
: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
|
|
11660
11881
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
11882
|
+
: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
|
|
11661
11883
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
11662
11884
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11663
11885
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -11665,11 +11887,13 @@ class TableBaseV2(
|
|
|
11665
11887
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11666
11888
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
11667
11889
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
11890
|
+
: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
|
|
11668
11891
|
'''
|
|
11669
11892
|
props = _MetricOptions_1788b62f(
|
|
11670
11893
|
account=account,
|
|
11671
11894
|
color=color,
|
|
11672
11895
|
dimensions_map=dimensions_map,
|
|
11896
|
+
id=id,
|
|
11673
11897
|
label=label,
|
|
11674
11898
|
period=period,
|
|
11675
11899
|
region=region,
|
|
@@ -11677,6 +11901,7 @@ class TableBaseV2(
|
|
|
11677
11901
|
stack_region=stack_region,
|
|
11678
11902
|
statistic=statistic,
|
|
11679
11903
|
unit=unit,
|
|
11904
|
+
visible=visible,
|
|
11680
11905
|
)
|
|
11681
11906
|
|
|
11682
11907
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricSuccessfulRequestLatency", [props]))
|
|
@@ -11688,6 +11913,7 @@ class TableBaseV2(
|
|
|
11688
11913
|
account: typing.Optional[builtins.str] = None,
|
|
11689
11914
|
color: typing.Optional[builtins.str] = None,
|
|
11690
11915
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
11916
|
+
id: typing.Optional[builtins.str] = None,
|
|
11691
11917
|
label: typing.Optional[builtins.str] = None,
|
|
11692
11918
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11693
11919
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -11695,12 +11921,14 @@ class TableBaseV2(
|
|
|
11695
11921
|
stack_region: typing.Optional[builtins.str] = None,
|
|
11696
11922
|
statistic: typing.Optional[builtins.str] = None,
|
|
11697
11923
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11924
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
11698
11925
|
) -> _Metric_e396a4dc:
|
|
11699
11926
|
'''(deprecated) Metric for the system errors this table.
|
|
11700
11927
|
|
|
11701
11928
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
11702
11929
|
: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
|
|
11703
11930
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
11931
|
+
: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
|
|
11704
11932
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
11705
11933
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11706
11934
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -11708,6 +11936,7 @@ class TableBaseV2(
|
|
|
11708
11936
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11709
11937
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
11710
11938
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
11939
|
+
: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
|
|
11711
11940
|
|
|
11712
11941
|
:deprecated: use ``metricSystemErrorsForOperations``.
|
|
11713
11942
|
|
|
@@ -11717,6 +11946,7 @@ class TableBaseV2(
|
|
|
11717
11946
|
account=account,
|
|
11718
11947
|
color=color,
|
|
11719
11948
|
dimensions_map=dimensions_map,
|
|
11949
|
+
id=id,
|
|
11720
11950
|
label=label,
|
|
11721
11951
|
period=period,
|
|
11722
11952
|
region=region,
|
|
@@ -11724,6 +11954,7 @@ class TableBaseV2(
|
|
|
11724
11954
|
stack_region=stack_region,
|
|
11725
11955
|
statistic=statistic,
|
|
11726
11956
|
unit=unit,
|
|
11957
|
+
visible=visible,
|
|
11727
11958
|
)
|
|
11728
11959
|
|
|
11729
11960
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricSystemErrors", [props]))
|
|
@@ -11736,6 +11967,7 @@ class TableBaseV2(
|
|
|
11736
11967
|
account: typing.Optional[builtins.str] = None,
|
|
11737
11968
|
color: typing.Optional[builtins.str] = None,
|
|
11738
11969
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
11970
|
+
id: typing.Optional[builtins.str] = None,
|
|
11739
11971
|
label: typing.Optional[builtins.str] = None,
|
|
11740
11972
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11741
11973
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -11743,6 +11975,7 @@ class TableBaseV2(
|
|
|
11743
11975
|
stack_region: typing.Optional[builtins.str] = None,
|
|
11744
11976
|
statistic: typing.Optional[builtins.str] = None,
|
|
11745
11977
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
11978
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
11746
11979
|
) -> _IMetric_c7fd29de:
|
|
11747
11980
|
'''Metric for the system errors for this table. This will sum errors across all possible operations.
|
|
11748
11981
|
|
|
@@ -11753,6 +11986,7 @@ class TableBaseV2(
|
|
|
11753
11986
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
11754
11987
|
: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
|
|
11755
11988
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
11989
|
+
: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
|
|
11756
11990
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
11757
11991
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11758
11992
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -11760,12 +11994,14 @@ class TableBaseV2(
|
|
|
11760
11994
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11761
11995
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
11762
11996
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
11997
|
+
: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
|
|
11763
11998
|
'''
|
|
11764
11999
|
props = SystemErrorsForOperationsMetricOptions(
|
|
11765
12000
|
operations=operations,
|
|
11766
12001
|
account=account,
|
|
11767
12002
|
color=color,
|
|
11768
12003
|
dimensions_map=dimensions_map,
|
|
12004
|
+
id=id,
|
|
11769
12005
|
label=label,
|
|
11770
12006
|
period=period,
|
|
11771
12007
|
region=region,
|
|
@@ -11773,6 +12009,7 @@ class TableBaseV2(
|
|
|
11773
12009
|
stack_region=stack_region,
|
|
11774
12010
|
statistic=statistic,
|
|
11775
12011
|
unit=unit,
|
|
12012
|
+
visible=visible,
|
|
11776
12013
|
)
|
|
11777
12014
|
|
|
11778
12015
|
return typing.cast(_IMetric_c7fd29de, jsii.invoke(self, "metricSystemErrorsForOperations", [props]))
|
|
@@ -11784,6 +12021,7 @@ class TableBaseV2(
|
|
|
11784
12021
|
account: typing.Optional[builtins.str] = None,
|
|
11785
12022
|
color: typing.Optional[builtins.str] = None,
|
|
11786
12023
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
12024
|
+
id: typing.Optional[builtins.str] = None,
|
|
11787
12025
|
label: typing.Optional[builtins.str] = None,
|
|
11788
12026
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11789
12027
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -11791,6 +12029,7 @@ class TableBaseV2(
|
|
|
11791
12029
|
stack_region: typing.Optional[builtins.str] = None,
|
|
11792
12030
|
statistic: typing.Optional[builtins.str] = None,
|
|
11793
12031
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
12032
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
11794
12033
|
) -> _Metric_e396a4dc:
|
|
11795
12034
|
'''(deprecated) How many requests are throttled on this table.
|
|
11796
12035
|
|
|
@@ -11800,6 +12039,7 @@ class TableBaseV2(
|
|
|
11800
12039
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
11801
12040
|
: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
|
|
11802
12041
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
12042
|
+
: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
|
|
11803
12043
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
11804
12044
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11805
12045
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -11807,6 +12047,7 @@ class TableBaseV2(
|
|
|
11807
12047
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11808
12048
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
11809
12049
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
12050
|
+
: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
|
|
11810
12051
|
|
|
11811
12052
|
:deprecated: Do not use this function. It returns an invalid metric. Use ``metricThrottledRequestsForOperation`` instead.
|
|
11812
12053
|
|
|
@@ -11816,6 +12057,7 @@ class TableBaseV2(
|
|
|
11816
12057
|
account=account,
|
|
11817
12058
|
color=color,
|
|
11818
12059
|
dimensions_map=dimensions_map,
|
|
12060
|
+
id=id,
|
|
11819
12061
|
label=label,
|
|
11820
12062
|
period=period,
|
|
11821
12063
|
region=region,
|
|
@@ -11823,6 +12065,7 @@ class TableBaseV2(
|
|
|
11823
12065
|
stack_region=stack_region,
|
|
11824
12066
|
statistic=statistic,
|
|
11825
12067
|
unit=unit,
|
|
12068
|
+
visible=visible,
|
|
11826
12069
|
)
|
|
11827
12070
|
|
|
11828
12071
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricThrottledRequests", [props]))
|
|
@@ -11836,6 +12079,7 @@ class TableBaseV2(
|
|
|
11836
12079
|
account: typing.Optional[builtins.str] = None,
|
|
11837
12080
|
color: typing.Optional[builtins.str] = None,
|
|
11838
12081
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
12082
|
+
id: typing.Optional[builtins.str] = None,
|
|
11839
12083
|
label: typing.Optional[builtins.str] = None,
|
|
11840
12084
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11841
12085
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -11843,6 +12087,7 @@ class TableBaseV2(
|
|
|
11843
12087
|
stack_region: typing.Optional[builtins.str] = None,
|
|
11844
12088
|
statistic: typing.Optional[builtins.str] = None,
|
|
11845
12089
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
12090
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
11846
12091
|
) -> _IMetric_c7fd29de:
|
|
11847
12092
|
'''How many requests are throttled on this table for the given operation.
|
|
11848
12093
|
|
|
@@ -11854,6 +12099,7 @@ class TableBaseV2(
|
|
|
11854
12099
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
11855
12100
|
: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
|
|
11856
12101
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
12102
|
+
: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
|
|
11857
12103
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
11858
12104
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11859
12105
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -11861,6 +12107,7 @@ class TableBaseV2(
|
|
|
11861
12107
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11862
12108
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
11863
12109
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
12110
|
+
: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
|
|
11864
12111
|
'''
|
|
11865
12112
|
if __debug__:
|
|
11866
12113
|
type_hints = typing.get_type_hints(_typecheckingstub__77d4ef5bc85980ee36c06595f45b530b92a1b51437a40ca9dc19d75ed320f4b0)
|
|
@@ -11870,6 +12117,7 @@ class TableBaseV2(
|
|
|
11870
12117
|
account=account,
|
|
11871
12118
|
color=color,
|
|
11872
12119
|
dimensions_map=dimensions_map,
|
|
12120
|
+
id=id,
|
|
11873
12121
|
label=label,
|
|
11874
12122
|
period=period,
|
|
11875
12123
|
region=region,
|
|
@@ -11877,6 +12125,7 @@ class TableBaseV2(
|
|
|
11877
12125
|
stack_region=stack_region,
|
|
11878
12126
|
statistic=statistic,
|
|
11879
12127
|
unit=unit,
|
|
12128
|
+
visible=visible,
|
|
11880
12129
|
)
|
|
11881
12130
|
|
|
11882
12131
|
return typing.cast(_IMetric_c7fd29de, jsii.invoke(self, "metricThrottledRequestsForOperation", [operation, props]))
|
|
@@ -11889,6 +12138,7 @@ class TableBaseV2(
|
|
|
11889
12138
|
account: typing.Optional[builtins.str] = None,
|
|
11890
12139
|
color: typing.Optional[builtins.str] = None,
|
|
11891
12140
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
12141
|
+
id: typing.Optional[builtins.str] = None,
|
|
11892
12142
|
label: typing.Optional[builtins.str] = None,
|
|
11893
12143
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11894
12144
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -11896,6 +12146,7 @@ class TableBaseV2(
|
|
|
11896
12146
|
stack_region: typing.Optional[builtins.str] = None,
|
|
11897
12147
|
statistic: typing.Optional[builtins.str] = None,
|
|
11898
12148
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
12149
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
11899
12150
|
) -> _IMetric_c7fd29de:
|
|
11900
12151
|
'''How many requests are throttled on this table. This will sum errors across all possible operations.
|
|
11901
12152
|
|
|
@@ -11906,6 +12157,7 @@ class TableBaseV2(
|
|
|
11906
12157
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
11907
12158
|
: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
|
|
11908
12159
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
12160
|
+
: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
|
|
11909
12161
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
11910
12162
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11911
12163
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -11913,12 +12165,14 @@ class TableBaseV2(
|
|
|
11913
12165
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11914
12166
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
11915
12167
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
12168
|
+
: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
|
|
11916
12169
|
'''
|
|
11917
12170
|
props = OperationsMetricOptions(
|
|
11918
12171
|
operations=operations,
|
|
11919
12172
|
account=account,
|
|
11920
12173
|
color=color,
|
|
11921
12174
|
dimensions_map=dimensions_map,
|
|
12175
|
+
id=id,
|
|
11922
12176
|
label=label,
|
|
11923
12177
|
period=period,
|
|
11924
12178
|
region=region,
|
|
@@ -11926,6 +12180,7 @@ class TableBaseV2(
|
|
|
11926
12180
|
stack_region=stack_region,
|
|
11927
12181
|
statistic=statistic,
|
|
11928
12182
|
unit=unit,
|
|
12183
|
+
visible=visible,
|
|
11929
12184
|
)
|
|
11930
12185
|
|
|
11931
12186
|
return typing.cast(_IMetric_c7fd29de, jsii.invoke(self, "metricThrottledRequestsForOperations", [props]))
|
|
@@ -11937,6 +12192,7 @@ class TableBaseV2(
|
|
|
11937
12192
|
account: typing.Optional[builtins.str] = None,
|
|
11938
12193
|
color: typing.Optional[builtins.str] = None,
|
|
11939
12194
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
12195
|
+
id: typing.Optional[builtins.str] = None,
|
|
11940
12196
|
label: typing.Optional[builtins.str] = None,
|
|
11941
12197
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
11942
12198
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -11944,6 +12200,7 @@ class TableBaseV2(
|
|
|
11944
12200
|
stack_region: typing.Optional[builtins.str] = None,
|
|
11945
12201
|
statistic: typing.Optional[builtins.str] = None,
|
|
11946
12202
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
12203
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
11947
12204
|
) -> _Metric_e396a4dc:
|
|
11948
12205
|
'''Metric for the user errors for this table.
|
|
11949
12206
|
|
|
@@ -11956,6 +12213,7 @@ class TableBaseV2(
|
|
|
11956
12213
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
11957
12214
|
: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
|
|
11958
12215
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
12216
|
+
: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
|
|
11959
12217
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
11960
12218
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
11961
12219
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -11963,11 +12221,13 @@ class TableBaseV2(
|
|
|
11963
12221
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
11964
12222
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
11965
12223
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
12224
|
+
: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
|
|
11966
12225
|
'''
|
|
11967
12226
|
props = _MetricOptions_1788b62f(
|
|
11968
12227
|
account=account,
|
|
11969
12228
|
color=color,
|
|
11970
12229
|
dimensions_map=dimensions_map,
|
|
12230
|
+
id=id,
|
|
11971
12231
|
label=label,
|
|
11972
12232
|
period=period,
|
|
11973
12233
|
region=region,
|
|
@@ -11975,6 +12235,7 @@ class TableBaseV2(
|
|
|
11975
12235
|
stack_region=stack_region,
|
|
11976
12236
|
statistic=statistic,
|
|
11977
12237
|
unit=unit,
|
|
12238
|
+
visible=visible,
|
|
11978
12239
|
)
|
|
11979
12240
|
|
|
11980
12241
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricUserErrors", [props]))
|
|
@@ -15131,6 +15392,7 @@ class LocalSecondaryIndexProps(SecondaryIndexProps):
|
|
|
15131
15392
|
"account": "account",
|
|
15132
15393
|
"color": "color",
|
|
15133
15394
|
"dimensions_map": "dimensionsMap",
|
|
15395
|
+
"id": "id",
|
|
15134
15396
|
"label": "label",
|
|
15135
15397
|
"period": "period",
|
|
15136
15398
|
"region": "region",
|
|
@@ -15138,6 +15400,7 @@ class LocalSecondaryIndexProps(SecondaryIndexProps):
|
|
|
15138
15400
|
"stack_region": "stackRegion",
|
|
15139
15401
|
"statistic": "statistic",
|
|
15140
15402
|
"unit": "unit",
|
|
15403
|
+
"visible": "visible",
|
|
15141
15404
|
"operations": "operations",
|
|
15142
15405
|
},
|
|
15143
15406
|
)
|
|
@@ -15148,6 +15411,7 @@ class OperationsMetricOptions(SystemErrorsForOperationsMetricOptions):
|
|
|
15148
15411
|
account: typing.Optional[builtins.str] = None,
|
|
15149
15412
|
color: typing.Optional[builtins.str] = None,
|
|
15150
15413
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
15414
|
+
id: typing.Optional[builtins.str] = None,
|
|
15151
15415
|
label: typing.Optional[builtins.str] = None,
|
|
15152
15416
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
15153
15417
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -15155,6 +15419,7 @@ class OperationsMetricOptions(SystemErrorsForOperationsMetricOptions):
|
|
|
15155
15419
|
stack_region: typing.Optional[builtins.str] = None,
|
|
15156
15420
|
statistic: typing.Optional[builtins.str] = None,
|
|
15157
15421
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
15422
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
15158
15423
|
operations: typing.Optional[typing.Sequence[Operation]] = None,
|
|
15159
15424
|
) -> None:
|
|
15160
15425
|
'''Options for configuring metrics that considers multiple operations.
|
|
@@ -15162,6 +15427,7 @@ class OperationsMetricOptions(SystemErrorsForOperationsMetricOptions):
|
|
|
15162
15427
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
15163
15428
|
: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
|
|
15164
15429
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
15430
|
+
: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
|
|
15165
15431
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
15166
15432
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
15167
15433
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -15169,6 +15435,7 @@ class OperationsMetricOptions(SystemErrorsForOperationsMetricOptions):
|
|
|
15169
15435
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
15170
15436
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
15171
15437
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
15438
|
+
: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
|
|
15172
15439
|
:param operations: The operations to apply the metric to. Default: - All operations available by DynamoDB tables will be considered.
|
|
15173
15440
|
|
|
15174
15441
|
:exampleMetadata: fixture=_generated
|
|
@@ -15187,6 +15454,7 @@ class OperationsMetricOptions(SystemErrorsForOperationsMetricOptions):
|
|
|
15187
15454
|
dimensions_map={
|
|
15188
15455
|
"dimensions_map_key": "dimensionsMap"
|
|
15189
15456
|
},
|
|
15457
|
+
id="id",
|
|
15190
15458
|
label="label",
|
|
15191
15459
|
operations=[dynamodb.Operation.GET_ITEM],
|
|
15192
15460
|
period=cdk.Duration.minutes(30),
|
|
@@ -15194,7 +15462,8 @@ class OperationsMetricOptions(SystemErrorsForOperationsMetricOptions):
|
|
|
15194
15462
|
stack_account="stackAccount",
|
|
15195
15463
|
stack_region="stackRegion",
|
|
15196
15464
|
statistic="statistic",
|
|
15197
|
-
unit=cloudwatch.Unit.SECONDS
|
|
15465
|
+
unit=cloudwatch.Unit.SECONDS,
|
|
15466
|
+
visible=False
|
|
15198
15467
|
)
|
|
15199
15468
|
'''
|
|
15200
15469
|
if __debug__:
|
|
@@ -15202,6 +15471,7 @@ class OperationsMetricOptions(SystemErrorsForOperationsMetricOptions):
|
|
|
15202
15471
|
check_type(argname="argument account", value=account, expected_type=type_hints["account"])
|
|
15203
15472
|
check_type(argname="argument color", value=color, expected_type=type_hints["color"])
|
|
15204
15473
|
check_type(argname="argument dimensions_map", value=dimensions_map, expected_type=type_hints["dimensions_map"])
|
|
15474
|
+
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
15205
15475
|
check_type(argname="argument label", value=label, expected_type=type_hints["label"])
|
|
15206
15476
|
check_type(argname="argument period", value=period, expected_type=type_hints["period"])
|
|
15207
15477
|
check_type(argname="argument region", value=region, expected_type=type_hints["region"])
|
|
@@ -15209,6 +15479,7 @@ class OperationsMetricOptions(SystemErrorsForOperationsMetricOptions):
|
|
|
15209
15479
|
check_type(argname="argument stack_region", value=stack_region, expected_type=type_hints["stack_region"])
|
|
15210
15480
|
check_type(argname="argument statistic", value=statistic, expected_type=type_hints["statistic"])
|
|
15211
15481
|
check_type(argname="argument unit", value=unit, expected_type=type_hints["unit"])
|
|
15482
|
+
check_type(argname="argument visible", value=visible, expected_type=type_hints["visible"])
|
|
15212
15483
|
check_type(argname="argument operations", value=operations, expected_type=type_hints["operations"])
|
|
15213
15484
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
15214
15485
|
if account is not None:
|
|
@@ -15217,6 +15488,8 @@ class OperationsMetricOptions(SystemErrorsForOperationsMetricOptions):
|
|
|
15217
15488
|
self._values["color"] = color
|
|
15218
15489
|
if dimensions_map is not None:
|
|
15219
15490
|
self._values["dimensions_map"] = dimensions_map
|
|
15491
|
+
if id is not None:
|
|
15492
|
+
self._values["id"] = id
|
|
15220
15493
|
if label is not None:
|
|
15221
15494
|
self._values["label"] = label
|
|
15222
15495
|
if period is not None:
|
|
@@ -15231,6 +15504,8 @@ class OperationsMetricOptions(SystemErrorsForOperationsMetricOptions):
|
|
|
15231
15504
|
self._values["statistic"] = statistic
|
|
15232
15505
|
if unit is not None:
|
|
15233
15506
|
self._values["unit"] = unit
|
|
15507
|
+
if visible is not None:
|
|
15508
|
+
self._values["visible"] = visible
|
|
15234
15509
|
if operations is not None:
|
|
15235
15510
|
self._values["operations"] = operations
|
|
15236
15511
|
|
|
@@ -15263,6 +15538,19 @@ class OperationsMetricOptions(SystemErrorsForOperationsMetricOptions):
|
|
|
15263
15538
|
result = self._values.get("dimensions_map")
|
|
15264
15539
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, builtins.str]], result)
|
|
15265
15540
|
|
|
15541
|
+
@builtins.property
|
|
15542
|
+
def id(self) -> typing.Optional[builtins.str]:
|
|
15543
|
+
'''Unique identifier for this metric when used in dashboard widgets.
|
|
15544
|
+
|
|
15545
|
+
The id can be used as a variable to represent this metric in math expressions.
|
|
15546
|
+
Valid characters are letters, numbers, and underscore. The first character
|
|
15547
|
+
must be a lowercase letter.
|
|
15548
|
+
|
|
15549
|
+
:default: - No ID
|
|
15550
|
+
'''
|
|
15551
|
+
result = self._values.get("id")
|
|
15552
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
15553
|
+
|
|
15266
15554
|
@builtins.property
|
|
15267
15555
|
def label(self) -> typing.Optional[builtins.str]:
|
|
15268
15556
|
'''Label for this metric when added to a Graph in a Dashboard.
|
|
@@ -15360,6 +15648,18 @@ class OperationsMetricOptions(SystemErrorsForOperationsMetricOptions):
|
|
|
15360
15648
|
result = self._values.get("unit")
|
|
15361
15649
|
return typing.cast(typing.Optional[_Unit_61bc6f70], result)
|
|
15362
15650
|
|
|
15651
|
+
@builtins.property
|
|
15652
|
+
def visible(self) -> typing.Optional[builtins.bool]:
|
|
15653
|
+
'''Whether this metric should be visible in dashboard graphs.
|
|
15654
|
+
|
|
15655
|
+
Setting this to false is useful when you want to hide raw metrics
|
|
15656
|
+
that are used in math expressions, and show only the expression results.
|
|
15657
|
+
|
|
15658
|
+
:default: true
|
|
15659
|
+
'''
|
|
15660
|
+
result = self._values.get("visible")
|
|
15661
|
+
return typing.cast(typing.Optional[builtins.bool], result)
|
|
15662
|
+
|
|
15363
15663
|
@builtins.property
|
|
15364
15664
|
def operations(self) -> typing.Optional[typing.List[Operation]]:
|
|
15365
15665
|
'''The operations to apply the metric to.
|
|
@@ -16916,6 +17216,7 @@ def _typecheckingstub__44aae7bfccb81f7147f788917765a21288aff5fe772bb7c0c84ceb7a7
|
|
|
16916
17216
|
account: typing.Optional[builtins.str] = None,
|
|
16917
17217
|
color: typing.Optional[builtins.str] = None,
|
|
16918
17218
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
17219
|
+
id: typing.Optional[builtins.str] = None,
|
|
16919
17220
|
label: typing.Optional[builtins.str] = None,
|
|
16920
17221
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
16921
17222
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -16923,6 +17224,7 @@ def _typecheckingstub__44aae7bfccb81f7147f788917765a21288aff5fe772bb7c0c84ceb7a7
|
|
|
16923
17224
|
stack_region: typing.Optional[builtins.str] = None,
|
|
16924
17225
|
statistic: typing.Optional[builtins.str] = None,
|
|
16925
17226
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
17227
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
16926
17228
|
) -> None:
|
|
16927
17229
|
"""Type checking stubs"""
|
|
16928
17230
|
pass
|
|
@@ -16985,6 +17287,7 @@ def _typecheckingstub__cdad33b4389e90fa83c3fbfb70fd12ef2e9a72ee375dc3e96dcbef610
|
|
|
16985
17287
|
account: typing.Optional[builtins.str] = None,
|
|
16986
17288
|
color: typing.Optional[builtins.str] = None,
|
|
16987
17289
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
17290
|
+
id: typing.Optional[builtins.str] = None,
|
|
16988
17291
|
label: typing.Optional[builtins.str] = None,
|
|
16989
17292
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
16990
17293
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -16992,6 +17295,7 @@ def _typecheckingstub__cdad33b4389e90fa83c3fbfb70fd12ef2e9a72ee375dc3e96dcbef610
|
|
|
16992
17295
|
stack_region: typing.Optional[builtins.str] = None,
|
|
16993
17296
|
statistic: typing.Optional[builtins.str] = None,
|
|
16994
17297
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
17298
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
16995
17299
|
operations: typing.Optional[typing.Sequence[Operation]] = None,
|
|
16996
17300
|
) -> None:
|
|
16997
17301
|
"""Type checking stubs"""
|
|
@@ -17098,6 +17402,7 @@ def _typecheckingstub__1b1ff6b5154d6682d8764a47052a06d5305d9f6a41c79c8c293c19949
|
|
|
17098
17402
|
account: typing.Optional[builtins.str] = None,
|
|
17099
17403
|
color: typing.Optional[builtins.str] = None,
|
|
17100
17404
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
17405
|
+
id: typing.Optional[builtins.str] = None,
|
|
17101
17406
|
label: typing.Optional[builtins.str] = None,
|
|
17102
17407
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
17103
17408
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -17105,6 +17410,7 @@ def _typecheckingstub__1b1ff6b5154d6682d8764a47052a06d5305d9f6a41c79c8c293c19949
|
|
|
17105
17410
|
stack_region: typing.Optional[builtins.str] = None,
|
|
17106
17411
|
statistic: typing.Optional[builtins.str] = None,
|
|
17107
17412
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
17413
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
17108
17414
|
) -> None:
|
|
17109
17415
|
"""Type checking stubs"""
|
|
17110
17416
|
pass
|
|
@@ -17115,6 +17421,7 @@ def _typecheckingstub__95d33a70a83403322cdc035963638859f588f5d47bae922a6083d3acd
|
|
|
17115
17421
|
account: typing.Optional[builtins.str] = None,
|
|
17116
17422
|
color: typing.Optional[builtins.str] = None,
|
|
17117
17423
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
17424
|
+
id: typing.Optional[builtins.str] = None,
|
|
17118
17425
|
label: typing.Optional[builtins.str] = None,
|
|
17119
17426
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
17120
17427
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -17122,6 +17429,7 @@ def _typecheckingstub__95d33a70a83403322cdc035963638859f588f5d47bae922a6083d3acd
|
|
|
17122
17429
|
stack_region: typing.Optional[builtins.str] = None,
|
|
17123
17430
|
statistic: typing.Optional[builtins.str] = None,
|
|
17124
17431
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
17432
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
17125
17433
|
) -> None:
|
|
17126
17434
|
"""Type checking stubs"""
|
|
17127
17435
|
pass
|
|
@@ -17206,6 +17514,7 @@ def _typecheckingstub__b9d12f99f3c2bb32f060be7bea286ff36b58ea207a391685b9ca44957
|
|
|
17206
17514
|
account: typing.Optional[builtins.str] = None,
|
|
17207
17515
|
color: typing.Optional[builtins.str] = None,
|
|
17208
17516
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
17517
|
+
id: typing.Optional[builtins.str] = None,
|
|
17209
17518
|
label: typing.Optional[builtins.str] = None,
|
|
17210
17519
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
17211
17520
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -17213,6 +17522,7 @@ def _typecheckingstub__b9d12f99f3c2bb32f060be7bea286ff36b58ea207a391685b9ca44957
|
|
|
17213
17522
|
stack_region: typing.Optional[builtins.str] = None,
|
|
17214
17523
|
statistic: typing.Optional[builtins.str] = None,
|
|
17215
17524
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
17525
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
17216
17526
|
) -> None:
|
|
17217
17527
|
"""Type checking stubs"""
|
|
17218
17528
|
pass
|
|
@@ -17224,6 +17534,7 @@ def _typecheckingstub__77d4ef5bc85980ee36c06595f45b530b92a1b51437a40ca9dc19d75ed
|
|
|
17224
17534
|
account: typing.Optional[builtins.str] = None,
|
|
17225
17535
|
color: typing.Optional[builtins.str] = None,
|
|
17226
17536
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
17537
|
+
id: typing.Optional[builtins.str] = None,
|
|
17227
17538
|
label: typing.Optional[builtins.str] = None,
|
|
17228
17539
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
17229
17540
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -17231,6 +17542,7 @@ def _typecheckingstub__77d4ef5bc85980ee36c06595f45b530b92a1b51437a40ca9dc19d75ed
|
|
|
17231
17542
|
stack_region: typing.Optional[builtins.str] = None,
|
|
17232
17543
|
statistic: typing.Optional[builtins.str] = None,
|
|
17233
17544
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
17545
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
17234
17546
|
) -> None:
|
|
17235
17547
|
"""Type checking stubs"""
|
|
17236
17548
|
pass
|
|
@@ -17498,6 +17810,7 @@ def _typecheckingstub__323fc564f2052282a189a09de9130b5d9a855212d7bd5a514ddb98a52
|
|
|
17498
17810
|
account: typing.Optional[builtins.str] = None,
|
|
17499
17811
|
color: typing.Optional[builtins.str] = None,
|
|
17500
17812
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
17813
|
+
id: typing.Optional[builtins.str] = None,
|
|
17501
17814
|
label: typing.Optional[builtins.str] = None,
|
|
17502
17815
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
17503
17816
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -17505,6 +17818,7 @@ def _typecheckingstub__323fc564f2052282a189a09de9130b5d9a855212d7bd5a514ddb98a52
|
|
|
17505
17818
|
stack_region: typing.Optional[builtins.str] = None,
|
|
17506
17819
|
statistic: typing.Optional[builtins.str] = None,
|
|
17507
17820
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
17821
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
17508
17822
|
operations: typing.Optional[typing.Sequence[Operation]] = None,
|
|
17509
17823
|
) -> None:
|
|
17510
17824
|
"""Type checking stubs"""
|