aws-cdk-lib 2.203.0__py3-none-any.whl → 2.204.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of aws-cdk-lib might be problematic. Click here for more details.
- aws_cdk/__init__.py +38 -0
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.203.0.jsii.tgz → aws-cdk-lib@2.204.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigateway/__init__.py +164 -0
- aws_cdk/aws_apigatewayv2/__init__.py +412 -0
- aws_cdk/aws_certificatemanager/__init__.py +28 -0
- aws_cdk/aws_chatbot/__init__.py +28 -0
- aws_cdk/aws_cloudfront/__init__.py +92 -0
- aws_cdk/aws_cloudfront/experimental/__init__.py +32 -0
- aws_cdk/aws_cloudwatch/__init__.py +217 -23
- aws_cdk/aws_codebuild/__init__.py +84 -0
- aws_cdk/aws_dynamodb/__init__.py +316 -2
- aws_cdk/aws_ec2/__init__.py +94 -0
- aws_cdk/aws_ecs/__init__.py +52 -0
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +724 -0
- aws_cdk/aws_elasticsearch/__init__.py +260 -0
- aws_cdk/aws_kinesis/__init__.py +324 -0
- aws_cdk/aws_kinesisfirehose/__init__.py +100 -0
- aws_cdk/aws_lambda/__init__.py +144 -0
- aws_cdk/aws_logs/__init__.py +58 -0
- aws_cdk/aws_opensearchservice/__init__.py +260 -0
- aws_cdk/aws_rds/__init__.py +384 -0
- aws_cdk/aws_scheduler/__init__.py +210 -0
- aws_cdk/aws_sns/__init__.py +164 -0
- aws_cdk/aws_sqs/__init__.py +164 -0
- aws_cdk/aws_stepfunctions/__init__.py +288 -0
- aws_cdk/aws_synthetics/__init__.py +18 -0
- {aws_cdk_lib-2.203.0.dist-info → aws_cdk_lib-2.204.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.203.0.dist-info → aws_cdk_lib-2.204.0.dist-info}/RECORD +33 -33
- {aws_cdk_lib-2.203.0.dist-info → aws_cdk_lib-2.204.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.203.0.dist-info → aws_cdk_lib-2.204.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.203.0.dist-info → aws_cdk_lib-2.204.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.203.0.dist-info → aws_cdk_lib-2.204.0.dist-info}/top_level.txt +0 -0
|
@@ -3185,6 +3185,7 @@ class IScheduleGroup(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
3185
3185
|
account: typing.Optional[builtins.str] = None,
|
|
3186
3186
|
color: typing.Optional[builtins.str] = None,
|
|
3187
3187
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3188
|
+
id: typing.Optional[builtins.str] = None,
|
|
3188
3189
|
label: typing.Optional[builtins.str] = None,
|
|
3189
3190
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
3190
3191
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -3192,6 +3193,7 @@ class IScheduleGroup(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
3192
3193
|
stack_region: typing.Optional[builtins.str] = None,
|
|
3193
3194
|
statistic: typing.Optional[builtins.str] = None,
|
|
3194
3195
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
3196
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
3195
3197
|
) -> _Metric_e396a4dc:
|
|
3196
3198
|
'''Return the given named metric for this group schedules.
|
|
3197
3199
|
|
|
@@ -3199,6 +3201,7 @@ class IScheduleGroup(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
3199
3201
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
3200
3202
|
: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
|
|
3201
3203
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
3204
|
+
: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
|
|
3202
3205
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
3203
3206
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3204
3207
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -3206,6 +3209,7 @@ class IScheduleGroup(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
3206
3209
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3207
3210
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
3208
3211
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
3212
|
+
: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
|
|
3209
3213
|
|
|
3210
3214
|
:default: - sum over 5 minutes
|
|
3211
3215
|
'''
|
|
@@ -3218,6 +3222,7 @@ class IScheduleGroup(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
3218
3222
|
account: typing.Optional[builtins.str] = None,
|
|
3219
3223
|
color: typing.Optional[builtins.str] = None,
|
|
3220
3224
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3225
|
+
id: typing.Optional[builtins.str] = None,
|
|
3221
3226
|
label: typing.Optional[builtins.str] = None,
|
|
3222
3227
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
3223
3228
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -3225,12 +3230,14 @@ class IScheduleGroup(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
3225
3230
|
stack_region: typing.Optional[builtins.str] = None,
|
|
3226
3231
|
statistic: typing.Optional[builtins.str] = None,
|
|
3227
3232
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
3233
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
3228
3234
|
) -> _Metric_e396a4dc:
|
|
3229
3235
|
'''Metric for all invocation attempts.
|
|
3230
3236
|
|
|
3231
3237
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
3232
3238
|
: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
|
|
3233
3239
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
3240
|
+
: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
|
|
3234
3241
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
3235
3242
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3236
3243
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -3238,6 +3245,7 @@ class IScheduleGroup(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
3238
3245
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3239
3246
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
3240
3247
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
3248
|
+
: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
|
|
3241
3249
|
|
|
3242
3250
|
:default: - sum over 5 minutes
|
|
3243
3251
|
'''
|
|
@@ -3250,6 +3258,7 @@ class IScheduleGroup(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
3250
3258
|
account: typing.Optional[builtins.str] = None,
|
|
3251
3259
|
color: typing.Optional[builtins.str] = None,
|
|
3252
3260
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3261
|
+
id: typing.Optional[builtins.str] = None,
|
|
3253
3262
|
label: typing.Optional[builtins.str] = None,
|
|
3254
3263
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
3255
3264
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -3257,12 +3266,14 @@ class IScheduleGroup(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
3257
3266
|
stack_region: typing.Optional[builtins.str] = None,
|
|
3258
3267
|
statistic: typing.Optional[builtins.str] = None,
|
|
3259
3268
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
3269
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
3260
3270
|
) -> _Metric_e396a4dc:
|
|
3261
3271
|
'''Metric for dropped invocations when EventBridge Scheduler stops attempting to invoke the target after a schedule's retry policy has been exhausted.
|
|
3262
3272
|
|
|
3263
3273
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
3264
3274
|
: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
|
|
3265
3275
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
3276
|
+
: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
|
|
3266
3277
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
3267
3278
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3268
3279
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -3270,6 +3281,7 @@ class IScheduleGroup(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
3270
3281
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3271
3282
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
3272
3283
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
3284
|
+
: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
|
|
3273
3285
|
|
|
3274
3286
|
:default: - sum over 5 minutes
|
|
3275
3287
|
'''
|
|
@@ -3283,6 +3295,7 @@ class IScheduleGroup(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
3283
3295
|
account: typing.Optional[builtins.str] = None,
|
|
3284
3296
|
color: typing.Optional[builtins.str] = None,
|
|
3285
3297
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3298
|
+
id: typing.Optional[builtins.str] = None,
|
|
3286
3299
|
label: typing.Optional[builtins.str] = None,
|
|
3287
3300
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
3288
3301
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -3290,6 +3303,7 @@ class IScheduleGroup(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
3290
3303
|
stack_region: typing.Optional[builtins.str] = None,
|
|
3291
3304
|
statistic: typing.Optional[builtins.str] = None,
|
|
3292
3305
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
3306
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
3293
3307
|
) -> _Metric_e396a4dc:
|
|
3294
3308
|
'''Metric for failed invocations that also failed to deliver to DLQ.
|
|
3295
3309
|
|
|
@@ -3297,6 +3311,7 @@ class IScheduleGroup(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
3297
3311
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
3298
3312
|
: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
|
|
3299
3313
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
3314
|
+
: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
|
|
3300
3315
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
3301
3316
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3302
3317
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -3304,6 +3319,7 @@ class IScheduleGroup(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
3304
3319
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3305
3320
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
3306
3321
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
3322
|
+
: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
|
|
3307
3323
|
|
|
3308
3324
|
:default: - sum over 5 minutes
|
|
3309
3325
|
'''
|
|
@@ -3316,6 +3332,7 @@ class IScheduleGroup(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
3316
3332
|
account: typing.Optional[builtins.str] = None,
|
|
3317
3333
|
color: typing.Optional[builtins.str] = None,
|
|
3318
3334
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3335
|
+
id: typing.Optional[builtins.str] = None,
|
|
3319
3336
|
label: typing.Optional[builtins.str] = None,
|
|
3320
3337
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
3321
3338
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -3323,12 +3340,14 @@ class IScheduleGroup(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
3323
3340
|
stack_region: typing.Optional[builtins.str] = None,
|
|
3324
3341
|
statistic: typing.Optional[builtins.str] = None,
|
|
3325
3342
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
3343
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
3326
3344
|
) -> _Metric_e396a4dc:
|
|
3327
3345
|
'''Metric for invocations delivered to the DLQ.
|
|
3328
3346
|
|
|
3329
3347
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
3330
3348
|
: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
|
|
3331
3349
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
3350
|
+
: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
|
|
3332
3351
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
3333
3352
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3334
3353
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -3336,6 +3355,7 @@ class IScheduleGroup(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
3336
3355
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3337
3356
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
3338
3357
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
3358
|
+
: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
|
|
3339
3359
|
|
|
3340
3360
|
:default: - sum over 5 minutes
|
|
3341
3361
|
'''
|
|
@@ -3348,6 +3368,7 @@ class IScheduleGroup(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
3348
3368
|
account: typing.Optional[builtins.str] = None,
|
|
3349
3369
|
color: typing.Optional[builtins.str] = None,
|
|
3350
3370
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3371
|
+
id: typing.Optional[builtins.str] = None,
|
|
3351
3372
|
label: typing.Optional[builtins.str] = None,
|
|
3352
3373
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
3353
3374
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -3355,12 +3376,14 @@ class IScheduleGroup(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
3355
3376
|
stack_region: typing.Optional[builtins.str] = None,
|
|
3356
3377
|
statistic: typing.Optional[builtins.str] = None,
|
|
3357
3378
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
3379
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
3358
3380
|
) -> _Metric_e396a4dc:
|
|
3359
3381
|
'''Metric for delivery of failed invocations to DLQ when the payload of the event sent to the DLQ exceeds the maximum size allowed by Amazon SQS.
|
|
3360
3382
|
|
|
3361
3383
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
3362
3384
|
: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
|
|
3363
3385
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
3386
|
+
: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
|
|
3364
3387
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
3365
3388
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3366
3389
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -3368,6 +3391,7 @@ class IScheduleGroup(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
3368
3391
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3369
3392
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
3370
3393
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
3394
|
+
: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
|
|
3371
3395
|
|
|
3372
3396
|
:default: - sum over 5 minutes
|
|
3373
3397
|
'''
|
|
@@ -3380,6 +3404,7 @@ class IScheduleGroup(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
3380
3404
|
account: typing.Optional[builtins.str] = None,
|
|
3381
3405
|
color: typing.Optional[builtins.str] = None,
|
|
3382
3406
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3407
|
+
id: typing.Optional[builtins.str] = None,
|
|
3383
3408
|
label: typing.Optional[builtins.str] = None,
|
|
3384
3409
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
3385
3410
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -3387,12 +3412,14 @@ class IScheduleGroup(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
3387
3412
|
stack_region: typing.Optional[builtins.str] = None,
|
|
3388
3413
|
statistic: typing.Optional[builtins.str] = None,
|
|
3389
3414
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
3415
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
3390
3416
|
) -> _Metric_e396a4dc:
|
|
3391
3417
|
'''Emitted when the target returns an exception after EventBridge Scheduler calls the target API.
|
|
3392
3418
|
|
|
3393
3419
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
3394
3420
|
: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
|
|
3395
3421
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
3422
|
+
: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
|
|
3396
3423
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
3397
3424
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3398
3425
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -3400,6 +3427,7 @@ class IScheduleGroup(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
3400
3427
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3401
3428
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
3402
3429
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
3430
|
+
: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
|
|
3403
3431
|
|
|
3404
3432
|
:default: - sum over 5 minutes
|
|
3405
3433
|
'''
|
|
@@ -3412,6 +3440,7 @@ class IScheduleGroup(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
3412
3440
|
account: typing.Optional[builtins.str] = None,
|
|
3413
3441
|
color: typing.Optional[builtins.str] = None,
|
|
3414
3442
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3443
|
+
id: typing.Optional[builtins.str] = None,
|
|
3415
3444
|
label: typing.Optional[builtins.str] = None,
|
|
3416
3445
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
3417
3446
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -3419,12 +3448,14 @@ class IScheduleGroup(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
3419
3448
|
stack_region: typing.Optional[builtins.str] = None,
|
|
3420
3449
|
statistic: typing.Optional[builtins.str] = None,
|
|
3421
3450
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
3451
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
3422
3452
|
) -> _Metric_e396a4dc:
|
|
3423
3453
|
'''Metric for invocation failures due to API throttling by the target.
|
|
3424
3454
|
|
|
3425
3455
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
3426
3456
|
: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
|
|
3427
3457
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
3458
|
+
: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
|
|
3428
3459
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
3429
3460
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3430
3461
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -3432,6 +3463,7 @@ class IScheduleGroup(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
3432
3463
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3433
3464
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
3434
3465
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
3466
|
+
: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
|
|
3435
3467
|
|
|
3436
3468
|
:default: - sum over 5 minutes
|
|
3437
3469
|
'''
|
|
@@ -3444,6 +3476,7 @@ class IScheduleGroup(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
3444
3476
|
account: typing.Optional[builtins.str] = None,
|
|
3445
3477
|
color: typing.Optional[builtins.str] = None,
|
|
3446
3478
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3479
|
+
id: typing.Optional[builtins.str] = None,
|
|
3447
3480
|
label: typing.Optional[builtins.str] = None,
|
|
3448
3481
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
3449
3482
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -3451,12 +3484,14 @@ class IScheduleGroup(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
3451
3484
|
stack_region: typing.Optional[builtins.str] = None,
|
|
3452
3485
|
statistic: typing.Optional[builtins.str] = None,
|
|
3453
3486
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
3487
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
3454
3488
|
) -> _Metric_e396a4dc:
|
|
3455
3489
|
'''Metric for the number of invocations that were throttled because it exceeds your service quotas.
|
|
3456
3490
|
|
|
3457
3491
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
3458
3492
|
: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
|
|
3459
3493
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
3494
|
+
: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
|
|
3460
3495
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
3461
3496
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3462
3497
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -3464,6 +3499,7 @@ class IScheduleGroup(_IResource_c80c4260, typing_extensions.Protocol):
|
|
|
3464
3499
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3465
3500
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
3466
3501
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
3502
|
+
: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
|
|
3467
3503
|
|
|
3468
3504
|
:default: - sum over 5 minutes
|
|
3469
3505
|
|
|
@@ -3555,6 +3591,7 @@ class _IScheduleGroupProxy(
|
|
|
3555
3591
|
account: typing.Optional[builtins.str] = None,
|
|
3556
3592
|
color: typing.Optional[builtins.str] = None,
|
|
3557
3593
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3594
|
+
id: typing.Optional[builtins.str] = None,
|
|
3558
3595
|
label: typing.Optional[builtins.str] = None,
|
|
3559
3596
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
3560
3597
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -3562,6 +3599,7 @@ class _IScheduleGroupProxy(
|
|
|
3562
3599
|
stack_region: typing.Optional[builtins.str] = None,
|
|
3563
3600
|
statistic: typing.Optional[builtins.str] = None,
|
|
3564
3601
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
3602
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
3565
3603
|
) -> _Metric_e396a4dc:
|
|
3566
3604
|
'''Return the given named metric for this group schedules.
|
|
3567
3605
|
|
|
@@ -3569,6 +3607,7 @@ class _IScheduleGroupProxy(
|
|
|
3569
3607
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
3570
3608
|
: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
|
|
3571
3609
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
3610
|
+
: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
|
|
3572
3611
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
3573
3612
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3574
3613
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -3576,6 +3615,7 @@ class _IScheduleGroupProxy(
|
|
|
3576
3615
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3577
3616
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
3578
3617
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
3618
|
+
: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
|
|
3579
3619
|
|
|
3580
3620
|
:default: - sum over 5 minutes
|
|
3581
3621
|
'''
|
|
@@ -3586,6 +3626,7 @@ class _IScheduleGroupProxy(
|
|
|
3586
3626
|
account=account,
|
|
3587
3627
|
color=color,
|
|
3588
3628
|
dimensions_map=dimensions_map,
|
|
3629
|
+
id=id,
|
|
3589
3630
|
label=label,
|
|
3590
3631
|
period=period,
|
|
3591
3632
|
region=region,
|
|
@@ -3593,6 +3634,7 @@ class _IScheduleGroupProxy(
|
|
|
3593
3634
|
stack_region=stack_region,
|
|
3594
3635
|
statistic=statistic,
|
|
3595
3636
|
unit=unit,
|
|
3637
|
+
visible=visible,
|
|
3596
3638
|
)
|
|
3597
3639
|
|
|
3598
3640
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metric", [metric_name, props]))
|
|
@@ -3604,6 +3646,7 @@ class _IScheduleGroupProxy(
|
|
|
3604
3646
|
account: typing.Optional[builtins.str] = None,
|
|
3605
3647
|
color: typing.Optional[builtins.str] = None,
|
|
3606
3648
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3649
|
+
id: typing.Optional[builtins.str] = None,
|
|
3607
3650
|
label: typing.Optional[builtins.str] = None,
|
|
3608
3651
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
3609
3652
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -3611,12 +3654,14 @@ class _IScheduleGroupProxy(
|
|
|
3611
3654
|
stack_region: typing.Optional[builtins.str] = None,
|
|
3612
3655
|
statistic: typing.Optional[builtins.str] = None,
|
|
3613
3656
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
3657
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
3614
3658
|
) -> _Metric_e396a4dc:
|
|
3615
3659
|
'''Metric for all invocation attempts.
|
|
3616
3660
|
|
|
3617
3661
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
3618
3662
|
: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
|
|
3619
3663
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
3664
|
+
: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
|
|
3620
3665
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
3621
3666
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3622
3667
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -3624,6 +3669,7 @@ class _IScheduleGroupProxy(
|
|
|
3624
3669
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3625
3670
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
3626
3671
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
3672
|
+
: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
|
|
3627
3673
|
|
|
3628
3674
|
:default: - sum over 5 minutes
|
|
3629
3675
|
'''
|
|
@@ -3631,6 +3677,7 @@ class _IScheduleGroupProxy(
|
|
|
3631
3677
|
account=account,
|
|
3632
3678
|
color=color,
|
|
3633
3679
|
dimensions_map=dimensions_map,
|
|
3680
|
+
id=id,
|
|
3634
3681
|
label=label,
|
|
3635
3682
|
period=period,
|
|
3636
3683
|
region=region,
|
|
@@ -3638,6 +3685,7 @@ class _IScheduleGroupProxy(
|
|
|
3638
3685
|
stack_region=stack_region,
|
|
3639
3686
|
statistic=statistic,
|
|
3640
3687
|
unit=unit,
|
|
3688
|
+
visible=visible,
|
|
3641
3689
|
)
|
|
3642
3690
|
|
|
3643
3691
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricAttempts", [props]))
|
|
@@ -3649,6 +3697,7 @@ class _IScheduleGroupProxy(
|
|
|
3649
3697
|
account: typing.Optional[builtins.str] = None,
|
|
3650
3698
|
color: typing.Optional[builtins.str] = None,
|
|
3651
3699
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3700
|
+
id: typing.Optional[builtins.str] = None,
|
|
3652
3701
|
label: typing.Optional[builtins.str] = None,
|
|
3653
3702
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
3654
3703
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -3656,12 +3705,14 @@ class _IScheduleGroupProxy(
|
|
|
3656
3705
|
stack_region: typing.Optional[builtins.str] = None,
|
|
3657
3706
|
statistic: typing.Optional[builtins.str] = None,
|
|
3658
3707
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
3708
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
3659
3709
|
) -> _Metric_e396a4dc:
|
|
3660
3710
|
'''Metric for dropped invocations when EventBridge Scheduler stops attempting to invoke the target after a schedule's retry policy has been exhausted.
|
|
3661
3711
|
|
|
3662
3712
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
3663
3713
|
: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
|
|
3664
3714
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
3715
|
+
: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
|
|
3665
3716
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
3666
3717
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3667
3718
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -3669,6 +3720,7 @@ class _IScheduleGroupProxy(
|
|
|
3669
3720
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3670
3721
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
3671
3722
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
3723
|
+
: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
|
|
3672
3724
|
|
|
3673
3725
|
:default: - sum over 5 minutes
|
|
3674
3726
|
'''
|
|
@@ -3676,6 +3728,7 @@ class _IScheduleGroupProxy(
|
|
|
3676
3728
|
account=account,
|
|
3677
3729
|
color=color,
|
|
3678
3730
|
dimensions_map=dimensions_map,
|
|
3731
|
+
id=id,
|
|
3679
3732
|
label=label,
|
|
3680
3733
|
period=period,
|
|
3681
3734
|
region=region,
|
|
@@ -3683,6 +3736,7 @@ class _IScheduleGroupProxy(
|
|
|
3683
3736
|
stack_region=stack_region,
|
|
3684
3737
|
statistic=statistic,
|
|
3685
3738
|
unit=unit,
|
|
3739
|
+
visible=visible,
|
|
3686
3740
|
)
|
|
3687
3741
|
|
|
3688
3742
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricDropped", [props]))
|
|
@@ -3695,6 +3749,7 @@ class _IScheduleGroupProxy(
|
|
|
3695
3749
|
account: typing.Optional[builtins.str] = None,
|
|
3696
3750
|
color: typing.Optional[builtins.str] = None,
|
|
3697
3751
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3752
|
+
id: typing.Optional[builtins.str] = None,
|
|
3698
3753
|
label: typing.Optional[builtins.str] = None,
|
|
3699
3754
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
3700
3755
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -3702,6 +3757,7 @@ class _IScheduleGroupProxy(
|
|
|
3702
3757
|
stack_region: typing.Optional[builtins.str] = None,
|
|
3703
3758
|
statistic: typing.Optional[builtins.str] = None,
|
|
3704
3759
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
3760
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
3705
3761
|
) -> _Metric_e396a4dc:
|
|
3706
3762
|
'''Metric for failed invocations that also failed to deliver to DLQ.
|
|
3707
3763
|
|
|
@@ -3709,6 +3765,7 @@ class _IScheduleGroupProxy(
|
|
|
3709
3765
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
3710
3766
|
: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
|
|
3711
3767
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
3768
|
+
: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
|
|
3712
3769
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
3713
3770
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3714
3771
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -3716,6 +3773,7 @@ class _IScheduleGroupProxy(
|
|
|
3716
3773
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3717
3774
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
3718
3775
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
3776
|
+
: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
|
|
3719
3777
|
|
|
3720
3778
|
:default: - sum over 5 minutes
|
|
3721
3779
|
'''
|
|
@@ -3726,6 +3784,7 @@ class _IScheduleGroupProxy(
|
|
|
3726
3784
|
account=account,
|
|
3727
3785
|
color=color,
|
|
3728
3786
|
dimensions_map=dimensions_map,
|
|
3787
|
+
id=id,
|
|
3729
3788
|
label=label,
|
|
3730
3789
|
period=period,
|
|
3731
3790
|
region=region,
|
|
@@ -3733,6 +3792,7 @@ class _IScheduleGroupProxy(
|
|
|
3733
3792
|
stack_region=stack_region,
|
|
3734
3793
|
statistic=statistic,
|
|
3735
3794
|
unit=unit,
|
|
3795
|
+
visible=visible,
|
|
3736
3796
|
)
|
|
3737
3797
|
|
|
3738
3798
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricFailedToBeSentToDLQ", [error_code, props]))
|
|
@@ -3744,6 +3804,7 @@ class _IScheduleGroupProxy(
|
|
|
3744
3804
|
account: typing.Optional[builtins.str] = None,
|
|
3745
3805
|
color: typing.Optional[builtins.str] = None,
|
|
3746
3806
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3807
|
+
id: typing.Optional[builtins.str] = None,
|
|
3747
3808
|
label: typing.Optional[builtins.str] = None,
|
|
3748
3809
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
3749
3810
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -3751,12 +3812,14 @@ class _IScheduleGroupProxy(
|
|
|
3751
3812
|
stack_region: typing.Optional[builtins.str] = None,
|
|
3752
3813
|
statistic: typing.Optional[builtins.str] = None,
|
|
3753
3814
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
3815
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
3754
3816
|
) -> _Metric_e396a4dc:
|
|
3755
3817
|
'''Metric for invocations delivered to the DLQ.
|
|
3756
3818
|
|
|
3757
3819
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
3758
3820
|
: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
|
|
3759
3821
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
3822
|
+
: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
|
|
3760
3823
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
3761
3824
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3762
3825
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -3764,6 +3827,7 @@ class _IScheduleGroupProxy(
|
|
|
3764
3827
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3765
3828
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
3766
3829
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
3830
|
+
: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
|
|
3767
3831
|
|
|
3768
3832
|
:default: - sum over 5 minutes
|
|
3769
3833
|
'''
|
|
@@ -3771,6 +3835,7 @@ class _IScheduleGroupProxy(
|
|
|
3771
3835
|
account=account,
|
|
3772
3836
|
color=color,
|
|
3773
3837
|
dimensions_map=dimensions_map,
|
|
3838
|
+
id=id,
|
|
3774
3839
|
label=label,
|
|
3775
3840
|
period=period,
|
|
3776
3841
|
region=region,
|
|
@@ -3778,6 +3843,7 @@ class _IScheduleGroupProxy(
|
|
|
3778
3843
|
stack_region=stack_region,
|
|
3779
3844
|
statistic=statistic,
|
|
3780
3845
|
unit=unit,
|
|
3846
|
+
visible=visible,
|
|
3781
3847
|
)
|
|
3782
3848
|
|
|
3783
3849
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricSentToDLQ", [props]))
|
|
@@ -3789,6 +3855,7 @@ class _IScheduleGroupProxy(
|
|
|
3789
3855
|
account: typing.Optional[builtins.str] = None,
|
|
3790
3856
|
color: typing.Optional[builtins.str] = None,
|
|
3791
3857
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3858
|
+
id: typing.Optional[builtins.str] = None,
|
|
3792
3859
|
label: typing.Optional[builtins.str] = None,
|
|
3793
3860
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
3794
3861
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -3796,12 +3863,14 @@ class _IScheduleGroupProxy(
|
|
|
3796
3863
|
stack_region: typing.Optional[builtins.str] = None,
|
|
3797
3864
|
statistic: typing.Optional[builtins.str] = None,
|
|
3798
3865
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
3866
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
3799
3867
|
) -> _Metric_e396a4dc:
|
|
3800
3868
|
'''Metric for delivery of failed invocations to DLQ when the payload of the event sent to the DLQ exceeds the maximum size allowed by Amazon SQS.
|
|
3801
3869
|
|
|
3802
3870
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
3803
3871
|
: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
|
|
3804
3872
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
3873
|
+
: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
|
|
3805
3874
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
3806
3875
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3807
3876
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -3809,6 +3878,7 @@ class _IScheduleGroupProxy(
|
|
|
3809
3878
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3810
3879
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
3811
3880
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
3881
|
+
: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
|
|
3812
3882
|
|
|
3813
3883
|
:default: - sum over 5 minutes
|
|
3814
3884
|
'''
|
|
@@ -3816,6 +3886,7 @@ class _IScheduleGroupProxy(
|
|
|
3816
3886
|
account=account,
|
|
3817
3887
|
color=color,
|
|
3818
3888
|
dimensions_map=dimensions_map,
|
|
3889
|
+
id=id,
|
|
3819
3890
|
label=label,
|
|
3820
3891
|
period=period,
|
|
3821
3892
|
region=region,
|
|
@@ -3823,6 +3894,7 @@ class _IScheduleGroupProxy(
|
|
|
3823
3894
|
stack_region=stack_region,
|
|
3824
3895
|
statistic=statistic,
|
|
3825
3896
|
unit=unit,
|
|
3897
|
+
visible=visible,
|
|
3826
3898
|
)
|
|
3827
3899
|
|
|
3828
3900
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricSentToDLQTruncated", [props]))
|
|
@@ -3834,6 +3906,7 @@ class _IScheduleGroupProxy(
|
|
|
3834
3906
|
account: typing.Optional[builtins.str] = None,
|
|
3835
3907
|
color: typing.Optional[builtins.str] = None,
|
|
3836
3908
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3909
|
+
id: typing.Optional[builtins.str] = None,
|
|
3837
3910
|
label: typing.Optional[builtins.str] = None,
|
|
3838
3911
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
3839
3912
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -3841,12 +3914,14 @@ class _IScheduleGroupProxy(
|
|
|
3841
3914
|
stack_region: typing.Optional[builtins.str] = None,
|
|
3842
3915
|
statistic: typing.Optional[builtins.str] = None,
|
|
3843
3916
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
3917
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
3844
3918
|
) -> _Metric_e396a4dc:
|
|
3845
3919
|
'''Emitted when the target returns an exception after EventBridge Scheduler calls the target API.
|
|
3846
3920
|
|
|
3847
3921
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
3848
3922
|
: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
|
|
3849
3923
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
3924
|
+
: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
|
|
3850
3925
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
3851
3926
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3852
3927
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -3854,6 +3929,7 @@ class _IScheduleGroupProxy(
|
|
|
3854
3929
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3855
3930
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
3856
3931
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
3932
|
+
: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
|
|
3857
3933
|
|
|
3858
3934
|
:default: - sum over 5 minutes
|
|
3859
3935
|
'''
|
|
@@ -3861,6 +3937,7 @@ class _IScheduleGroupProxy(
|
|
|
3861
3937
|
account=account,
|
|
3862
3938
|
color=color,
|
|
3863
3939
|
dimensions_map=dimensions_map,
|
|
3940
|
+
id=id,
|
|
3864
3941
|
label=label,
|
|
3865
3942
|
period=period,
|
|
3866
3943
|
region=region,
|
|
@@ -3868,6 +3945,7 @@ class _IScheduleGroupProxy(
|
|
|
3868
3945
|
stack_region=stack_region,
|
|
3869
3946
|
statistic=statistic,
|
|
3870
3947
|
unit=unit,
|
|
3948
|
+
visible=visible,
|
|
3871
3949
|
)
|
|
3872
3950
|
|
|
3873
3951
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricTargetErrors", [props]))
|
|
@@ -3879,6 +3957,7 @@ class _IScheduleGroupProxy(
|
|
|
3879
3957
|
account: typing.Optional[builtins.str] = None,
|
|
3880
3958
|
color: typing.Optional[builtins.str] = None,
|
|
3881
3959
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3960
|
+
id: typing.Optional[builtins.str] = None,
|
|
3882
3961
|
label: typing.Optional[builtins.str] = None,
|
|
3883
3962
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
3884
3963
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -3886,12 +3965,14 @@ class _IScheduleGroupProxy(
|
|
|
3886
3965
|
stack_region: typing.Optional[builtins.str] = None,
|
|
3887
3966
|
statistic: typing.Optional[builtins.str] = None,
|
|
3888
3967
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
3968
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
3889
3969
|
) -> _Metric_e396a4dc:
|
|
3890
3970
|
'''Metric for invocation failures due to API throttling by the target.
|
|
3891
3971
|
|
|
3892
3972
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
3893
3973
|
: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
|
|
3894
3974
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
3975
|
+
: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
|
|
3895
3976
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
3896
3977
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3897
3978
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -3899,6 +3980,7 @@ class _IScheduleGroupProxy(
|
|
|
3899
3980
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3900
3981
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
3901
3982
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
3983
|
+
: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
|
|
3902
3984
|
|
|
3903
3985
|
:default: - sum over 5 minutes
|
|
3904
3986
|
'''
|
|
@@ -3906,6 +3988,7 @@ class _IScheduleGroupProxy(
|
|
|
3906
3988
|
account=account,
|
|
3907
3989
|
color=color,
|
|
3908
3990
|
dimensions_map=dimensions_map,
|
|
3991
|
+
id=id,
|
|
3909
3992
|
label=label,
|
|
3910
3993
|
period=period,
|
|
3911
3994
|
region=region,
|
|
@@ -3913,6 +3996,7 @@ class _IScheduleGroupProxy(
|
|
|
3913
3996
|
stack_region=stack_region,
|
|
3914
3997
|
statistic=statistic,
|
|
3915
3998
|
unit=unit,
|
|
3999
|
+
visible=visible,
|
|
3916
4000
|
)
|
|
3917
4001
|
|
|
3918
4002
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricTargetThrottled", [props]))
|
|
@@ -3924,6 +4008,7 @@ class _IScheduleGroupProxy(
|
|
|
3924
4008
|
account: typing.Optional[builtins.str] = None,
|
|
3925
4009
|
color: typing.Optional[builtins.str] = None,
|
|
3926
4010
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4011
|
+
id: typing.Optional[builtins.str] = None,
|
|
3927
4012
|
label: typing.Optional[builtins.str] = None,
|
|
3928
4013
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
3929
4014
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -3931,12 +4016,14 @@ class _IScheduleGroupProxy(
|
|
|
3931
4016
|
stack_region: typing.Optional[builtins.str] = None,
|
|
3932
4017
|
statistic: typing.Optional[builtins.str] = None,
|
|
3933
4018
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
4019
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
3934
4020
|
) -> _Metric_e396a4dc:
|
|
3935
4021
|
'''Metric for the number of invocations that were throttled because it exceeds your service quotas.
|
|
3936
4022
|
|
|
3937
4023
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
3938
4024
|
: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
|
|
3939
4025
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
4026
|
+
: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
|
|
3940
4027
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
3941
4028
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3942
4029
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -3944,6 +4031,7 @@ class _IScheduleGroupProxy(
|
|
|
3944
4031
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3945
4032
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
3946
4033
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
4034
|
+
: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
|
|
3947
4035
|
|
|
3948
4036
|
:default: - sum over 5 minutes
|
|
3949
4037
|
|
|
@@ -3953,6 +4041,7 @@ class _IScheduleGroupProxy(
|
|
|
3953
4041
|
account=account,
|
|
3954
4042
|
color=color,
|
|
3955
4043
|
dimensions_map=dimensions_map,
|
|
4044
|
+
id=id,
|
|
3956
4045
|
label=label,
|
|
3957
4046
|
period=period,
|
|
3958
4047
|
region=region,
|
|
@@ -3960,6 +4049,7 @@ class _IScheduleGroupProxy(
|
|
|
3960
4049
|
stack_region=stack_region,
|
|
3961
4050
|
statistic=statistic,
|
|
3962
4051
|
unit=unit,
|
|
4052
|
+
visible=visible,
|
|
3963
4053
|
)
|
|
3964
4054
|
|
|
3965
4055
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricThrottled", [props]))
|
|
@@ -4108,6 +4198,7 @@ class Schedule(
|
|
|
4108
4198
|
account: typing.Optional[builtins.str] = None,
|
|
4109
4199
|
color: typing.Optional[builtins.str] = None,
|
|
4110
4200
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4201
|
+
id: typing.Optional[builtins.str] = None,
|
|
4111
4202
|
label: typing.Optional[builtins.str] = None,
|
|
4112
4203
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
4113
4204
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4115,6 +4206,7 @@ class Schedule(
|
|
|
4115
4206
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4116
4207
|
statistic: typing.Optional[builtins.str] = None,
|
|
4117
4208
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
4209
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4118
4210
|
) -> _Metric_e396a4dc:
|
|
4119
4211
|
'''Return the given named metric for all schedules.
|
|
4120
4212
|
|
|
@@ -4122,6 +4214,7 @@ class Schedule(
|
|
|
4122
4214
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4123
4215
|
: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
|
|
4124
4216
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
4217
|
+
: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
|
|
4125
4218
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
4126
4219
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4127
4220
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4129,6 +4222,7 @@ class Schedule(
|
|
|
4129
4222
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4130
4223
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
4131
4224
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
4225
|
+
: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
|
|
4132
4226
|
|
|
4133
4227
|
:default: - sum over 5 minutes
|
|
4134
4228
|
'''
|
|
@@ -4139,6 +4233,7 @@ class Schedule(
|
|
|
4139
4233
|
account=account,
|
|
4140
4234
|
color=color,
|
|
4141
4235
|
dimensions_map=dimensions_map,
|
|
4236
|
+
id=id,
|
|
4142
4237
|
label=label,
|
|
4143
4238
|
period=period,
|
|
4144
4239
|
region=region,
|
|
@@ -4146,6 +4241,7 @@ class Schedule(
|
|
|
4146
4241
|
stack_region=stack_region,
|
|
4147
4242
|
statistic=statistic,
|
|
4148
4243
|
unit=unit,
|
|
4244
|
+
visible=visible,
|
|
4149
4245
|
)
|
|
4150
4246
|
|
|
4151
4247
|
return typing.cast(_Metric_e396a4dc, jsii.sinvoke(cls, "metricAll", [metric_name, props]))
|
|
@@ -4158,6 +4254,7 @@ class Schedule(
|
|
|
4158
4254
|
account: typing.Optional[builtins.str] = None,
|
|
4159
4255
|
color: typing.Optional[builtins.str] = None,
|
|
4160
4256
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4257
|
+
id: typing.Optional[builtins.str] = None,
|
|
4161
4258
|
label: typing.Optional[builtins.str] = None,
|
|
4162
4259
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
4163
4260
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4165,12 +4262,14 @@ class Schedule(
|
|
|
4165
4262
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4166
4263
|
statistic: typing.Optional[builtins.str] = None,
|
|
4167
4264
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
4265
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4168
4266
|
) -> _Metric_e396a4dc:
|
|
4169
4267
|
'''Metric for all invocation attempts across all schedules.
|
|
4170
4268
|
|
|
4171
4269
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4172
4270
|
: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
|
|
4173
4271
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
4272
|
+
: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
|
|
4174
4273
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
4175
4274
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4176
4275
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4178,6 +4277,7 @@ class Schedule(
|
|
|
4178
4277
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4179
4278
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
4180
4279
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
4280
|
+
: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
|
|
4181
4281
|
|
|
4182
4282
|
:default: - sum over 5 minutes
|
|
4183
4283
|
'''
|
|
@@ -4185,6 +4285,7 @@ class Schedule(
|
|
|
4185
4285
|
account=account,
|
|
4186
4286
|
color=color,
|
|
4187
4287
|
dimensions_map=dimensions_map,
|
|
4288
|
+
id=id,
|
|
4188
4289
|
label=label,
|
|
4189
4290
|
period=period,
|
|
4190
4291
|
region=region,
|
|
@@ -4192,6 +4293,7 @@ class Schedule(
|
|
|
4192
4293
|
stack_region=stack_region,
|
|
4193
4294
|
statistic=statistic,
|
|
4194
4295
|
unit=unit,
|
|
4296
|
+
visible=visible,
|
|
4195
4297
|
)
|
|
4196
4298
|
|
|
4197
4299
|
return typing.cast(_Metric_e396a4dc, jsii.sinvoke(cls, "metricAllAttempts", [props]))
|
|
@@ -4204,6 +4306,7 @@ class Schedule(
|
|
|
4204
4306
|
account: typing.Optional[builtins.str] = None,
|
|
4205
4307
|
color: typing.Optional[builtins.str] = None,
|
|
4206
4308
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4309
|
+
id: typing.Optional[builtins.str] = None,
|
|
4207
4310
|
label: typing.Optional[builtins.str] = None,
|
|
4208
4311
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
4209
4312
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4211,6 +4314,7 @@ class Schedule(
|
|
|
4211
4314
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4212
4315
|
statistic: typing.Optional[builtins.str] = None,
|
|
4213
4316
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
4317
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4214
4318
|
) -> _Metric_e396a4dc:
|
|
4215
4319
|
'''Metric for dropped invocations when EventBridge Scheduler stops attempting to invoke the target after a schedule's retry policy has been exhausted.
|
|
4216
4320
|
|
|
@@ -4219,6 +4323,7 @@ class Schedule(
|
|
|
4219
4323
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4220
4324
|
: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
|
|
4221
4325
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
4326
|
+
: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
|
|
4222
4327
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
4223
4328
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4224
4329
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4226,6 +4331,7 @@ class Schedule(
|
|
|
4226
4331
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4227
4332
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
4228
4333
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
4334
|
+
: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
|
|
4229
4335
|
|
|
4230
4336
|
:default: - sum over 5 minutes
|
|
4231
4337
|
'''
|
|
@@ -4233,6 +4339,7 @@ class Schedule(
|
|
|
4233
4339
|
account=account,
|
|
4234
4340
|
color=color,
|
|
4235
4341
|
dimensions_map=dimensions_map,
|
|
4342
|
+
id=id,
|
|
4236
4343
|
label=label,
|
|
4237
4344
|
period=period,
|
|
4238
4345
|
region=region,
|
|
@@ -4240,6 +4347,7 @@ class Schedule(
|
|
|
4240
4347
|
stack_region=stack_region,
|
|
4241
4348
|
statistic=statistic,
|
|
4242
4349
|
unit=unit,
|
|
4350
|
+
visible=visible,
|
|
4243
4351
|
)
|
|
4244
4352
|
|
|
4245
4353
|
return typing.cast(_Metric_e396a4dc, jsii.sinvoke(cls, "metricAllDropped", [props]))
|
|
@@ -4252,6 +4360,7 @@ class Schedule(
|
|
|
4252
4360
|
account: typing.Optional[builtins.str] = None,
|
|
4253
4361
|
color: typing.Optional[builtins.str] = None,
|
|
4254
4362
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4363
|
+
id: typing.Optional[builtins.str] = None,
|
|
4255
4364
|
label: typing.Optional[builtins.str] = None,
|
|
4256
4365
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
4257
4366
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4259,12 +4368,14 @@ class Schedule(
|
|
|
4259
4368
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4260
4369
|
statistic: typing.Optional[builtins.str] = None,
|
|
4261
4370
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
4371
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4262
4372
|
) -> _Metric_e396a4dc:
|
|
4263
4373
|
'''Emitted when the target returns an exception after EventBridge Scheduler calls the target API across all schedules.
|
|
4264
4374
|
|
|
4265
4375
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4266
4376
|
: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
|
|
4267
4377
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
4378
|
+
: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
|
|
4268
4379
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
4269
4380
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4270
4381
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4272,6 +4383,7 @@ class Schedule(
|
|
|
4272
4383
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4273
4384
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
4274
4385
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
4386
|
+
: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
|
|
4275
4387
|
|
|
4276
4388
|
:default: - sum over 5 minutes
|
|
4277
4389
|
'''
|
|
@@ -4279,6 +4391,7 @@ class Schedule(
|
|
|
4279
4391
|
account=account,
|
|
4280
4392
|
color=color,
|
|
4281
4393
|
dimensions_map=dimensions_map,
|
|
4394
|
+
id=id,
|
|
4282
4395
|
label=label,
|
|
4283
4396
|
period=period,
|
|
4284
4397
|
region=region,
|
|
@@ -4286,6 +4399,7 @@ class Schedule(
|
|
|
4286
4399
|
stack_region=stack_region,
|
|
4287
4400
|
statistic=statistic,
|
|
4288
4401
|
unit=unit,
|
|
4402
|
+
visible=visible,
|
|
4289
4403
|
)
|
|
4290
4404
|
|
|
4291
4405
|
return typing.cast(_Metric_e396a4dc, jsii.sinvoke(cls, "metricAllErrors", [props]))
|
|
@@ -4299,6 +4413,7 @@ class Schedule(
|
|
|
4299
4413
|
account: typing.Optional[builtins.str] = None,
|
|
4300
4414
|
color: typing.Optional[builtins.str] = None,
|
|
4301
4415
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4416
|
+
id: typing.Optional[builtins.str] = None,
|
|
4302
4417
|
label: typing.Optional[builtins.str] = None,
|
|
4303
4418
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
4304
4419
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4306,6 +4421,7 @@ class Schedule(
|
|
|
4306
4421
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4307
4422
|
statistic: typing.Optional[builtins.str] = None,
|
|
4308
4423
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
4424
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4309
4425
|
) -> _Metric_e396a4dc:
|
|
4310
4426
|
'''Metric for failed invocations that also failed to deliver to DLQ across all schedules.
|
|
4311
4427
|
|
|
@@ -4313,6 +4429,7 @@ class Schedule(
|
|
|
4313
4429
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4314
4430
|
: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
|
|
4315
4431
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
4432
|
+
: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
|
|
4316
4433
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
4317
4434
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4318
4435
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4320,6 +4437,7 @@ class Schedule(
|
|
|
4320
4437
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4321
4438
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
4322
4439
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
4440
|
+
: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
|
|
4323
4441
|
|
|
4324
4442
|
:default: - sum over 5 minutes
|
|
4325
4443
|
'''
|
|
@@ -4330,6 +4448,7 @@ class Schedule(
|
|
|
4330
4448
|
account=account,
|
|
4331
4449
|
color=color,
|
|
4332
4450
|
dimensions_map=dimensions_map,
|
|
4451
|
+
id=id,
|
|
4333
4452
|
label=label,
|
|
4334
4453
|
period=period,
|
|
4335
4454
|
region=region,
|
|
@@ -4337,6 +4456,7 @@ class Schedule(
|
|
|
4337
4456
|
stack_region=stack_region,
|
|
4338
4457
|
statistic=statistic,
|
|
4339
4458
|
unit=unit,
|
|
4459
|
+
visible=visible,
|
|
4340
4460
|
)
|
|
4341
4461
|
|
|
4342
4462
|
return typing.cast(_Metric_e396a4dc, jsii.sinvoke(cls, "metricAllFailedToBeSentToDLQ", [error_code, props]))
|
|
@@ -4349,6 +4469,7 @@ class Schedule(
|
|
|
4349
4469
|
account: typing.Optional[builtins.str] = None,
|
|
4350
4470
|
color: typing.Optional[builtins.str] = None,
|
|
4351
4471
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4472
|
+
id: typing.Optional[builtins.str] = None,
|
|
4352
4473
|
label: typing.Optional[builtins.str] = None,
|
|
4353
4474
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
4354
4475
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4356,12 +4477,14 @@ class Schedule(
|
|
|
4356
4477
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4357
4478
|
statistic: typing.Optional[builtins.str] = None,
|
|
4358
4479
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
4480
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4359
4481
|
) -> _Metric_e396a4dc:
|
|
4360
4482
|
'''Metric for invocations delivered to the DLQ across all schedules.
|
|
4361
4483
|
|
|
4362
4484
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4363
4485
|
: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
|
|
4364
4486
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
4487
|
+
: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
|
|
4365
4488
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
4366
4489
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4367
4490
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4369,6 +4492,7 @@ class Schedule(
|
|
|
4369
4492
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4370
4493
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
4371
4494
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
4495
|
+
: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
|
|
4372
4496
|
|
|
4373
4497
|
:default: - sum over 5 minutes
|
|
4374
4498
|
'''
|
|
@@ -4376,6 +4500,7 @@ class Schedule(
|
|
|
4376
4500
|
account=account,
|
|
4377
4501
|
color=color,
|
|
4378
4502
|
dimensions_map=dimensions_map,
|
|
4503
|
+
id=id,
|
|
4379
4504
|
label=label,
|
|
4380
4505
|
period=period,
|
|
4381
4506
|
region=region,
|
|
@@ -4383,6 +4508,7 @@ class Schedule(
|
|
|
4383
4508
|
stack_region=stack_region,
|
|
4384
4509
|
statistic=statistic,
|
|
4385
4510
|
unit=unit,
|
|
4511
|
+
visible=visible,
|
|
4386
4512
|
)
|
|
4387
4513
|
|
|
4388
4514
|
return typing.cast(_Metric_e396a4dc, jsii.sinvoke(cls, "metricAllSentToDLQ", [props]))
|
|
@@ -4395,6 +4521,7 @@ class Schedule(
|
|
|
4395
4521
|
account: typing.Optional[builtins.str] = None,
|
|
4396
4522
|
color: typing.Optional[builtins.str] = None,
|
|
4397
4523
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4524
|
+
id: typing.Optional[builtins.str] = None,
|
|
4398
4525
|
label: typing.Optional[builtins.str] = None,
|
|
4399
4526
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
4400
4527
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4402,6 +4529,7 @@ class Schedule(
|
|
|
4402
4529
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4403
4530
|
statistic: typing.Optional[builtins.str] = None,
|
|
4404
4531
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
4532
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4405
4533
|
) -> _Metric_e396a4dc:
|
|
4406
4534
|
'''Metric for delivery of failed invocations to DLQ when the payload of the event sent to the DLQ exceeds the maximum size allowed by Amazon SQS.
|
|
4407
4535
|
|
|
@@ -4410,6 +4538,7 @@ class Schedule(
|
|
|
4410
4538
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4411
4539
|
: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
|
|
4412
4540
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
4541
|
+
: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
|
|
4413
4542
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
4414
4543
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4415
4544
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4417,6 +4546,7 @@ class Schedule(
|
|
|
4417
4546
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4418
4547
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
4419
4548
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
4549
|
+
: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
|
|
4420
4550
|
|
|
4421
4551
|
:default: - sum over 5 minutes
|
|
4422
4552
|
'''
|
|
@@ -4424,6 +4554,7 @@ class Schedule(
|
|
|
4424
4554
|
account=account,
|
|
4425
4555
|
color=color,
|
|
4426
4556
|
dimensions_map=dimensions_map,
|
|
4557
|
+
id=id,
|
|
4427
4558
|
label=label,
|
|
4428
4559
|
period=period,
|
|
4429
4560
|
region=region,
|
|
@@ -4431,6 +4562,7 @@ class Schedule(
|
|
|
4431
4562
|
stack_region=stack_region,
|
|
4432
4563
|
statistic=statistic,
|
|
4433
4564
|
unit=unit,
|
|
4565
|
+
visible=visible,
|
|
4434
4566
|
)
|
|
4435
4567
|
|
|
4436
4568
|
return typing.cast(_Metric_e396a4dc, jsii.sinvoke(cls, "metricAllSentToDLQTruncated", [props]))
|
|
@@ -4443,6 +4575,7 @@ class Schedule(
|
|
|
4443
4575
|
account: typing.Optional[builtins.str] = None,
|
|
4444
4576
|
color: typing.Optional[builtins.str] = None,
|
|
4445
4577
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4578
|
+
id: typing.Optional[builtins.str] = None,
|
|
4446
4579
|
label: typing.Optional[builtins.str] = None,
|
|
4447
4580
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
4448
4581
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4450,12 +4583,14 @@ class Schedule(
|
|
|
4450
4583
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4451
4584
|
statistic: typing.Optional[builtins.str] = None,
|
|
4452
4585
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
4586
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4453
4587
|
) -> _Metric_e396a4dc:
|
|
4454
4588
|
'''Metric for invocation failures due to API throttling by the target across all schedules.
|
|
4455
4589
|
|
|
4456
4590
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4457
4591
|
: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
|
|
4458
4592
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
4593
|
+
: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
|
|
4459
4594
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
4460
4595
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4461
4596
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4463,6 +4598,7 @@ class Schedule(
|
|
|
4463
4598
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4464
4599
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
4465
4600
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
4601
|
+
: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
|
|
4466
4602
|
|
|
4467
4603
|
:default: - sum over 5 minutes
|
|
4468
4604
|
'''
|
|
@@ -4470,6 +4606,7 @@ class Schedule(
|
|
|
4470
4606
|
account=account,
|
|
4471
4607
|
color=color,
|
|
4472
4608
|
dimensions_map=dimensions_map,
|
|
4609
|
+
id=id,
|
|
4473
4610
|
label=label,
|
|
4474
4611
|
period=period,
|
|
4475
4612
|
region=region,
|
|
@@ -4477,6 +4614,7 @@ class Schedule(
|
|
|
4477
4614
|
stack_region=stack_region,
|
|
4478
4615
|
statistic=statistic,
|
|
4479
4616
|
unit=unit,
|
|
4617
|
+
visible=visible,
|
|
4480
4618
|
)
|
|
4481
4619
|
|
|
4482
4620
|
return typing.cast(_Metric_e396a4dc, jsii.sinvoke(cls, "metricAllTargetThrottled", [props]))
|
|
@@ -4489,6 +4627,7 @@ class Schedule(
|
|
|
4489
4627
|
account: typing.Optional[builtins.str] = None,
|
|
4490
4628
|
color: typing.Optional[builtins.str] = None,
|
|
4491
4629
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4630
|
+
id: typing.Optional[builtins.str] = None,
|
|
4492
4631
|
label: typing.Optional[builtins.str] = None,
|
|
4493
4632
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
4494
4633
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4496,12 +4635,14 @@ class Schedule(
|
|
|
4496
4635
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4497
4636
|
statistic: typing.Optional[builtins.str] = None,
|
|
4498
4637
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
4638
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4499
4639
|
) -> _Metric_e396a4dc:
|
|
4500
4640
|
'''Metric for the number of invocations that were throttled across all schedules.
|
|
4501
4641
|
|
|
4502
4642
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4503
4643
|
: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
|
|
4504
4644
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
4645
|
+
: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
|
|
4505
4646
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
4506
4647
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4507
4648
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4509,6 +4650,7 @@ class Schedule(
|
|
|
4509
4650
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4510
4651
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
4511
4652
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
4653
|
+
: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
|
|
4512
4654
|
|
|
4513
4655
|
:default: - sum over 5 minutes
|
|
4514
4656
|
|
|
@@ -4518,6 +4660,7 @@ class Schedule(
|
|
|
4518
4660
|
account=account,
|
|
4519
4661
|
color=color,
|
|
4520
4662
|
dimensions_map=dimensions_map,
|
|
4663
|
+
id=id,
|
|
4521
4664
|
label=label,
|
|
4522
4665
|
period=period,
|
|
4523
4666
|
region=region,
|
|
@@ -4525,6 +4668,7 @@ class Schedule(
|
|
|
4525
4668
|
stack_region=stack_region,
|
|
4526
4669
|
statistic=statistic,
|
|
4527
4670
|
unit=unit,
|
|
4671
|
+
visible=visible,
|
|
4528
4672
|
)
|
|
4529
4673
|
|
|
4530
4674
|
return typing.cast(_Metric_e396a4dc, jsii.sinvoke(cls, "metricAllThrottled", [props]))
|
|
@@ -4879,6 +5023,7 @@ class ScheduleGroup(
|
|
|
4879
5023
|
account: typing.Optional[builtins.str] = None,
|
|
4880
5024
|
color: typing.Optional[builtins.str] = None,
|
|
4881
5025
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
5026
|
+
id: typing.Optional[builtins.str] = None,
|
|
4882
5027
|
label: typing.Optional[builtins.str] = None,
|
|
4883
5028
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
4884
5029
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4886,6 +5031,7 @@ class ScheduleGroup(
|
|
|
4886
5031
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4887
5032
|
statistic: typing.Optional[builtins.str] = None,
|
|
4888
5033
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
5034
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4889
5035
|
) -> _Metric_e396a4dc:
|
|
4890
5036
|
'''Return the given named metric for this schedule group.
|
|
4891
5037
|
|
|
@@ -4893,6 +5039,7 @@ class ScheduleGroup(
|
|
|
4893
5039
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4894
5040
|
: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
|
|
4895
5041
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
5042
|
+
: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
|
|
4896
5043
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
4897
5044
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4898
5045
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4900,6 +5047,7 @@ class ScheduleGroup(
|
|
|
4900
5047
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4901
5048
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
4902
5049
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
5050
|
+
: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
|
|
4903
5051
|
|
|
4904
5052
|
:default: - sum over 5 minutes
|
|
4905
5053
|
'''
|
|
@@ -4910,6 +5058,7 @@ class ScheduleGroup(
|
|
|
4910
5058
|
account=account,
|
|
4911
5059
|
color=color,
|
|
4912
5060
|
dimensions_map=dimensions_map,
|
|
5061
|
+
id=id,
|
|
4913
5062
|
label=label,
|
|
4914
5063
|
period=period,
|
|
4915
5064
|
region=region,
|
|
@@ -4917,6 +5066,7 @@ class ScheduleGroup(
|
|
|
4917
5066
|
stack_region=stack_region,
|
|
4918
5067
|
statistic=statistic,
|
|
4919
5068
|
unit=unit,
|
|
5069
|
+
visible=visible,
|
|
4920
5070
|
)
|
|
4921
5071
|
|
|
4922
5072
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metric", [metric_name, props]))
|
|
@@ -4928,6 +5078,7 @@ class ScheduleGroup(
|
|
|
4928
5078
|
account: typing.Optional[builtins.str] = None,
|
|
4929
5079
|
color: typing.Optional[builtins.str] = None,
|
|
4930
5080
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
5081
|
+
id: typing.Optional[builtins.str] = None,
|
|
4931
5082
|
label: typing.Optional[builtins.str] = None,
|
|
4932
5083
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
4933
5084
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4935,12 +5086,14 @@ class ScheduleGroup(
|
|
|
4935
5086
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4936
5087
|
statistic: typing.Optional[builtins.str] = None,
|
|
4937
5088
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
5089
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4938
5090
|
) -> _Metric_e396a4dc:
|
|
4939
5091
|
'''Metric for all invocation attempts.
|
|
4940
5092
|
|
|
4941
5093
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4942
5094
|
: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
|
|
4943
5095
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
5096
|
+
: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
|
|
4944
5097
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
4945
5098
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4946
5099
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4948,6 +5101,7 @@ class ScheduleGroup(
|
|
|
4948
5101
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4949
5102
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
4950
5103
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
5104
|
+
: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
|
|
4951
5105
|
|
|
4952
5106
|
:default: - sum over 5 minutes
|
|
4953
5107
|
'''
|
|
@@ -4955,6 +5109,7 @@ class ScheduleGroup(
|
|
|
4955
5109
|
account=account,
|
|
4956
5110
|
color=color,
|
|
4957
5111
|
dimensions_map=dimensions_map,
|
|
5112
|
+
id=id,
|
|
4958
5113
|
label=label,
|
|
4959
5114
|
period=period,
|
|
4960
5115
|
region=region,
|
|
@@ -4962,6 +5117,7 @@ class ScheduleGroup(
|
|
|
4962
5117
|
stack_region=stack_region,
|
|
4963
5118
|
statistic=statistic,
|
|
4964
5119
|
unit=unit,
|
|
5120
|
+
visible=visible,
|
|
4965
5121
|
)
|
|
4966
5122
|
|
|
4967
5123
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricAttempts", [props]))
|
|
@@ -4973,6 +5129,7 @@ class ScheduleGroup(
|
|
|
4973
5129
|
account: typing.Optional[builtins.str] = None,
|
|
4974
5130
|
color: typing.Optional[builtins.str] = None,
|
|
4975
5131
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
5132
|
+
id: typing.Optional[builtins.str] = None,
|
|
4976
5133
|
label: typing.Optional[builtins.str] = None,
|
|
4977
5134
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
4978
5135
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -4980,12 +5137,14 @@ class ScheduleGroup(
|
|
|
4980
5137
|
stack_region: typing.Optional[builtins.str] = None,
|
|
4981
5138
|
statistic: typing.Optional[builtins.str] = None,
|
|
4982
5139
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
5140
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
4983
5141
|
) -> _Metric_e396a4dc:
|
|
4984
5142
|
'''Metric for dropped invocations when EventBridge Scheduler stops attempting to invoke the target after a schedule's retry policy has been exhausted.
|
|
4985
5143
|
|
|
4986
5144
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
4987
5145
|
: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
|
|
4988
5146
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
5147
|
+
: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
|
|
4989
5148
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
4990
5149
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4991
5150
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -4993,6 +5152,7 @@ class ScheduleGroup(
|
|
|
4993
5152
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4994
5153
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
4995
5154
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
5155
|
+
: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
|
|
4996
5156
|
|
|
4997
5157
|
:default: - sum over 5 minutes
|
|
4998
5158
|
'''
|
|
@@ -5000,6 +5160,7 @@ class ScheduleGroup(
|
|
|
5000
5160
|
account=account,
|
|
5001
5161
|
color=color,
|
|
5002
5162
|
dimensions_map=dimensions_map,
|
|
5163
|
+
id=id,
|
|
5003
5164
|
label=label,
|
|
5004
5165
|
period=period,
|
|
5005
5166
|
region=region,
|
|
@@ -5007,6 +5168,7 @@ class ScheduleGroup(
|
|
|
5007
5168
|
stack_region=stack_region,
|
|
5008
5169
|
statistic=statistic,
|
|
5009
5170
|
unit=unit,
|
|
5171
|
+
visible=visible,
|
|
5010
5172
|
)
|
|
5011
5173
|
|
|
5012
5174
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricDropped", [props]))
|
|
@@ -5019,6 +5181,7 @@ class ScheduleGroup(
|
|
|
5019
5181
|
account: typing.Optional[builtins.str] = None,
|
|
5020
5182
|
color: typing.Optional[builtins.str] = None,
|
|
5021
5183
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
5184
|
+
id: typing.Optional[builtins.str] = None,
|
|
5022
5185
|
label: typing.Optional[builtins.str] = None,
|
|
5023
5186
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
5024
5187
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -5026,6 +5189,7 @@ class ScheduleGroup(
|
|
|
5026
5189
|
stack_region: typing.Optional[builtins.str] = None,
|
|
5027
5190
|
statistic: typing.Optional[builtins.str] = None,
|
|
5028
5191
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
5192
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
5029
5193
|
) -> _Metric_e396a4dc:
|
|
5030
5194
|
'''Metric for failed invocations that also failed to deliver to DLQ.
|
|
5031
5195
|
|
|
@@ -5033,6 +5197,7 @@ class ScheduleGroup(
|
|
|
5033
5197
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
5034
5198
|
: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
|
|
5035
5199
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
5200
|
+
: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
|
|
5036
5201
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
5037
5202
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
5038
5203
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -5040,6 +5205,7 @@ class ScheduleGroup(
|
|
|
5040
5205
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
5041
5206
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
5042
5207
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
5208
|
+
: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
|
|
5043
5209
|
|
|
5044
5210
|
:default: - sum over 5 minutes
|
|
5045
5211
|
'''
|
|
@@ -5050,6 +5216,7 @@ class ScheduleGroup(
|
|
|
5050
5216
|
account=account,
|
|
5051
5217
|
color=color,
|
|
5052
5218
|
dimensions_map=dimensions_map,
|
|
5219
|
+
id=id,
|
|
5053
5220
|
label=label,
|
|
5054
5221
|
period=period,
|
|
5055
5222
|
region=region,
|
|
@@ -5057,6 +5224,7 @@ class ScheduleGroup(
|
|
|
5057
5224
|
stack_region=stack_region,
|
|
5058
5225
|
statistic=statistic,
|
|
5059
5226
|
unit=unit,
|
|
5227
|
+
visible=visible,
|
|
5060
5228
|
)
|
|
5061
5229
|
|
|
5062
5230
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricFailedToBeSentToDLQ", [error_code, props]))
|
|
@@ -5068,6 +5236,7 @@ class ScheduleGroup(
|
|
|
5068
5236
|
account: typing.Optional[builtins.str] = None,
|
|
5069
5237
|
color: typing.Optional[builtins.str] = None,
|
|
5070
5238
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
5239
|
+
id: typing.Optional[builtins.str] = None,
|
|
5071
5240
|
label: typing.Optional[builtins.str] = None,
|
|
5072
5241
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
5073
5242
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -5075,12 +5244,14 @@ class ScheduleGroup(
|
|
|
5075
5244
|
stack_region: typing.Optional[builtins.str] = None,
|
|
5076
5245
|
statistic: typing.Optional[builtins.str] = None,
|
|
5077
5246
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
5247
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
5078
5248
|
) -> _Metric_e396a4dc:
|
|
5079
5249
|
'''Metric for invocations delivered to the DLQ.
|
|
5080
5250
|
|
|
5081
5251
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
5082
5252
|
: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
|
|
5083
5253
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
5254
|
+
: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
|
|
5084
5255
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
5085
5256
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
5086
5257
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -5088,6 +5259,7 @@ class ScheduleGroup(
|
|
|
5088
5259
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
5089
5260
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
5090
5261
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
5262
|
+
: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
|
|
5091
5263
|
|
|
5092
5264
|
:default: - sum over 5 minutes
|
|
5093
5265
|
'''
|
|
@@ -5095,6 +5267,7 @@ class ScheduleGroup(
|
|
|
5095
5267
|
account=account,
|
|
5096
5268
|
color=color,
|
|
5097
5269
|
dimensions_map=dimensions_map,
|
|
5270
|
+
id=id,
|
|
5098
5271
|
label=label,
|
|
5099
5272
|
period=period,
|
|
5100
5273
|
region=region,
|
|
@@ -5102,6 +5275,7 @@ class ScheduleGroup(
|
|
|
5102
5275
|
stack_region=stack_region,
|
|
5103
5276
|
statistic=statistic,
|
|
5104
5277
|
unit=unit,
|
|
5278
|
+
visible=visible,
|
|
5105
5279
|
)
|
|
5106
5280
|
|
|
5107
5281
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricSentToDLQ", [props]))
|
|
@@ -5113,6 +5287,7 @@ class ScheduleGroup(
|
|
|
5113
5287
|
account: typing.Optional[builtins.str] = None,
|
|
5114
5288
|
color: typing.Optional[builtins.str] = None,
|
|
5115
5289
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
5290
|
+
id: typing.Optional[builtins.str] = None,
|
|
5116
5291
|
label: typing.Optional[builtins.str] = None,
|
|
5117
5292
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
5118
5293
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -5120,12 +5295,14 @@ class ScheduleGroup(
|
|
|
5120
5295
|
stack_region: typing.Optional[builtins.str] = None,
|
|
5121
5296
|
statistic: typing.Optional[builtins.str] = None,
|
|
5122
5297
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
5298
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
5123
5299
|
) -> _Metric_e396a4dc:
|
|
5124
5300
|
'''Metric for delivery of failed invocations to DLQ when the payload of the event sent to the DLQ exceeds the maximum size allowed by Amazon SQS.
|
|
5125
5301
|
|
|
5126
5302
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
5127
5303
|
: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
|
|
5128
5304
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
5305
|
+
: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
|
|
5129
5306
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
5130
5307
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
5131
5308
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -5133,6 +5310,7 @@ class ScheduleGroup(
|
|
|
5133
5310
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
5134
5311
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
5135
5312
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
5313
|
+
: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
|
|
5136
5314
|
|
|
5137
5315
|
:default: - sum over 5 minutes
|
|
5138
5316
|
'''
|
|
@@ -5140,6 +5318,7 @@ class ScheduleGroup(
|
|
|
5140
5318
|
account=account,
|
|
5141
5319
|
color=color,
|
|
5142
5320
|
dimensions_map=dimensions_map,
|
|
5321
|
+
id=id,
|
|
5143
5322
|
label=label,
|
|
5144
5323
|
period=period,
|
|
5145
5324
|
region=region,
|
|
@@ -5147,6 +5326,7 @@ class ScheduleGroup(
|
|
|
5147
5326
|
stack_region=stack_region,
|
|
5148
5327
|
statistic=statistic,
|
|
5149
5328
|
unit=unit,
|
|
5329
|
+
visible=visible,
|
|
5150
5330
|
)
|
|
5151
5331
|
|
|
5152
5332
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricSentToDLQTruncated", [props]))
|
|
@@ -5158,6 +5338,7 @@ class ScheduleGroup(
|
|
|
5158
5338
|
account: typing.Optional[builtins.str] = None,
|
|
5159
5339
|
color: typing.Optional[builtins.str] = None,
|
|
5160
5340
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
5341
|
+
id: typing.Optional[builtins.str] = None,
|
|
5161
5342
|
label: typing.Optional[builtins.str] = None,
|
|
5162
5343
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
5163
5344
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -5165,12 +5346,14 @@ class ScheduleGroup(
|
|
|
5165
5346
|
stack_region: typing.Optional[builtins.str] = None,
|
|
5166
5347
|
statistic: typing.Optional[builtins.str] = None,
|
|
5167
5348
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
5349
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
5168
5350
|
) -> _Metric_e396a4dc:
|
|
5169
5351
|
'''Emitted when the target returns an exception after EventBridge Scheduler calls the target API.
|
|
5170
5352
|
|
|
5171
5353
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
5172
5354
|
: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
|
|
5173
5355
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
5356
|
+
: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
|
|
5174
5357
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
5175
5358
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
5176
5359
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -5178,6 +5361,7 @@ class ScheduleGroup(
|
|
|
5178
5361
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
5179
5362
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
5180
5363
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
5364
|
+
: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
|
|
5181
5365
|
|
|
5182
5366
|
:default: - sum over 5 minutes
|
|
5183
5367
|
'''
|
|
@@ -5185,6 +5369,7 @@ class ScheduleGroup(
|
|
|
5185
5369
|
account=account,
|
|
5186
5370
|
color=color,
|
|
5187
5371
|
dimensions_map=dimensions_map,
|
|
5372
|
+
id=id,
|
|
5188
5373
|
label=label,
|
|
5189
5374
|
period=period,
|
|
5190
5375
|
region=region,
|
|
@@ -5192,6 +5377,7 @@ class ScheduleGroup(
|
|
|
5192
5377
|
stack_region=stack_region,
|
|
5193
5378
|
statistic=statistic,
|
|
5194
5379
|
unit=unit,
|
|
5380
|
+
visible=visible,
|
|
5195
5381
|
)
|
|
5196
5382
|
|
|
5197
5383
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricTargetErrors", [props]))
|
|
@@ -5203,6 +5389,7 @@ class ScheduleGroup(
|
|
|
5203
5389
|
account: typing.Optional[builtins.str] = None,
|
|
5204
5390
|
color: typing.Optional[builtins.str] = None,
|
|
5205
5391
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
5392
|
+
id: typing.Optional[builtins.str] = None,
|
|
5206
5393
|
label: typing.Optional[builtins.str] = None,
|
|
5207
5394
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
5208
5395
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -5210,12 +5397,14 @@ class ScheduleGroup(
|
|
|
5210
5397
|
stack_region: typing.Optional[builtins.str] = None,
|
|
5211
5398
|
statistic: typing.Optional[builtins.str] = None,
|
|
5212
5399
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
5400
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
5213
5401
|
) -> _Metric_e396a4dc:
|
|
5214
5402
|
'''Metric for invocation failures due to API throttling by the target.
|
|
5215
5403
|
|
|
5216
5404
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
5217
5405
|
: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
|
|
5218
5406
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
5407
|
+
: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
|
|
5219
5408
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
5220
5409
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
5221
5410
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -5223,6 +5412,7 @@ class ScheduleGroup(
|
|
|
5223
5412
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
5224
5413
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
5225
5414
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
5415
|
+
: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
|
|
5226
5416
|
|
|
5227
5417
|
:default: - sum over 5 minutes
|
|
5228
5418
|
'''
|
|
@@ -5230,6 +5420,7 @@ class ScheduleGroup(
|
|
|
5230
5420
|
account=account,
|
|
5231
5421
|
color=color,
|
|
5232
5422
|
dimensions_map=dimensions_map,
|
|
5423
|
+
id=id,
|
|
5233
5424
|
label=label,
|
|
5234
5425
|
period=period,
|
|
5235
5426
|
region=region,
|
|
@@ -5237,6 +5428,7 @@ class ScheduleGroup(
|
|
|
5237
5428
|
stack_region=stack_region,
|
|
5238
5429
|
statistic=statistic,
|
|
5239
5430
|
unit=unit,
|
|
5431
|
+
visible=visible,
|
|
5240
5432
|
)
|
|
5241
5433
|
|
|
5242
5434
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricTargetThrottled", [props]))
|
|
@@ -5248,6 +5440,7 @@ class ScheduleGroup(
|
|
|
5248
5440
|
account: typing.Optional[builtins.str] = None,
|
|
5249
5441
|
color: typing.Optional[builtins.str] = None,
|
|
5250
5442
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
5443
|
+
id: typing.Optional[builtins.str] = None,
|
|
5251
5444
|
label: typing.Optional[builtins.str] = None,
|
|
5252
5445
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
5253
5446
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -5255,12 +5448,14 @@ class ScheduleGroup(
|
|
|
5255
5448
|
stack_region: typing.Optional[builtins.str] = None,
|
|
5256
5449
|
statistic: typing.Optional[builtins.str] = None,
|
|
5257
5450
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
5451
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
5258
5452
|
) -> _Metric_e396a4dc:
|
|
5259
5453
|
'''Metric for the number of invocations that were throttled because it exceeds your service quotas.
|
|
5260
5454
|
|
|
5261
5455
|
:param account: Account which this metric comes from. Default: - Deployment account.
|
|
5262
5456
|
: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
|
|
5263
5457
|
:param dimensions_map: Dimensions of the metric. Default: - No dimensions.
|
|
5458
|
+
: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
|
|
5264
5459
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
5265
5460
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
5266
5461
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
@@ -5268,6 +5463,7 @@ class ScheduleGroup(
|
|
|
5268
5463
|
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
5269
5464
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
5270
5465
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
5466
|
+
: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
|
|
5271
5467
|
|
|
5272
5468
|
:default: - sum over 5 minutes
|
|
5273
5469
|
|
|
@@ -5277,6 +5473,7 @@ class ScheduleGroup(
|
|
|
5277
5473
|
account=account,
|
|
5278
5474
|
color=color,
|
|
5279
5475
|
dimensions_map=dimensions_map,
|
|
5476
|
+
id=id,
|
|
5280
5477
|
label=label,
|
|
5281
5478
|
period=period,
|
|
5282
5479
|
region=region,
|
|
@@ -5284,6 +5481,7 @@ class ScheduleGroup(
|
|
|
5284
5481
|
stack_region=stack_region,
|
|
5285
5482
|
statistic=statistic,
|
|
5286
5483
|
unit=unit,
|
|
5484
|
+
visible=visible,
|
|
5287
5485
|
)
|
|
5288
5486
|
|
|
5289
5487
|
return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricThrottled", [props]))
|
|
@@ -6385,6 +6583,7 @@ def _typecheckingstub__b1a1c48be5584426072c1f842a1e31e59436e2cefe7df9e84b5a3115a
|
|
|
6385
6583
|
account: typing.Optional[builtins.str] = None,
|
|
6386
6584
|
color: typing.Optional[builtins.str] = None,
|
|
6387
6585
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
6586
|
+
id: typing.Optional[builtins.str] = None,
|
|
6388
6587
|
label: typing.Optional[builtins.str] = None,
|
|
6389
6588
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
6390
6589
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -6392,6 +6591,7 @@ def _typecheckingstub__b1a1c48be5584426072c1f842a1e31e59436e2cefe7df9e84b5a3115a
|
|
|
6392
6591
|
stack_region: typing.Optional[builtins.str] = None,
|
|
6393
6592
|
statistic: typing.Optional[builtins.str] = None,
|
|
6394
6593
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
6594
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
6395
6595
|
) -> None:
|
|
6396
6596
|
"""Type checking stubs"""
|
|
6397
6597
|
pass
|
|
@@ -6402,6 +6602,7 @@ def _typecheckingstub__43e3d3a73dae7296d8e1b29562f7a8fbdf941fb9885fa0ddcc13164e2
|
|
|
6402
6602
|
account: typing.Optional[builtins.str] = None,
|
|
6403
6603
|
color: typing.Optional[builtins.str] = None,
|
|
6404
6604
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
6605
|
+
id: typing.Optional[builtins.str] = None,
|
|
6405
6606
|
label: typing.Optional[builtins.str] = None,
|
|
6406
6607
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
6407
6608
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -6409,6 +6610,7 @@ def _typecheckingstub__43e3d3a73dae7296d8e1b29562f7a8fbdf941fb9885fa0ddcc13164e2
|
|
|
6409
6610
|
stack_region: typing.Optional[builtins.str] = None,
|
|
6410
6611
|
statistic: typing.Optional[builtins.str] = None,
|
|
6411
6612
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
6613
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
6412
6614
|
) -> None:
|
|
6413
6615
|
"""Type checking stubs"""
|
|
6414
6616
|
pass
|
|
@@ -6451,6 +6653,7 @@ def _typecheckingstub__3e9697edf3bddfcbab866b7220407b409d24e19d71a4831cc2eae389b
|
|
|
6451
6653
|
account: typing.Optional[builtins.str] = None,
|
|
6452
6654
|
color: typing.Optional[builtins.str] = None,
|
|
6453
6655
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
6656
|
+
id: typing.Optional[builtins.str] = None,
|
|
6454
6657
|
label: typing.Optional[builtins.str] = None,
|
|
6455
6658
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
6456
6659
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -6458,6 +6661,7 @@ def _typecheckingstub__3e9697edf3bddfcbab866b7220407b409d24e19d71a4831cc2eae389b
|
|
|
6458
6661
|
stack_region: typing.Optional[builtins.str] = None,
|
|
6459
6662
|
statistic: typing.Optional[builtins.str] = None,
|
|
6460
6663
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
6664
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
6461
6665
|
) -> None:
|
|
6462
6666
|
"""Type checking stubs"""
|
|
6463
6667
|
pass
|
|
@@ -6468,6 +6672,7 @@ def _typecheckingstub__897a723a752bdf5a7cbd4dc9c673edd8862b55def0dfc20984054c323
|
|
|
6468
6672
|
account: typing.Optional[builtins.str] = None,
|
|
6469
6673
|
color: typing.Optional[builtins.str] = None,
|
|
6470
6674
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
6675
|
+
id: typing.Optional[builtins.str] = None,
|
|
6471
6676
|
label: typing.Optional[builtins.str] = None,
|
|
6472
6677
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
6473
6678
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -6475,6 +6680,7 @@ def _typecheckingstub__897a723a752bdf5a7cbd4dc9c673edd8862b55def0dfc20984054c323
|
|
|
6475
6680
|
stack_region: typing.Optional[builtins.str] = None,
|
|
6476
6681
|
statistic: typing.Optional[builtins.str] = None,
|
|
6477
6682
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
6683
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
6478
6684
|
) -> None:
|
|
6479
6685
|
"""Type checking stubs"""
|
|
6480
6686
|
pass
|
|
@@ -6563,6 +6769,7 @@ def _typecheckingstub__634bd225463be60303d9d1588926bbaa9fbd72c940ca54fecf9724d90
|
|
|
6563
6769
|
account: typing.Optional[builtins.str] = None,
|
|
6564
6770
|
color: typing.Optional[builtins.str] = None,
|
|
6565
6771
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
6772
|
+
id: typing.Optional[builtins.str] = None,
|
|
6566
6773
|
label: typing.Optional[builtins.str] = None,
|
|
6567
6774
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
6568
6775
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -6570,6 +6777,7 @@ def _typecheckingstub__634bd225463be60303d9d1588926bbaa9fbd72c940ca54fecf9724d90
|
|
|
6570
6777
|
stack_region: typing.Optional[builtins.str] = None,
|
|
6571
6778
|
statistic: typing.Optional[builtins.str] = None,
|
|
6572
6779
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
6780
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
6573
6781
|
) -> None:
|
|
6574
6782
|
"""Type checking stubs"""
|
|
6575
6783
|
pass
|
|
@@ -6580,6 +6788,7 @@ def _typecheckingstub__ca970bf647095b0a6fd282ecce93e19b12761be780f7fac1db8cc3b6f
|
|
|
6580
6788
|
account: typing.Optional[builtins.str] = None,
|
|
6581
6789
|
color: typing.Optional[builtins.str] = None,
|
|
6582
6790
|
dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
6791
|
+
id: typing.Optional[builtins.str] = None,
|
|
6583
6792
|
label: typing.Optional[builtins.str] = None,
|
|
6584
6793
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
6585
6794
|
region: typing.Optional[builtins.str] = None,
|
|
@@ -6587,6 +6796,7 @@ def _typecheckingstub__ca970bf647095b0a6fd282ecce93e19b12761be780f7fac1db8cc3b6f
|
|
|
6587
6796
|
stack_region: typing.Optional[builtins.str] = None,
|
|
6588
6797
|
statistic: typing.Optional[builtins.str] = None,
|
|
6589
6798
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
6799
|
+
visible: typing.Optional[builtins.bool] = None,
|
|
6590
6800
|
) -> None:
|
|
6591
6801
|
"""Type checking stubs"""
|
|
6592
6802
|
pass
|