aws-cdk.aws-kinesisanalytics-flink-alpha 2.173.2a0__py3-none-any.whl → 2.222.0a0__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.
@@ -59,26 +59,10 @@ The `code` property can use `fromAsset` as shown above to reference a local jar
59
59
  file in s3 or `fromBucket` to reference a file in s3.
60
60
 
61
61
  ```python
62
- import path as path
63
- import aws_cdk.aws_s3_assets as assets
64
- import aws_cdk as core
65
- import aws_cdk.aws_kinesisanalytics_flink_alpha as flink
66
-
67
- app = core.App()
68
- stack = core.Stack(app, "FlinkAppCodeFromBucketTest")
69
-
70
- asset = assets.Asset(stack, "CodeAsset",
71
- path=path.join(__dirname, "code-asset")
72
- )
73
- bucket = asset.bucket
74
- file_key = asset.s3_object_key
75
-
76
62
  flink.Application(stack, "App",
77
63
  code=flink.ApplicationCode.from_bucket(bucket, file_key),
78
64
  runtime=flink.Runtime.FLINK_1_19
79
65
  )
80
-
81
- app.synth()
82
66
  ```
83
67
 
84
68
  The `propertyGroups` property provides a way of passing arbitrary runtime
@@ -307,8 +291,9 @@ class ApplicationCode(
307
291
  path: builtins.str,
308
292
  *,
309
293
  deploy_time: typing.Optional[builtins.bool] = None,
294
+ display_name: typing.Optional[builtins.str] = None,
310
295
  readers: typing.Optional[typing.Sequence[_aws_cdk_aws_iam_ceddda9d.IGrantable]] = None,
311
- source_kms_key: typing.Optional[_aws_cdk_aws_kms_ceddda9d.IKey] = None,
296
+ source_kms_key: typing.Optional[_aws_cdk_aws_kms_ceddda9d.IKeyRef] = None,
312
297
  asset_hash: typing.Optional[builtins.str] = None,
313
298
  asset_hash_type: typing.Optional[_aws_cdk_ceddda9d.AssetHashType] = None,
314
299
  bundling: typing.Optional[typing.Union[_aws_cdk_ceddda9d.BundlingOptions, typing.Dict[builtins.str, typing.Any]]] = None,
@@ -320,6 +305,7 @@ class ApplicationCode(
320
305
 
321
306
  :param path: - a local directory path.
322
307
  :param deploy_time: Whether or not the asset needs to exist beyond deployment time; i.e. are copied over to a different location and not needed afterwards. Setting this property to true has an impact on the lifecycle of the asset, because we will assume that it is safe to delete after the CloudFormation deployment succeeds. For example, Lambda Function assets are copied over to Lambda during deployment. Therefore, it is not necessary to store the asset in S3, so we consider those deployTime assets. Default: false
308
+ :param display_name: A display name for this asset. If supplied, the display name will be used in locations where the asset identifier is printed, like in the CLI progress information. If the same asset is added multiple times, the display name of the first occurrence is used. The default is the construct path of the Asset construct, with respect to the enclosing stack. If the asset is produced by a construct helper function (such as ``lambda.Code.fromAsset()``), this will look like ``MyFunction/Code``. We use the stack-relative construct path so that in the common case where you have multiple stacks with the same asset, we won't show something like ``/MyBetaStack/MyFunction/Code`` when you are actually deploying to production. Default: - Stack-relative construct path
323
309
  :param readers: A list of principals that should be able to read this asset from S3. You can use ``asset.grantRead(principal)`` to grant read permissions later. Default: - No principals that can read file asset.
324
310
  :param source_kms_key: The ARN of the KMS key used to encrypt the handler code. Default: - the default server-side encryption with Amazon S3 managed keys(SSE-S3) key will be used.
325
311
  :param asset_hash: Specify a custom hash for this asset. If ``assetHashType`` is set it must be set to ``AssetHashType.CUSTOM``. For consistency, this custom hash will be SHA256 hashed and encoded as hex. The resulting hash will be the asset hash. NOTE: the hash is used in order to identify a specific revision of the asset, and used for optimizing and caching deployment activities related to this asset such as packaging, uploading to Amazon S3, etc. If you chose to customize the hash, you will need to make sure it is updated every time the asset changes, or otherwise it is possible that some deployments will not be invalidated. Default: - based on ``assetHashType``
@@ -337,6 +323,7 @@ class ApplicationCode(
337
323
  check_type(argname="argument path", value=path, expected_type=type_hints["path"])
338
324
  options = _aws_cdk_aws_s3_assets_ceddda9d.AssetOptions(
339
325
  deploy_time=deploy_time,
326
+ display_name=display_name,
340
327
  readers=readers,
341
328
  source_kms_key=source_kms_key,
342
329
  asset_hash=asset_hash,
@@ -450,6 +437,12 @@ class ApplicationCodeConfig:
450
437
  ),
451
438
  code_content_type="codeContentType"
452
439
  ),
440
+ application_encryption_configuration=ApplicationEncryptionConfigurationProperty(
441
+ key_type="keyType",
442
+
443
+ # the properties below are optional
444
+ key_id="keyId"
445
+ ),
453
446
  application_snapshot_configuration=ApplicationSnapshotConfigurationProperty(
454
447
  snapshots_enabled=False
455
448
  ),
@@ -1077,11 +1070,15 @@ class IApplication(
1077
1070
  account: typing.Optional[builtins.str] = None,
1078
1071
  color: typing.Optional[builtins.str] = None,
1079
1072
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
1073
+ id: typing.Optional[builtins.str] = None,
1080
1074
  label: typing.Optional[builtins.str] = None,
1081
1075
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
1082
1076
  region: typing.Optional[builtins.str] = None,
1077
+ stack_account: typing.Optional[builtins.str] = None,
1078
+ stack_region: typing.Optional[builtins.str] = None,
1083
1079
  statistic: typing.Optional[builtins.str] = None,
1084
1080
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
1081
+ visible: typing.Optional[builtins.bool] = None,
1085
1082
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
1086
1083
  '''(experimental) Return a CloudWatch metric associated with this Flink application.
1087
1084
 
@@ -1089,11 +1086,15 @@ class IApplication(
1089
1086
  :param account: Account which this metric comes from. Default: - Deployment account.
1090
1087
  :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
1091
1088
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
1089
+ :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
1092
1090
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
1093
1091
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1094
1092
  :param region: Region which this metric comes from. Default: - Deployment region.
1093
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1094
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1095
1095
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
1096
1096
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
1097
+ :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
1097
1098
 
1098
1099
  :stability: experimental
1099
1100
  '''
@@ -1106,11 +1107,15 @@ class IApplication(
1106
1107
  account: typing.Optional[builtins.str] = None,
1107
1108
  color: typing.Optional[builtins.str] = None,
1108
1109
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
1110
+ id: typing.Optional[builtins.str] = None,
1109
1111
  label: typing.Optional[builtins.str] = None,
1110
1112
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
1111
1113
  region: typing.Optional[builtins.str] = None,
1114
+ stack_account: typing.Optional[builtins.str] = None,
1115
+ stack_region: typing.Optional[builtins.str] = None,
1112
1116
  statistic: typing.Optional[builtins.str] = None,
1113
1117
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
1118
+ visible: typing.Optional[builtins.bool] = None,
1114
1119
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
1115
1120
  '''(experimental) The time (in milliseconds) this task or operator is back pressured per second.
1116
1121
 
@@ -1121,11 +1126,15 @@ class IApplication(
1121
1126
  :param account: Account which this metric comes from. Default: - Deployment account.
1122
1127
  :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
1123
1128
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
1129
+ :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
1124
1130
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
1125
1131
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1126
1132
  :param region: Region which this metric comes from. Default: - Deployment region.
1133
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1134
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1127
1135
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
1128
1136
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
1137
+ :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
1129
1138
 
1130
1139
  :default: - average over 5 minutes
1131
1140
 
@@ -1140,11 +1149,15 @@ class IApplication(
1140
1149
  account: typing.Optional[builtins.str] = None,
1141
1150
  color: typing.Optional[builtins.str] = None,
1142
1151
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
1152
+ id: typing.Optional[builtins.str] = None,
1143
1153
  label: typing.Optional[builtins.str] = None,
1144
1154
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
1145
1155
  region: typing.Optional[builtins.str] = None,
1156
+ stack_account: typing.Optional[builtins.str] = None,
1157
+ stack_region: typing.Optional[builtins.str] = None,
1146
1158
  statistic: typing.Optional[builtins.str] = None,
1147
1159
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
1160
+ visible: typing.Optional[builtins.bool] = None,
1148
1161
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
1149
1162
  '''(experimental) The time (in milliseconds) this task or operator is busy (neither idle nor back pressured) per second.
1150
1163
 
@@ -1158,11 +1171,15 @@ class IApplication(
1158
1171
  :param account: Account which this metric comes from. Default: - Deployment account.
1159
1172
  :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
1160
1173
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
1174
+ :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
1161
1175
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
1162
1176
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1163
1177
  :param region: Region which this metric comes from. Default: - Deployment region.
1178
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1179
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1164
1180
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
1165
1181
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
1182
+ :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
1166
1183
 
1167
1184
  :default: - average over 5 minutes
1168
1185
 
@@ -1177,11 +1194,15 @@ class IApplication(
1177
1194
  account: typing.Optional[builtins.str] = None,
1178
1195
  color: typing.Optional[builtins.str] = None,
1179
1196
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
1197
+ id: typing.Optional[builtins.str] = None,
1180
1198
  label: typing.Optional[builtins.str] = None,
1181
1199
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
1182
1200
  region: typing.Optional[builtins.str] = None,
1201
+ stack_account: typing.Optional[builtins.str] = None,
1202
+ stack_region: typing.Optional[builtins.str] = None,
1183
1203
  statistic: typing.Optional[builtins.str] = None,
1184
1204
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
1205
+ visible: typing.Optional[builtins.bool] = None,
1185
1206
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
1186
1207
  '''(experimental) The overall percentage of CPU utilization across task managers.
1187
1208
 
@@ -1196,11 +1217,15 @@ class IApplication(
1196
1217
  :param account: Account which this metric comes from. Default: - Deployment account.
1197
1218
  :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
1198
1219
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
1220
+ :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
1199
1221
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
1200
1222
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1201
1223
  :param region: Region which this metric comes from. Default: - Deployment region.
1224
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1225
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1202
1226
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
1203
1227
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
1228
+ :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
1204
1229
 
1205
1230
  :default: - average over 5 minutes
1206
1231
 
@@ -1215,11 +1240,15 @@ class IApplication(
1215
1240
  account: typing.Optional[builtins.str] = None,
1216
1241
  color: typing.Optional[builtins.str] = None,
1217
1242
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
1243
+ id: typing.Optional[builtins.str] = None,
1218
1244
  label: typing.Optional[builtins.str] = None,
1219
1245
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
1220
1246
  region: typing.Optional[builtins.str] = None,
1247
+ stack_account: typing.Optional[builtins.str] = None,
1248
+ stack_region: typing.Optional[builtins.str] = None,
1221
1249
  statistic: typing.Optional[builtins.str] = None,
1222
1250
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
1251
+ visible: typing.Optional[builtins.bool] = None,
1223
1252
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
1224
1253
  '''(experimental) The last watermark this application/operator/task/thread has received.
1225
1254
 
@@ -1230,11 +1259,15 @@ class IApplication(
1230
1259
  :param account: Account which this metric comes from. Default: - Deployment account.
1231
1260
  :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
1232
1261
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
1262
+ :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
1233
1263
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
1234
1264
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1235
1265
  :param region: Region which this metric comes from. Default: - Deployment region.
1266
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1267
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1236
1268
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
1237
1269
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
1270
+ :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
1238
1271
 
1239
1272
  :default: - maximum over 5 minutes
1240
1273
 
@@ -1249,11 +1282,15 @@ class IApplication(
1249
1282
  account: typing.Optional[builtins.str] = None,
1250
1283
  color: typing.Optional[builtins.str] = None,
1251
1284
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
1285
+ id: typing.Optional[builtins.str] = None,
1252
1286
  label: typing.Optional[builtins.str] = None,
1253
1287
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
1254
1288
  region: typing.Optional[builtins.str] = None,
1289
+ stack_account: typing.Optional[builtins.str] = None,
1290
+ stack_region: typing.Optional[builtins.str] = None,
1255
1291
  statistic: typing.Optional[builtins.str] = None,
1256
1292
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
1293
+ visible: typing.Optional[builtins.bool] = None,
1257
1294
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
1258
1295
  '''(experimental) The last watermark this application/operator/task/thread has received.
1259
1296
 
@@ -1264,11 +1301,15 @@ class IApplication(
1264
1301
  :param account: Account which this metric comes from. Default: - Deployment account.
1265
1302
  :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
1266
1303
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
1304
+ :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
1267
1305
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
1268
1306
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1269
1307
  :param region: Region which this metric comes from. Default: - Deployment region.
1308
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1309
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1270
1310
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
1271
1311
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
1312
+ :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
1272
1313
 
1273
1314
  :default: - maximum over 5 minutes
1274
1315
 
@@ -1283,11 +1324,15 @@ class IApplication(
1283
1324
  account: typing.Optional[builtins.str] = None,
1284
1325
  color: typing.Optional[builtins.str] = None,
1285
1326
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
1327
+ id: typing.Optional[builtins.str] = None,
1286
1328
  label: typing.Optional[builtins.str] = None,
1287
1329
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
1288
1330
  region: typing.Optional[builtins.str] = None,
1331
+ stack_account: typing.Optional[builtins.str] = None,
1332
+ stack_region: typing.Optional[builtins.str] = None,
1289
1333
  statistic: typing.Optional[builtins.str] = None,
1290
1334
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
1335
+ visible: typing.Optional[builtins.bool] = None,
1291
1336
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
1292
1337
  '''(experimental) The time elapsed during an outage for failing/recovering jobs.
1293
1338
 
@@ -1298,11 +1343,15 @@ class IApplication(
1298
1343
  :param account: Account which this metric comes from. Default: - Deployment account.
1299
1344
  :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
1300
1345
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
1346
+ :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
1301
1347
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
1302
1348
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1303
1349
  :param region: Region which this metric comes from. Default: - Deployment region.
1350
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1351
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1304
1352
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
1305
1353
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
1354
+ :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
1306
1355
 
1307
1356
  :default: - average over 5 minutes
1308
1357
 
@@ -1317,11 +1366,15 @@ class IApplication(
1317
1366
  account: typing.Optional[builtins.str] = None,
1318
1367
  color: typing.Optional[builtins.str] = None,
1319
1368
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
1369
+ id: typing.Optional[builtins.str] = None,
1320
1370
  label: typing.Optional[builtins.str] = None,
1321
1371
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
1322
1372
  region: typing.Optional[builtins.str] = None,
1373
+ stack_account: typing.Optional[builtins.str] = None,
1374
+ stack_region: typing.Optional[builtins.str] = None,
1323
1375
  statistic: typing.Optional[builtins.str] = None,
1324
1376
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
1377
+ visible: typing.Optional[builtins.bool] = None,
1325
1378
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
1326
1379
  '''(experimental) The total number of times this job has fully restarted since it was submitted.
1327
1380
 
@@ -1334,11 +1387,15 @@ class IApplication(
1334
1387
  :param account: Account which this metric comes from. Default: - Deployment account.
1335
1388
  :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
1336
1389
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
1390
+ :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
1337
1391
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
1338
1392
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1339
1393
  :param region: Region which this metric comes from. Default: - Deployment region.
1394
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1395
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1340
1396
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
1341
1397
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
1398
+ :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
1342
1399
 
1343
1400
  :default: - sum over 5 minutes
1344
1401
 
@@ -1353,11 +1410,15 @@ class IApplication(
1353
1410
  account: typing.Optional[builtins.str] = None,
1354
1411
  color: typing.Optional[builtins.str] = None,
1355
1412
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
1413
+ id: typing.Optional[builtins.str] = None,
1356
1414
  label: typing.Optional[builtins.str] = None,
1357
1415
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
1358
1416
  region: typing.Optional[builtins.str] = None,
1417
+ stack_account: typing.Optional[builtins.str] = None,
1418
+ stack_region: typing.Optional[builtins.str] = None,
1359
1419
  statistic: typing.Optional[builtins.str] = None,
1360
1420
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
1421
+ visible: typing.Optional[builtins.bool] = None,
1361
1422
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
1362
1423
  '''(experimental) Overall heap memory utilization across task managers.
1363
1424
 
@@ -1372,11 +1433,15 @@ class IApplication(
1372
1433
  :param account: Account which this metric comes from. Default: - Deployment account.
1373
1434
  :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
1374
1435
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
1436
+ :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
1375
1437
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
1376
1438
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1377
1439
  :param region: Region which this metric comes from. Default: - Deployment region.
1440
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1441
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1378
1442
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
1379
1443
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
1444
+ :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
1380
1445
 
1381
1446
  :default: - average over 5 minutes
1382
1447
 
@@ -1391,11 +1456,15 @@ class IApplication(
1391
1456
  account: typing.Optional[builtins.str] = None,
1392
1457
  color: typing.Optional[builtins.str] = None,
1393
1458
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
1459
+ id: typing.Optional[builtins.str] = None,
1394
1460
  label: typing.Optional[builtins.str] = None,
1395
1461
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
1396
1462
  region: typing.Optional[builtins.str] = None,
1463
+ stack_account: typing.Optional[builtins.str] = None,
1464
+ stack_region: typing.Optional[builtins.str] = None,
1397
1465
  statistic: typing.Optional[builtins.str] = None,
1398
1466
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
1467
+ visible: typing.Optional[builtins.bool] = None,
1399
1468
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
1400
1469
  '''(experimental) The time (in milliseconds) this task or operator is idle (has no data to process) per second.
1401
1470
 
@@ -1409,11 +1478,15 @@ class IApplication(
1409
1478
  :param account: Account which this metric comes from. Default: - Deployment account.
1410
1479
  :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
1411
1480
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
1481
+ :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
1412
1482
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
1413
1483
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1414
1484
  :param region: Region which this metric comes from. Default: - Deployment region.
1485
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1486
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1415
1487
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
1416
1488
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
1489
+ :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
1417
1490
 
1418
1491
  :default: - average over 5 minutes
1419
1492
 
@@ -1428,11 +1501,15 @@ class IApplication(
1428
1501
  account: typing.Optional[builtins.str] = None,
1429
1502
  color: typing.Optional[builtins.str] = None,
1430
1503
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
1504
+ id: typing.Optional[builtins.str] = None,
1431
1505
  label: typing.Optional[builtins.str] = None,
1432
1506
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
1433
1507
  region: typing.Optional[builtins.str] = None,
1508
+ stack_account: typing.Optional[builtins.str] = None,
1509
+ stack_region: typing.Optional[builtins.str] = None,
1434
1510
  statistic: typing.Optional[builtins.str] = None,
1435
1511
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
1512
+ visible: typing.Optional[builtins.bool] = None,
1436
1513
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
1437
1514
  '''(experimental) The number of Kinesis Processing Units that are used to run your stream processing application.
1438
1515
 
@@ -1446,11 +1523,15 @@ class IApplication(
1446
1523
  :param account: Account which this metric comes from. Default: - Deployment account.
1447
1524
  :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
1448
1525
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
1526
+ :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
1449
1527
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
1450
1528
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1451
1529
  :param region: Region which this metric comes from. Default: - Deployment region.
1530
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1531
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1452
1532
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
1453
1533
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
1534
+ :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
1454
1535
 
1455
1536
  :default: - average over 5 minutes
1456
1537
 
@@ -1465,11 +1546,15 @@ class IApplication(
1465
1546
  account: typing.Optional[builtins.str] = None,
1466
1547
  color: typing.Optional[builtins.str] = None,
1467
1548
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
1549
+ id: typing.Optional[builtins.str] = None,
1468
1550
  label: typing.Optional[builtins.str] = None,
1469
1551
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
1470
1552
  region: typing.Optional[builtins.str] = None,
1553
+ stack_account: typing.Optional[builtins.str] = None,
1554
+ stack_region: typing.Optional[builtins.str] = None,
1471
1555
  statistic: typing.Optional[builtins.str] = None,
1472
1556
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
1557
+ visible: typing.Optional[builtins.bool] = None,
1473
1558
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
1474
1559
  '''(experimental) The time it took to complete the last checkpoint.
1475
1560
 
@@ -1480,11 +1565,15 @@ class IApplication(
1480
1565
  :param account: Account which this metric comes from. Default: - Deployment account.
1481
1566
  :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
1482
1567
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
1568
+ :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
1483
1569
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
1484
1570
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1485
1571
  :param region: Region which this metric comes from. Default: - Deployment region.
1572
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1573
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1486
1574
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
1487
1575
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
1576
+ :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
1488
1577
 
1489
1578
  :default: - maximum over 5 minutes
1490
1579
 
@@ -1499,11 +1588,15 @@ class IApplication(
1499
1588
  account: typing.Optional[builtins.str] = None,
1500
1589
  color: typing.Optional[builtins.str] = None,
1501
1590
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
1591
+ id: typing.Optional[builtins.str] = None,
1502
1592
  label: typing.Optional[builtins.str] = None,
1503
1593
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
1504
1594
  region: typing.Optional[builtins.str] = None,
1595
+ stack_account: typing.Optional[builtins.str] = None,
1596
+ stack_region: typing.Optional[builtins.str] = None,
1505
1597
  statistic: typing.Optional[builtins.str] = None,
1506
1598
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
1599
+ visible: typing.Optional[builtins.bool] = None,
1507
1600
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
1508
1601
  '''(experimental) The total size of the last checkpoint.
1509
1602
 
@@ -1514,11 +1607,15 @@ class IApplication(
1514
1607
  :param account: Account which this metric comes from. Default: - Deployment account.
1515
1608
  :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
1516
1609
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
1610
+ :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
1517
1611
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
1518
1612
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1519
1613
  :param region: Region which this metric comes from. Default: - Deployment region.
1614
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1615
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1520
1616
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
1521
1617
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
1618
+ :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
1522
1619
 
1523
1620
  :default: - maximum over 5 minutes
1524
1621
 
@@ -1533,11 +1630,15 @@ class IApplication(
1533
1630
  account: typing.Optional[builtins.str] = None,
1534
1631
  color: typing.Optional[builtins.str] = None,
1535
1632
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
1633
+ id: typing.Optional[builtins.str] = None,
1536
1634
  label: typing.Optional[builtins.str] = None,
1537
1635
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
1538
1636
  region: typing.Optional[builtins.str] = None,
1637
+ stack_account: typing.Optional[builtins.str] = None,
1638
+ stack_region: typing.Optional[builtins.str] = None,
1539
1639
  statistic: typing.Optional[builtins.str] = None,
1540
1640
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
1641
+ visible: typing.Optional[builtins.bool] = None,
1541
1642
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
1542
1643
  '''(experimental) The total amount of managed memory.
1543
1644
 
@@ -1548,11 +1649,15 @@ class IApplication(
1548
1649
  :param account: Account which this metric comes from. Default: - Deployment account.
1549
1650
  :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
1550
1651
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
1652
+ :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
1551
1653
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
1552
1654
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1553
1655
  :param region: Region which this metric comes from. Default: - Deployment region.
1656
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1657
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1554
1658
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
1555
1659
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
1660
+ :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
1556
1661
 
1557
1662
  :default: - average over 5 minutes
1558
1663
 
@@ -1567,11 +1672,15 @@ class IApplication(
1567
1672
  account: typing.Optional[builtins.str] = None,
1568
1673
  color: typing.Optional[builtins.str] = None,
1569
1674
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
1675
+ id: typing.Optional[builtins.str] = None,
1570
1676
  label: typing.Optional[builtins.str] = None,
1571
1677
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
1572
1678
  region: typing.Optional[builtins.str] = None,
1679
+ stack_account: typing.Optional[builtins.str] = None,
1680
+ stack_region: typing.Optional[builtins.str] = None,
1573
1681
  statistic: typing.Optional[builtins.str] = None,
1574
1682
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
1683
+ visible: typing.Optional[builtins.bool] = None,
1575
1684
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
1576
1685
  '''(experimental) The amount of managed memory currently used.
1577
1686
 
@@ -1582,11 +1691,15 @@ class IApplication(
1582
1691
  :param account: Account which this metric comes from. Default: - Deployment account.
1583
1692
  :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
1584
1693
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
1694
+ :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
1585
1695
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
1586
1696
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1587
1697
  :param region: Region which this metric comes from. Default: - Deployment region.
1698
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1699
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1588
1700
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
1589
1701
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
1702
+ :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
1590
1703
 
1591
1704
  :default: - average over 5 minutes
1592
1705
 
@@ -1601,11 +1714,15 @@ class IApplication(
1601
1714
  account: typing.Optional[builtins.str] = None,
1602
1715
  color: typing.Optional[builtins.str] = None,
1603
1716
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
1717
+ id: typing.Optional[builtins.str] = None,
1604
1718
  label: typing.Optional[builtins.str] = None,
1605
1719
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
1606
1720
  region: typing.Optional[builtins.str] = None,
1721
+ stack_account: typing.Optional[builtins.str] = None,
1722
+ stack_region: typing.Optional[builtins.str] = None,
1607
1723
  statistic: typing.Optional[builtins.str] = None,
1608
1724
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
1725
+ visible: typing.Optional[builtins.bool] = None,
1609
1726
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
1610
1727
  '''(experimental) Derived from managedMemoryUsed/managedMemoryTotal.
1611
1728
 
@@ -1616,11 +1733,15 @@ class IApplication(
1616
1733
  :param account: Account which this metric comes from. Default: - Deployment account.
1617
1734
  :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
1618
1735
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
1736
+ :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
1619
1737
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
1620
1738
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1621
1739
  :param region: Region which this metric comes from. Default: - Deployment region.
1740
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1741
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1622
1742
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
1623
1743
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
1744
+ :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
1624
1745
 
1625
1746
  :default: - average over 5 minutes
1626
1747
 
@@ -1635,11 +1756,15 @@ class IApplication(
1635
1756
  account: typing.Optional[builtins.str] = None,
1636
1757
  color: typing.Optional[builtins.str] = None,
1637
1758
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
1759
+ id: typing.Optional[builtins.str] = None,
1638
1760
  label: typing.Optional[builtins.str] = None,
1639
1761
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
1640
1762
  region: typing.Optional[builtins.str] = None,
1763
+ stack_account: typing.Optional[builtins.str] = None,
1764
+ stack_region: typing.Optional[builtins.str] = None,
1641
1765
  statistic: typing.Optional[builtins.str] = None,
1642
1766
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
1767
+ visible: typing.Optional[builtins.bool] = None,
1643
1768
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
1644
1769
  '''(experimental) The number of times checkpointing has failed.
1645
1770
 
@@ -1650,11 +1775,15 @@ class IApplication(
1650
1775
  :param account: Account which this metric comes from. Default: - Deployment account.
1651
1776
  :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
1652
1777
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
1778
+ :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
1653
1779
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
1654
1780
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1655
1781
  :param region: Region which this metric comes from. Default: - Deployment region.
1782
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1783
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1656
1784
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
1657
1785
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
1786
+ :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
1658
1787
 
1659
1788
  :default: - sum over 5 minutes
1660
1789
 
@@ -1669,11 +1798,15 @@ class IApplication(
1669
1798
  account: typing.Optional[builtins.str] = None,
1670
1799
  color: typing.Optional[builtins.str] = None,
1671
1800
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
1801
+ id: typing.Optional[builtins.str] = None,
1672
1802
  label: typing.Optional[builtins.str] = None,
1673
1803
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
1674
1804
  region: typing.Optional[builtins.str] = None,
1805
+ stack_account: typing.Optional[builtins.str] = None,
1806
+ stack_region: typing.Optional[builtins.str] = None,
1675
1807
  statistic: typing.Optional[builtins.str] = None,
1676
1808
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
1809
+ visible: typing.Optional[builtins.bool] = None,
1677
1810
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
1678
1811
  '''(experimental) The number of records this operator or task has dropped due to arriving late.
1679
1812
 
@@ -1684,11 +1817,15 @@ class IApplication(
1684
1817
  :param account: Account which this metric comes from. Default: - Deployment account.
1685
1818
  :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
1686
1819
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
1820
+ :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
1687
1821
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
1688
1822
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1689
1823
  :param region: Region which this metric comes from. Default: - Deployment region.
1824
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1825
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1690
1826
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
1691
1827
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
1828
+ :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
1692
1829
 
1693
1830
  :default: - sum over 5 minutes
1694
1831
 
@@ -1703,11 +1840,15 @@ class IApplication(
1703
1840
  account: typing.Optional[builtins.str] = None,
1704
1841
  color: typing.Optional[builtins.str] = None,
1705
1842
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
1843
+ id: typing.Optional[builtins.str] = None,
1706
1844
  label: typing.Optional[builtins.str] = None,
1707
1845
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
1708
1846
  region: typing.Optional[builtins.str] = None,
1847
+ stack_account: typing.Optional[builtins.str] = None,
1848
+ stack_region: typing.Optional[builtins.str] = None,
1709
1849
  statistic: typing.Optional[builtins.str] = None,
1710
1850
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
1851
+ visible: typing.Optional[builtins.bool] = None,
1711
1852
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
1712
1853
  '''(experimental) The total number of records this application, operator, or task has received.
1713
1854
 
@@ -1718,11 +1859,15 @@ class IApplication(
1718
1859
  :param account: Account which this metric comes from. Default: - Deployment account.
1719
1860
  :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
1720
1861
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
1862
+ :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
1721
1863
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
1722
1864
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1723
1865
  :param region: Region which this metric comes from. Default: - Deployment region.
1866
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1867
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1724
1868
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
1725
1869
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
1870
+ :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
1726
1871
 
1727
1872
  :default: - average over 5 minutes
1728
1873
 
@@ -1737,11 +1882,15 @@ class IApplication(
1737
1882
  account: typing.Optional[builtins.str] = None,
1738
1883
  color: typing.Optional[builtins.str] = None,
1739
1884
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
1885
+ id: typing.Optional[builtins.str] = None,
1740
1886
  label: typing.Optional[builtins.str] = None,
1741
1887
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
1742
1888
  region: typing.Optional[builtins.str] = None,
1889
+ stack_account: typing.Optional[builtins.str] = None,
1890
+ stack_region: typing.Optional[builtins.str] = None,
1743
1891
  statistic: typing.Optional[builtins.str] = None,
1744
1892
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
1893
+ visible: typing.Optional[builtins.bool] = None,
1745
1894
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
1746
1895
  '''(experimental) The total number of records this application, operator or task has received per second.
1747
1896
 
@@ -1752,11 +1901,15 @@ class IApplication(
1752
1901
  :param account: Account which this metric comes from. Default: - Deployment account.
1753
1902
  :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
1754
1903
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
1904
+ :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
1755
1905
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
1756
1906
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1757
1907
  :param region: Region which this metric comes from. Default: - Deployment region.
1908
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1909
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1758
1910
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
1759
1911
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
1912
+ :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
1760
1913
 
1761
1914
  :default: - average over 5 minutes
1762
1915
 
@@ -1771,11 +1924,15 @@ class IApplication(
1771
1924
  account: typing.Optional[builtins.str] = None,
1772
1925
  color: typing.Optional[builtins.str] = None,
1773
1926
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
1927
+ id: typing.Optional[builtins.str] = None,
1774
1928
  label: typing.Optional[builtins.str] = None,
1775
1929
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
1776
1930
  region: typing.Optional[builtins.str] = None,
1931
+ stack_account: typing.Optional[builtins.str] = None,
1932
+ stack_region: typing.Optional[builtins.str] = None,
1777
1933
  statistic: typing.Optional[builtins.str] = None,
1778
1934
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
1935
+ visible: typing.Optional[builtins.bool] = None,
1779
1936
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
1780
1937
  '''(experimental) The total number of records this application, operator or task has emitted.
1781
1938
 
@@ -1786,11 +1943,15 @@ class IApplication(
1786
1943
  :param account: Account which this metric comes from. Default: - Deployment account.
1787
1944
  :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
1788
1945
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
1946
+ :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
1789
1947
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
1790
1948
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1791
1949
  :param region: Region which this metric comes from. Default: - Deployment region.
1950
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1951
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1792
1952
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
1793
1953
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
1954
+ :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
1794
1955
 
1795
1956
  :default: - average over 5 minutes
1796
1957
 
@@ -1805,11 +1966,15 @@ class IApplication(
1805
1966
  account: typing.Optional[builtins.str] = None,
1806
1967
  color: typing.Optional[builtins.str] = None,
1807
1968
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
1969
+ id: typing.Optional[builtins.str] = None,
1808
1970
  label: typing.Optional[builtins.str] = None,
1809
1971
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
1810
1972
  region: typing.Optional[builtins.str] = None,
1973
+ stack_account: typing.Optional[builtins.str] = None,
1974
+ stack_region: typing.Optional[builtins.str] = None,
1811
1975
  statistic: typing.Optional[builtins.str] = None,
1812
1976
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
1977
+ visible: typing.Optional[builtins.bool] = None,
1813
1978
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
1814
1979
  '''(experimental) The total number of records this application, operator or task has emitted per second.
1815
1980
 
@@ -1820,11 +1985,15 @@ class IApplication(
1820
1985
  :param account: Account which this metric comes from. Default: - Deployment account.
1821
1986
  :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
1822
1987
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
1988
+ :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
1823
1989
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
1824
1990
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1825
1991
  :param region: Region which this metric comes from. Default: - Deployment region.
1992
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
1993
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1826
1994
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
1827
1995
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
1996
+ :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
1828
1997
 
1829
1998
  :default: - average over 5 minutes
1830
1999
 
@@ -1839,11 +2008,15 @@ class IApplication(
1839
2008
  account: typing.Optional[builtins.str] = None,
1840
2009
  color: typing.Optional[builtins.str] = None,
1841
2010
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
2011
+ id: typing.Optional[builtins.str] = None,
1842
2012
  label: typing.Optional[builtins.str] = None,
1843
2013
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
1844
2014
  region: typing.Optional[builtins.str] = None,
2015
+ stack_account: typing.Optional[builtins.str] = None,
2016
+ stack_region: typing.Optional[builtins.str] = None,
1845
2017
  statistic: typing.Optional[builtins.str] = None,
1846
2018
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
2019
+ visible: typing.Optional[builtins.bool] = None,
1847
2020
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
1848
2021
  '''(experimental) The total number of old garbage collection operations that have occurred across all task managers.
1849
2022
 
@@ -1854,11 +2027,15 @@ class IApplication(
1854
2027
  :param account: Account which this metric comes from. Default: - Deployment account.
1855
2028
  :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
1856
2029
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
2030
+ :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
1857
2031
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
1858
2032
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1859
2033
  :param region: Region which this metric comes from. Default: - Deployment region.
2034
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2035
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1860
2036
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
1861
2037
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
2038
+ :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
1862
2039
 
1863
2040
  :default: - sum over 5 minutes
1864
2041
 
@@ -1873,11 +2050,15 @@ class IApplication(
1873
2050
  account: typing.Optional[builtins.str] = None,
1874
2051
  color: typing.Optional[builtins.str] = None,
1875
2052
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
2053
+ id: typing.Optional[builtins.str] = None,
1876
2054
  label: typing.Optional[builtins.str] = None,
1877
2055
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
1878
2056
  region: typing.Optional[builtins.str] = None,
2057
+ stack_account: typing.Optional[builtins.str] = None,
2058
+ stack_region: typing.Optional[builtins.str] = None,
1879
2059
  statistic: typing.Optional[builtins.str] = None,
1880
2060
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
2061
+ visible: typing.Optional[builtins.bool] = None,
1881
2062
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
1882
2063
  '''(experimental) The total time spent performing old garbage collection operations.
1883
2064
 
@@ -1888,11 +2069,15 @@ class IApplication(
1888
2069
  :param account: Account which this metric comes from. Default: - Deployment account.
1889
2070
  :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
1890
2071
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
2072
+ :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
1891
2073
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
1892
2074
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1893
2075
  :param region: Region which this metric comes from. Default: - Deployment region.
2076
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2077
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1894
2078
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
1895
2079
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
2080
+ :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
1896
2081
 
1897
2082
  :default: - sum over 5 minutes
1898
2083
 
@@ -1907,11 +2092,15 @@ class IApplication(
1907
2092
  account: typing.Optional[builtins.str] = None,
1908
2093
  color: typing.Optional[builtins.str] = None,
1909
2094
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
2095
+ id: typing.Optional[builtins.str] = None,
1910
2096
  label: typing.Optional[builtins.str] = None,
1911
2097
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
1912
2098
  region: typing.Optional[builtins.str] = None,
2099
+ stack_account: typing.Optional[builtins.str] = None,
2100
+ stack_region: typing.Optional[builtins.str] = None,
1913
2101
  statistic: typing.Optional[builtins.str] = None,
1914
2102
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
2103
+ visible: typing.Optional[builtins.bool] = None,
1915
2104
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
1916
2105
  '''(experimental) The total number of live threads used by the application.
1917
2106
 
@@ -1922,11 +2111,15 @@ class IApplication(
1922
2111
  :param account: Account which this metric comes from. Default: - Deployment account.
1923
2112
  :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
1924
2113
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
2114
+ :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
1925
2115
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
1926
2116
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1927
2117
  :param region: Region which this metric comes from. Default: - Deployment region.
2118
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2119
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1928
2120
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
1929
2121
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
2122
+ :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
1930
2123
 
1931
2124
  :default: - average over 5 minutes
1932
2125
 
@@ -1941,11 +2134,15 @@ class IApplication(
1941
2134
  account: typing.Optional[builtins.str] = None,
1942
2135
  color: typing.Optional[builtins.str] = None,
1943
2136
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
2137
+ id: typing.Optional[builtins.str] = None,
1944
2138
  label: typing.Optional[builtins.str] = None,
1945
2139
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
1946
2140
  region: typing.Optional[builtins.str] = None,
2141
+ stack_account: typing.Optional[builtins.str] = None,
2142
+ stack_region: typing.Optional[builtins.str] = None,
1947
2143
  statistic: typing.Optional[builtins.str] = None,
1948
2144
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
2145
+ visible: typing.Optional[builtins.bool] = None,
1949
2146
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
1950
2147
  '''(experimental) The time that the job has been running without interruption.
1951
2148
 
@@ -1956,11 +2153,15 @@ class IApplication(
1956
2153
  :param account: Account which this metric comes from. Default: - Deployment account.
1957
2154
  :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
1958
2155
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
2156
+ :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
1959
2157
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
1960
2158
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
1961
2159
  :param region: Region which this metric comes from. Default: - Deployment region.
2160
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2161
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
1962
2162
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
1963
2163
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
2164
+ :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
1964
2165
 
1965
2166
  :default: - sample count over 5 minutes
1966
2167
 
@@ -2034,11 +2235,15 @@ class _IApplicationProxy(
2034
2235
  account: typing.Optional[builtins.str] = None,
2035
2236
  color: typing.Optional[builtins.str] = None,
2036
2237
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
2238
+ id: typing.Optional[builtins.str] = None,
2037
2239
  label: typing.Optional[builtins.str] = None,
2038
2240
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
2039
2241
  region: typing.Optional[builtins.str] = None,
2242
+ stack_account: typing.Optional[builtins.str] = None,
2243
+ stack_region: typing.Optional[builtins.str] = None,
2040
2244
  statistic: typing.Optional[builtins.str] = None,
2041
2245
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
2246
+ visible: typing.Optional[builtins.bool] = None,
2042
2247
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
2043
2248
  '''(experimental) Return a CloudWatch metric associated with this Flink application.
2044
2249
 
@@ -2046,11 +2251,15 @@ class _IApplicationProxy(
2046
2251
  :param account: Account which this metric comes from. Default: - Deployment account.
2047
2252
  :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
2048
2253
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
2254
+ :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
2049
2255
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
2050
2256
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2051
2257
  :param region: Region which this metric comes from. Default: - Deployment region.
2258
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2259
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2052
2260
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
2053
2261
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
2262
+ :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
2054
2263
 
2055
2264
  :stability: experimental
2056
2265
  '''
@@ -2061,11 +2270,15 @@ class _IApplicationProxy(
2061
2270
  account=account,
2062
2271
  color=color,
2063
2272
  dimensions_map=dimensions_map,
2273
+ id=id,
2064
2274
  label=label,
2065
2275
  period=period,
2066
2276
  region=region,
2277
+ stack_account=stack_account,
2278
+ stack_region=stack_region,
2067
2279
  statistic=statistic,
2068
2280
  unit=unit,
2281
+ visible=visible,
2069
2282
  )
2070
2283
 
2071
2284
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metric", [metric_name, props]))
@@ -2077,11 +2290,15 @@ class _IApplicationProxy(
2077
2290
  account: typing.Optional[builtins.str] = None,
2078
2291
  color: typing.Optional[builtins.str] = None,
2079
2292
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
2293
+ id: typing.Optional[builtins.str] = None,
2080
2294
  label: typing.Optional[builtins.str] = None,
2081
2295
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
2082
2296
  region: typing.Optional[builtins.str] = None,
2297
+ stack_account: typing.Optional[builtins.str] = None,
2298
+ stack_region: typing.Optional[builtins.str] = None,
2083
2299
  statistic: typing.Optional[builtins.str] = None,
2084
2300
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
2301
+ visible: typing.Optional[builtins.bool] = None,
2085
2302
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
2086
2303
  '''(experimental) The time (in milliseconds) this task or operator is back pressured per second.
2087
2304
 
@@ -2092,11 +2309,15 @@ class _IApplicationProxy(
2092
2309
  :param account: Account which this metric comes from. Default: - Deployment account.
2093
2310
  :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
2094
2311
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
2312
+ :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
2095
2313
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
2096
2314
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2097
2315
  :param region: Region which this metric comes from. Default: - Deployment region.
2316
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2317
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2098
2318
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
2099
2319
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
2320
+ :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
2100
2321
 
2101
2322
  :default: - average over 5 minutes
2102
2323
 
@@ -2106,11 +2327,15 @@ class _IApplicationProxy(
2106
2327
  account=account,
2107
2328
  color=color,
2108
2329
  dimensions_map=dimensions_map,
2330
+ id=id,
2109
2331
  label=label,
2110
2332
  period=period,
2111
2333
  region=region,
2334
+ stack_account=stack_account,
2335
+ stack_region=stack_region,
2112
2336
  statistic=statistic,
2113
2337
  unit=unit,
2338
+ visible=visible,
2114
2339
  )
2115
2340
 
2116
2341
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricBackPressuredTimeMsPerSecond", [props]))
@@ -2122,11 +2347,15 @@ class _IApplicationProxy(
2122
2347
  account: typing.Optional[builtins.str] = None,
2123
2348
  color: typing.Optional[builtins.str] = None,
2124
2349
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
2350
+ id: typing.Optional[builtins.str] = None,
2125
2351
  label: typing.Optional[builtins.str] = None,
2126
2352
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
2127
2353
  region: typing.Optional[builtins.str] = None,
2354
+ stack_account: typing.Optional[builtins.str] = None,
2355
+ stack_region: typing.Optional[builtins.str] = None,
2128
2356
  statistic: typing.Optional[builtins.str] = None,
2129
2357
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
2358
+ visible: typing.Optional[builtins.bool] = None,
2130
2359
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
2131
2360
  '''(experimental) The time (in milliseconds) this task or operator is busy (neither idle nor back pressured) per second.
2132
2361
 
@@ -2140,11 +2369,15 @@ class _IApplicationProxy(
2140
2369
  :param account: Account which this metric comes from. Default: - Deployment account.
2141
2370
  :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
2142
2371
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
2372
+ :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
2143
2373
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
2144
2374
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2145
2375
  :param region: Region which this metric comes from. Default: - Deployment region.
2376
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2377
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2146
2378
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
2147
2379
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
2380
+ :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
2148
2381
 
2149
2382
  :default: - average over 5 minutes
2150
2383
 
@@ -2154,11 +2387,15 @@ class _IApplicationProxy(
2154
2387
  account=account,
2155
2388
  color=color,
2156
2389
  dimensions_map=dimensions_map,
2390
+ id=id,
2157
2391
  label=label,
2158
2392
  period=period,
2159
2393
  region=region,
2394
+ stack_account=stack_account,
2395
+ stack_region=stack_region,
2160
2396
  statistic=statistic,
2161
2397
  unit=unit,
2398
+ visible=visible,
2162
2399
  )
2163
2400
 
2164
2401
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricBusyTimePerMsPerSecond", [props]))
@@ -2170,11 +2407,15 @@ class _IApplicationProxy(
2170
2407
  account: typing.Optional[builtins.str] = None,
2171
2408
  color: typing.Optional[builtins.str] = None,
2172
2409
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
2410
+ id: typing.Optional[builtins.str] = None,
2173
2411
  label: typing.Optional[builtins.str] = None,
2174
2412
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
2175
2413
  region: typing.Optional[builtins.str] = None,
2414
+ stack_account: typing.Optional[builtins.str] = None,
2415
+ stack_region: typing.Optional[builtins.str] = None,
2176
2416
  statistic: typing.Optional[builtins.str] = None,
2177
2417
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
2418
+ visible: typing.Optional[builtins.bool] = None,
2178
2419
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
2179
2420
  '''(experimental) The overall percentage of CPU utilization across task managers.
2180
2421
 
@@ -2189,11 +2430,15 @@ class _IApplicationProxy(
2189
2430
  :param account: Account which this metric comes from. Default: - Deployment account.
2190
2431
  :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
2191
2432
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
2433
+ :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
2192
2434
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
2193
2435
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2194
2436
  :param region: Region which this metric comes from. Default: - Deployment region.
2437
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2438
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2195
2439
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
2196
2440
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
2441
+ :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
2197
2442
 
2198
2443
  :default: - average over 5 minutes
2199
2444
 
@@ -2203,11 +2448,15 @@ class _IApplicationProxy(
2203
2448
  account=account,
2204
2449
  color=color,
2205
2450
  dimensions_map=dimensions_map,
2451
+ id=id,
2206
2452
  label=label,
2207
2453
  period=period,
2208
2454
  region=region,
2455
+ stack_account=stack_account,
2456
+ stack_region=stack_region,
2209
2457
  statistic=statistic,
2210
2458
  unit=unit,
2459
+ visible=visible,
2211
2460
  )
2212
2461
 
2213
2462
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricCpuUtilization", [props]))
@@ -2219,11 +2468,15 @@ class _IApplicationProxy(
2219
2468
  account: typing.Optional[builtins.str] = None,
2220
2469
  color: typing.Optional[builtins.str] = None,
2221
2470
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
2471
+ id: typing.Optional[builtins.str] = None,
2222
2472
  label: typing.Optional[builtins.str] = None,
2223
2473
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
2224
2474
  region: typing.Optional[builtins.str] = None,
2475
+ stack_account: typing.Optional[builtins.str] = None,
2476
+ stack_region: typing.Optional[builtins.str] = None,
2225
2477
  statistic: typing.Optional[builtins.str] = None,
2226
2478
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
2479
+ visible: typing.Optional[builtins.bool] = None,
2227
2480
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
2228
2481
  '''(experimental) The last watermark this application/operator/task/thread has received.
2229
2482
 
@@ -2234,11 +2487,15 @@ class _IApplicationProxy(
2234
2487
  :param account: Account which this metric comes from. Default: - Deployment account.
2235
2488
  :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
2236
2489
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
2490
+ :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
2237
2491
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
2238
2492
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2239
2493
  :param region: Region which this metric comes from. Default: - Deployment region.
2494
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2495
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2240
2496
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
2241
2497
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
2498
+ :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
2242
2499
 
2243
2500
  :default: - maximum over 5 minutes
2244
2501
 
@@ -2248,11 +2505,15 @@ class _IApplicationProxy(
2248
2505
  account=account,
2249
2506
  color=color,
2250
2507
  dimensions_map=dimensions_map,
2508
+ id=id,
2251
2509
  label=label,
2252
2510
  period=period,
2253
2511
  region=region,
2512
+ stack_account=stack_account,
2513
+ stack_region=stack_region,
2254
2514
  statistic=statistic,
2255
2515
  unit=unit,
2516
+ visible=visible,
2256
2517
  )
2257
2518
 
2258
2519
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricCurrentInputWatermark", [props]))
@@ -2264,11 +2525,15 @@ class _IApplicationProxy(
2264
2525
  account: typing.Optional[builtins.str] = None,
2265
2526
  color: typing.Optional[builtins.str] = None,
2266
2527
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
2528
+ id: typing.Optional[builtins.str] = None,
2267
2529
  label: typing.Optional[builtins.str] = None,
2268
2530
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
2269
2531
  region: typing.Optional[builtins.str] = None,
2532
+ stack_account: typing.Optional[builtins.str] = None,
2533
+ stack_region: typing.Optional[builtins.str] = None,
2270
2534
  statistic: typing.Optional[builtins.str] = None,
2271
2535
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
2536
+ visible: typing.Optional[builtins.bool] = None,
2272
2537
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
2273
2538
  '''(experimental) The last watermark this application/operator/task/thread has received.
2274
2539
 
@@ -2279,11 +2544,15 @@ class _IApplicationProxy(
2279
2544
  :param account: Account which this metric comes from. Default: - Deployment account.
2280
2545
  :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
2281
2546
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
2547
+ :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
2282
2548
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
2283
2549
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2284
2550
  :param region: Region which this metric comes from. Default: - Deployment region.
2551
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2552
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2285
2553
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
2286
2554
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
2555
+ :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
2287
2556
 
2288
2557
  :default: - maximum over 5 minutes
2289
2558
 
@@ -2293,11 +2562,15 @@ class _IApplicationProxy(
2293
2562
  account=account,
2294
2563
  color=color,
2295
2564
  dimensions_map=dimensions_map,
2565
+ id=id,
2296
2566
  label=label,
2297
2567
  period=period,
2298
2568
  region=region,
2569
+ stack_account=stack_account,
2570
+ stack_region=stack_region,
2299
2571
  statistic=statistic,
2300
2572
  unit=unit,
2573
+ visible=visible,
2301
2574
  )
2302
2575
 
2303
2576
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricCurrentOutputWatermark", [props]))
@@ -2309,11 +2582,15 @@ class _IApplicationProxy(
2309
2582
  account: typing.Optional[builtins.str] = None,
2310
2583
  color: typing.Optional[builtins.str] = None,
2311
2584
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
2585
+ id: typing.Optional[builtins.str] = None,
2312
2586
  label: typing.Optional[builtins.str] = None,
2313
2587
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
2314
2588
  region: typing.Optional[builtins.str] = None,
2589
+ stack_account: typing.Optional[builtins.str] = None,
2590
+ stack_region: typing.Optional[builtins.str] = None,
2315
2591
  statistic: typing.Optional[builtins.str] = None,
2316
2592
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
2593
+ visible: typing.Optional[builtins.bool] = None,
2317
2594
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
2318
2595
  '''(experimental) The time elapsed during an outage for failing/recovering jobs.
2319
2596
 
@@ -2324,11 +2601,15 @@ class _IApplicationProxy(
2324
2601
  :param account: Account which this metric comes from. Default: - Deployment account.
2325
2602
  :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
2326
2603
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
2604
+ :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
2327
2605
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
2328
2606
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2329
2607
  :param region: Region which this metric comes from. Default: - Deployment region.
2608
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2609
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2330
2610
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
2331
2611
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
2612
+ :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
2332
2613
 
2333
2614
  :default: - average over 5 minutes
2334
2615
 
@@ -2338,11 +2619,15 @@ class _IApplicationProxy(
2338
2619
  account=account,
2339
2620
  color=color,
2340
2621
  dimensions_map=dimensions_map,
2622
+ id=id,
2341
2623
  label=label,
2342
2624
  period=period,
2343
2625
  region=region,
2626
+ stack_account=stack_account,
2627
+ stack_region=stack_region,
2344
2628
  statistic=statistic,
2345
2629
  unit=unit,
2630
+ visible=visible,
2346
2631
  )
2347
2632
 
2348
2633
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricDowntime", [props]))
@@ -2354,11 +2639,15 @@ class _IApplicationProxy(
2354
2639
  account: typing.Optional[builtins.str] = None,
2355
2640
  color: typing.Optional[builtins.str] = None,
2356
2641
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
2642
+ id: typing.Optional[builtins.str] = None,
2357
2643
  label: typing.Optional[builtins.str] = None,
2358
2644
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
2359
2645
  region: typing.Optional[builtins.str] = None,
2646
+ stack_account: typing.Optional[builtins.str] = None,
2647
+ stack_region: typing.Optional[builtins.str] = None,
2360
2648
  statistic: typing.Optional[builtins.str] = None,
2361
2649
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
2650
+ visible: typing.Optional[builtins.bool] = None,
2362
2651
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
2363
2652
  '''(experimental) The total number of times this job has fully restarted since it was submitted.
2364
2653
 
@@ -2371,11 +2660,15 @@ class _IApplicationProxy(
2371
2660
  :param account: Account which this metric comes from. Default: - Deployment account.
2372
2661
  :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
2373
2662
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
2663
+ :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
2374
2664
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
2375
2665
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2376
2666
  :param region: Region which this metric comes from. Default: - Deployment region.
2667
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2668
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2377
2669
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
2378
2670
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
2671
+ :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
2379
2672
 
2380
2673
  :default: - sum over 5 minutes
2381
2674
 
@@ -2385,11 +2678,15 @@ class _IApplicationProxy(
2385
2678
  account=account,
2386
2679
  color=color,
2387
2680
  dimensions_map=dimensions_map,
2681
+ id=id,
2388
2682
  label=label,
2389
2683
  period=period,
2390
2684
  region=region,
2685
+ stack_account=stack_account,
2686
+ stack_region=stack_region,
2391
2687
  statistic=statistic,
2392
2688
  unit=unit,
2689
+ visible=visible,
2393
2690
  )
2394
2691
 
2395
2692
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricFullRestarts", [props]))
@@ -2401,11 +2698,15 @@ class _IApplicationProxy(
2401
2698
  account: typing.Optional[builtins.str] = None,
2402
2699
  color: typing.Optional[builtins.str] = None,
2403
2700
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
2701
+ id: typing.Optional[builtins.str] = None,
2404
2702
  label: typing.Optional[builtins.str] = None,
2405
2703
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
2406
2704
  region: typing.Optional[builtins.str] = None,
2705
+ stack_account: typing.Optional[builtins.str] = None,
2706
+ stack_region: typing.Optional[builtins.str] = None,
2407
2707
  statistic: typing.Optional[builtins.str] = None,
2408
2708
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
2709
+ visible: typing.Optional[builtins.bool] = None,
2409
2710
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
2410
2711
  '''(experimental) Overall heap memory utilization across task managers.
2411
2712
 
@@ -2420,11 +2721,15 @@ class _IApplicationProxy(
2420
2721
  :param account: Account which this metric comes from. Default: - Deployment account.
2421
2722
  :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
2422
2723
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
2724
+ :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
2423
2725
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
2424
2726
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2425
2727
  :param region: Region which this metric comes from. Default: - Deployment region.
2728
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2729
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2426
2730
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
2427
2731
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
2732
+ :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
2428
2733
 
2429
2734
  :default: - average over 5 minutes
2430
2735
 
@@ -2434,11 +2739,15 @@ class _IApplicationProxy(
2434
2739
  account=account,
2435
2740
  color=color,
2436
2741
  dimensions_map=dimensions_map,
2742
+ id=id,
2437
2743
  label=label,
2438
2744
  period=period,
2439
2745
  region=region,
2746
+ stack_account=stack_account,
2747
+ stack_region=stack_region,
2440
2748
  statistic=statistic,
2441
2749
  unit=unit,
2750
+ visible=visible,
2442
2751
  )
2443
2752
 
2444
2753
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricHeapMemoryUtilization", [props]))
@@ -2450,11 +2759,15 @@ class _IApplicationProxy(
2450
2759
  account: typing.Optional[builtins.str] = None,
2451
2760
  color: typing.Optional[builtins.str] = None,
2452
2761
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
2762
+ id: typing.Optional[builtins.str] = None,
2453
2763
  label: typing.Optional[builtins.str] = None,
2454
2764
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
2455
2765
  region: typing.Optional[builtins.str] = None,
2766
+ stack_account: typing.Optional[builtins.str] = None,
2767
+ stack_region: typing.Optional[builtins.str] = None,
2456
2768
  statistic: typing.Optional[builtins.str] = None,
2457
2769
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
2770
+ visible: typing.Optional[builtins.bool] = None,
2458
2771
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
2459
2772
  '''(experimental) The time (in milliseconds) this task or operator is idle (has no data to process) per second.
2460
2773
 
@@ -2468,11 +2781,15 @@ class _IApplicationProxy(
2468
2781
  :param account: Account which this metric comes from. Default: - Deployment account.
2469
2782
  :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
2470
2783
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
2784
+ :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
2471
2785
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
2472
2786
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2473
2787
  :param region: Region which this metric comes from. Default: - Deployment region.
2788
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2789
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2474
2790
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
2475
2791
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
2792
+ :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
2476
2793
 
2477
2794
  :default: - average over 5 minutes
2478
2795
 
@@ -2482,11 +2799,15 @@ class _IApplicationProxy(
2482
2799
  account=account,
2483
2800
  color=color,
2484
2801
  dimensions_map=dimensions_map,
2802
+ id=id,
2485
2803
  label=label,
2486
2804
  period=period,
2487
2805
  region=region,
2806
+ stack_account=stack_account,
2807
+ stack_region=stack_region,
2488
2808
  statistic=statistic,
2489
2809
  unit=unit,
2810
+ visible=visible,
2490
2811
  )
2491
2812
 
2492
2813
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricIdleTimeMsPerSecond", [props]))
@@ -2498,11 +2819,15 @@ class _IApplicationProxy(
2498
2819
  account: typing.Optional[builtins.str] = None,
2499
2820
  color: typing.Optional[builtins.str] = None,
2500
2821
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
2822
+ id: typing.Optional[builtins.str] = None,
2501
2823
  label: typing.Optional[builtins.str] = None,
2502
2824
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
2503
2825
  region: typing.Optional[builtins.str] = None,
2826
+ stack_account: typing.Optional[builtins.str] = None,
2827
+ stack_region: typing.Optional[builtins.str] = None,
2504
2828
  statistic: typing.Optional[builtins.str] = None,
2505
2829
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
2830
+ visible: typing.Optional[builtins.bool] = None,
2506
2831
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
2507
2832
  '''(experimental) The number of Kinesis Processing Units that are used to run your stream processing application.
2508
2833
 
@@ -2516,11 +2841,15 @@ class _IApplicationProxy(
2516
2841
  :param account: Account which this metric comes from. Default: - Deployment account.
2517
2842
  :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
2518
2843
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
2844
+ :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
2519
2845
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
2520
2846
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2521
2847
  :param region: Region which this metric comes from. Default: - Deployment region.
2848
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2849
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2522
2850
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
2523
2851
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
2852
+ :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
2524
2853
 
2525
2854
  :default: - average over 5 minutes
2526
2855
 
@@ -2530,11 +2859,15 @@ class _IApplicationProxy(
2530
2859
  account=account,
2531
2860
  color=color,
2532
2861
  dimensions_map=dimensions_map,
2862
+ id=id,
2533
2863
  label=label,
2534
2864
  period=period,
2535
2865
  region=region,
2866
+ stack_account=stack_account,
2867
+ stack_region=stack_region,
2536
2868
  statistic=statistic,
2537
2869
  unit=unit,
2870
+ visible=visible,
2538
2871
  )
2539
2872
 
2540
2873
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricKpus", [props]))
@@ -2546,11 +2879,15 @@ class _IApplicationProxy(
2546
2879
  account: typing.Optional[builtins.str] = None,
2547
2880
  color: typing.Optional[builtins.str] = None,
2548
2881
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
2882
+ id: typing.Optional[builtins.str] = None,
2549
2883
  label: typing.Optional[builtins.str] = None,
2550
2884
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
2551
2885
  region: typing.Optional[builtins.str] = None,
2886
+ stack_account: typing.Optional[builtins.str] = None,
2887
+ stack_region: typing.Optional[builtins.str] = None,
2552
2888
  statistic: typing.Optional[builtins.str] = None,
2553
2889
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
2890
+ visible: typing.Optional[builtins.bool] = None,
2554
2891
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
2555
2892
  '''(experimental) The time it took to complete the last checkpoint.
2556
2893
 
@@ -2561,11 +2898,15 @@ class _IApplicationProxy(
2561
2898
  :param account: Account which this metric comes from. Default: - Deployment account.
2562
2899
  :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
2563
2900
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
2901
+ :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
2564
2902
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
2565
2903
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2566
2904
  :param region: Region which this metric comes from. Default: - Deployment region.
2905
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2906
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2567
2907
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
2568
2908
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
2909
+ :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
2569
2910
 
2570
2911
  :default: - maximum over 5 minutes
2571
2912
 
@@ -2575,11 +2916,15 @@ class _IApplicationProxy(
2575
2916
  account=account,
2576
2917
  color=color,
2577
2918
  dimensions_map=dimensions_map,
2919
+ id=id,
2578
2920
  label=label,
2579
2921
  period=period,
2580
2922
  region=region,
2923
+ stack_account=stack_account,
2924
+ stack_region=stack_region,
2581
2925
  statistic=statistic,
2582
2926
  unit=unit,
2927
+ visible=visible,
2583
2928
  )
2584
2929
 
2585
2930
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricLastCheckpointDuration", [props]))
@@ -2591,11 +2936,15 @@ class _IApplicationProxy(
2591
2936
  account: typing.Optional[builtins.str] = None,
2592
2937
  color: typing.Optional[builtins.str] = None,
2593
2938
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
2939
+ id: typing.Optional[builtins.str] = None,
2594
2940
  label: typing.Optional[builtins.str] = None,
2595
2941
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
2596
2942
  region: typing.Optional[builtins.str] = None,
2943
+ stack_account: typing.Optional[builtins.str] = None,
2944
+ stack_region: typing.Optional[builtins.str] = None,
2597
2945
  statistic: typing.Optional[builtins.str] = None,
2598
2946
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
2947
+ visible: typing.Optional[builtins.bool] = None,
2599
2948
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
2600
2949
  '''(experimental) The total size of the last checkpoint.
2601
2950
 
@@ -2606,11 +2955,15 @@ class _IApplicationProxy(
2606
2955
  :param account: Account which this metric comes from. Default: - Deployment account.
2607
2956
  :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
2608
2957
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
2958
+ :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
2609
2959
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
2610
2960
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2611
2961
  :param region: Region which this metric comes from. Default: - Deployment region.
2962
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
2963
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2612
2964
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
2613
2965
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
2966
+ :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
2614
2967
 
2615
2968
  :default: - maximum over 5 minutes
2616
2969
 
@@ -2620,11 +2973,15 @@ class _IApplicationProxy(
2620
2973
  account=account,
2621
2974
  color=color,
2622
2975
  dimensions_map=dimensions_map,
2976
+ id=id,
2623
2977
  label=label,
2624
2978
  period=period,
2625
2979
  region=region,
2980
+ stack_account=stack_account,
2981
+ stack_region=stack_region,
2626
2982
  statistic=statistic,
2627
2983
  unit=unit,
2984
+ visible=visible,
2628
2985
  )
2629
2986
 
2630
2987
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricLastCheckpointSize", [props]))
@@ -2636,11 +2993,15 @@ class _IApplicationProxy(
2636
2993
  account: typing.Optional[builtins.str] = None,
2637
2994
  color: typing.Optional[builtins.str] = None,
2638
2995
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
2996
+ id: typing.Optional[builtins.str] = None,
2639
2997
  label: typing.Optional[builtins.str] = None,
2640
2998
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
2641
2999
  region: typing.Optional[builtins.str] = None,
3000
+ stack_account: typing.Optional[builtins.str] = None,
3001
+ stack_region: typing.Optional[builtins.str] = None,
2642
3002
  statistic: typing.Optional[builtins.str] = None,
2643
3003
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
3004
+ visible: typing.Optional[builtins.bool] = None,
2644
3005
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
2645
3006
  '''(experimental) The total amount of managed memory.
2646
3007
 
@@ -2651,11 +3012,15 @@ class _IApplicationProxy(
2651
3012
  :param account: Account which this metric comes from. Default: - Deployment account.
2652
3013
  :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
2653
3014
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
3015
+ :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
2654
3016
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
2655
3017
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2656
3018
  :param region: Region which this metric comes from. Default: - Deployment region.
3019
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
3020
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2657
3021
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
2658
3022
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
3023
+ :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
2659
3024
 
2660
3025
  :default: - average over 5 minutes
2661
3026
 
@@ -2665,11 +3030,15 @@ class _IApplicationProxy(
2665
3030
  account=account,
2666
3031
  color=color,
2667
3032
  dimensions_map=dimensions_map,
3033
+ id=id,
2668
3034
  label=label,
2669
3035
  period=period,
2670
3036
  region=region,
3037
+ stack_account=stack_account,
3038
+ stack_region=stack_region,
2671
3039
  statistic=statistic,
2672
3040
  unit=unit,
3041
+ visible=visible,
2673
3042
  )
2674
3043
 
2675
3044
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricManagedMemoryTotal", [props]))
@@ -2681,11 +3050,15 @@ class _IApplicationProxy(
2681
3050
  account: typing.Optional[builtins.str] = None,
2682
3051
  color: typing.Optional[builtins.str] = None,
2683
3052
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
3053
+ id: typing.Optional[builtins.str] = None,
2684
3054
  label: typing.Optional[builtins.str] = None,
2685
3055
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
2686
3056
  region: typing.Optional[builtins.str] = None,
3057
+ stack_account: typing.Optional[builtins.str] = None,
3058
+ stack_region: typing.Optional[builtins.str] = None,
2687
3059
  statistic: typing.Optional[builtins.str] = None,
2688
3060
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
3061
+ visible: typing.Optional[builtins.bool] = None,
2689
3062
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
2690
3063
  '''(experimental) The amount of managed memory currently used.
2691
3064
 
@@ -2696,11 +3069,15 @@ class _IApplicationProxy(
2696
3069
  :param account: Account which this metric comes from. Default: - Deployment account.
2697
3070
  :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
2698
3071
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
3072
+ :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
2699
3073
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
2700
3074
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2701
3075
  :param region: Region which this metric comes from. Default: - Deployment region.
3076
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
3077
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2702
3078
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
2703
3079
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
3080
+ :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
2704
3081
 
2705
3082
  :default: - average over 5 minutes
2706
3083
 
@@ -2710,11 +3087,15 @@ class _IApplicationProxy(
2710
3087
  account=account,
2711
3088
  color=color,
2712
3089
  dimensions_map=dimensions_map,
3090
+ id=id,
2713
3091
  label=label,
2714
3092
  period=period,
2715
3093
  region=region,
3094
+ stack_account=stack_account,
3095
+ stack_region=stack_region,
2716
3096
  statistic=statistic,
2717
3097
  unit=unit,
3098
+ visible=visible,
2718
3099
  )
2719
3100
 
2720
3101
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricManagedMemoryUsed", [props]))
@@ -2726,11 +3107,15 @@ class _IApplicationProxy(
2726
3107
  account: typing.Optional[builtins.str] = None,
2727
3108
  color: typing.Optional[builtins.str] = None,
2728
3109
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
3110
+ id: typing.Optional[builtins.str] = None,
2729
3111
  label: typing.Optional[builtins.str] = None,
2730
3112
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
2731
3113
  region: typing.Optional[builtins.str] = None,
3114
+ stack_account: typing.Optional[builtins.str] = None,
3115
+ stack_region: typing.Optional[builtins.str] = None,
2732
3116
  statistic: typing.Optional[builtins.str] = None,
2733
3117
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
3118
+ visible: typing.Optional[builtins.bool] = None,
2734
3119
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
2735
3120
  '''(experimental) Derived from managedMemoryUsed/managedMemoryTotal.
2736
3121
 
@@ -2741,11 +3126,15 @@ class _IApplicationProxy(
2741
3126
  :param account: Account which this metric comes from. Default: - Deployment account.
2742
3127
  :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
2743
3128
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
3129
+ :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
2744
3130
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
2745
3131
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2746
3132
  :param region: Region which this metric comes from. Default: - Deployment region.
3133
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
3134
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2747
3135
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
2748
3136
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
3137
+ :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
2749
3138
 
2750
3139
  :default: - average over 5 minutes
2751
3140
 
@@ -2755,11 +3144,15 @@ class _IApplicationProxy(
2755
3144
  account=account,
2756
3145
  color=color,
2757
3146
  dimensions_map=dimensions_map,
3147
+ id=id,
2758
3148
  label=label,
2759
3149
  period=period,
2760
3150
  region=region,
3151
+ stack_account=stack_account,
3152
+ stack_region=stack_region,
2761
3153
  statistic=statistic,
2762
3154
  unit=unit,
3155
+ visible=visible,
2763
3156
  )
2764
3157
 
2765
3158
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricManagedMemoryUtilization", [props]))
@@ -2771,11 +3164,15 @@ class _IApplicationProxy(
2771
3164
  account: typing.Optional[builtins.str] = None,
2772
3165
  color: typing.Optional[builtins.str] = None,
2773
3166
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
3167
+ id: typing.Optional[builtins.str] = None,
2774
3168
  label: typing.Optional[builtins.str] = None,
2775
3169
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
2776
3170
  region: typing.Optional[builtins.str] = None,
3171
+ stack_account: typing.Optional[builtins.str] = None,
3172
+ stack_region: typing.Optional[builtins.str] = None,
2777
3173
  statistic: typing.Optional[builtins.str] = None,
2778
3174
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
3175
+ visible: typing.Optional[builtins.bool] = None,
2779
3176
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
2780
3177
  '''(experimental) The number of times checkpointing has failed.
2781
3178
 
@@ -2786,11 +3183,15 @@ class _IApplicationProxy(
2786
3183
  :param account: Account which this metric comes from. Default: - Deployment account.
2787
3184
  :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
2788
3185
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
3186
+ :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
2789
3187
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
2790
3188
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2791
3189
  :param region: Region which this metric comes from. Default: - Deployment region.
3190
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
3191
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2792
3192
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
2793
3193
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
3194
+ :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
2794
3195
 
2795
3196
  :default: - sum over 5 minutes
2796
3197
 
@@ -2800,11 +3201,15 @@ class _IApplicationProxy(
2800
3201
  account=account,
2801
3202
  color=color,
2802
3203
  dimensions_map=dimensions_map,
3204
+ id=id,
2803
3205
  label=label,
2804
3206
  period=period,
2805
3207
  region=region,
3208
+ stack_account=stack_account,
3209
+ stack_region=stack_region,
2806
3210
  statistic=statistic,
2807
3211
  unit=unit,
3212
+ visible=visible,
2808
3213
  )
2809
3214
 
2810
3215
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricNumberOfFailedCheckpoints", [props]))
@@ -2816,11 +3221,15 @@ class _IApplicationProxy(
2816
3221
  account: typing.Optional[builtins.str] = None,
2817
3222
  color: typing.Optional[builtins.str] = None,
2818
3223
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
3224
+ id: typing.Optional[builtins.str] = None,
2819
3225
  label: typing.Optional[builtins.str] = None,
2820
3226
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
2821
3227
  region: typing.Optional[builtins.str] = None,
3228
+ stack_account: typing.Optional[builtins.str] = None,
3229
+ stack_region: typing.Optional[builtins.str] = None,
2822
3230
  statistic: typing.Optional[builtins.str] = None,
2823
3231
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
3232
+ visible: typing.Optional[builtins.bool] = None,
2824
3233
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
2825
3234
  '''(experimental) The number of records this operator or task has dropped due to arriving late.
2826
3235
 
@@ -2831,11 +3240,15 @@ class _IApplicationProxy(
2831
3240
  :param account: Account which this metric comes from. Default: - Deployment account.
2832
3241
  :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
2833
3242
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
3243
+ :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
2834
3244
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
2835
3245
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2836
3246
  :param region: Region which this metric comes from. Default: - Deployment region.
3247
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
3248
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2837
3249
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
2838
3250
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
3251
+ :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
2839
3252
 
2840
3253
  :default: - sum over 5 minutes
2841
3254
 
@@ -2845,11 +3258,15 @@ class _IApplicationProxy(
2845
3258
  account=account,
2846
3259
  color=color,
2847
3260
  dimensions_map=dimensions_map,
3261
+ id=id,
2848
3262
  label=label,
2849
3263
  period=period,
2850
3264
  region=region,
3265
+ stack_account=stack_account,
3266
+ stack_region=stack_region,
2851
3267
  statistic=statistic,
2852
3268
  unit=unit,
3269
+ visible=visible,
2853
3270
  )
2854
3271
 
2855
3272
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricNumLateRecordsDropped", [props]))
@@ -2861,11 +3278,15 @@ class _IApplicationProxy(
2861
3278
  account: typing.Optional[builtins.str] = None,
2862
3279
  color: typing.Optional[builtins.str] = None,
2863
3280
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
3281
+ id: typing.Optional[builtins.str] = None,
2864
3282
  label: typing.Optional[builtins.str] = None,
2865
3283
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
2866
3284
  region: typing.Optional[builtins.str] = None,
3285
+ stack_account: typing.Optional[builtins.str] = None,
3286
+ stack_region: typing.Optional[builtins.str] = None,
2867
3287
  statistic: typing.Optional[builtins.str] = None,
2868
3288
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
3289
+ visible: typing.Optional[builtins.bool] = None,
2869
3290
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
2870
3291
  '''(experimental) The total number of records this application, operator, or task has received.
2871
3292
 
@@ -2876,11 +3297,15 @@ class _IApplicationProxy(
2876
3297
  :param account: Account which this metric comes from. Default: - Deployment account.
2877
3298
  :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
2878
3299
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
3300
+ :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
2879
3301
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
2880
3302
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2881
3303
  :param region: Region which this metric comes from. Default: - Deployment region.
3304
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
3305
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2882
3306
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
2883
3307
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
3308
+ :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
2884
3309
 
2885
3310
  :default: - average over 5 minutes
2886
3311
 
@@ -2890,11 +3315,15 @@ class _IApplicationProxy(
2890
3315
  account=account,
2891
3316
  color=color,
2892
3317
  dimensions_map=dimensions_map,
3318
+ id=id,
2893
3319
  label=label,
2894
3320
  period=period,
2895
3321
  region=region,
3322
+ stack_account=stack_account,
3323
+ stack_region=stack_region,
2896
3324
  statistic=statistic,
2897
3325
  unit=unit,
3326
+ visible=visible,
2898
3327
  )
2899
3328
 
2900
3329
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricNumRecordsIn", [props]))
@@ -2906,11 +3335,15 @@ class _IApplicationProxy(
2906
3335
  account: typing.Optional[builtins.str] = None,
2907
3336
  color: typing.Optional[builtins.str] = None,
2908
3337
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
3338
+ id: typing.Optional[builtins.str] = None,
2909
3339
  label: typing.Optional[builtins.str] = None,
2910
3340
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
2911
3341
  region: typing.Optional[builtins.str] = None,
3342
+ stack_account: typing.Optional[builtins.str] = None,
3343
+ stack_region: typing.Optional[builtins.str] = None,
2912
3344
  statistic: typing.Optional[builtins.str] = None,
2913
3345
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
3346
+ visible: typing.Optional[builtins.bool] = None,
2914
3347
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
2915
3348
  '''(experimental) The total number of records this application, operator or task has received per second.
2916
3349
 
@@ -2921,11 +3354,15 @@ class _IApplicationProxy(
2921
3354
  :param account: Account which this metric comes from. Default: - Deployment account.
2922
3355
  :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
2923
3356
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
3357
+ :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
2924
3358
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
2925
3359
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2926
3360
  :param region: Region which this metric comes from. Default: - Deployment region.
3361
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
3362
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2927
3363
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
2928
3364
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
3365
+ :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
2929
3366
 
2930
3367
  :default: - average over 5 minutes
2931
3368
 
@@ -2935,11 +3372,15 @@ class _IApplicationProxy(
2935
3372
  account=account,
2936
3373
  color=color,
2937
3374
  dimensions_map=dimensions_map,
3375
+ id=id,
2938
3376
  label=label,
2939
3377
  period=period,
2940
3378
  region=region,
3379
+ stack_account=stack_account,
3380
+ stack_region=stack_region,
2941
3381
  statistic=statistic,
2942
3382
  unit=unit,
3383
+ visible=visible,
2943
3384
  )
2944
3385
 
2945
3386
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricNumRecordsInPerSecond", [props]))
@@ -2951,11 +3392,15 @@ class _IApplicationProxy(
2951
3392
  account: typing.Optional[builtins.str] = None,
2952
3393
  color: typing.Optional[builtins.str] = None,
2953
3394
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
3395
+ id: typing.Optional[builtins.str] = None,
2954
3396
  label: typing.Optional[builtins.str] = None,
2955
3397
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
2956
3398
  region: typing.Optional[builtins.str] = None,
3399
+ stack_account: typing.Optional[builtins.str] = None,
3400
+ stack_region: typing.Optional[builtins.str] = None,
2957
3401
  statistic: typing.Optional[builtins.str] = None,
2958
3402
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
3403
+ visible: typing.Optional[builtins.bool] = None,
2959
3404
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
2960
3405
  '''(experimental) The total number of records this application, operator or task has emitted.
2961
3406
 
@@ -2966,11 +3411,15 @@ class _IApplicationProxy(
2966
3411
  :param account: Account which this metric comes from. Default: - Deployment account.
2967
3412
  :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
2968
3413
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
3414
+ :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
2969
3415
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
2970
3416
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
2971
3417
  :param region: Region which this metric comes from. Default: - Deployment region.
3418
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
3419
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
2972
3420
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
2973
3421
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
3422
+ :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
2974
3423
 
2975
3424
  :default: - average over 5 minutes
2976
3425
 
@@ -2980,11 +3429,15 @@ class _IApplicationProxy(
2980
3429
  account=account,
2981
3430
  color=color,
2982
3431
  dimensions_map=dimensions_map,
3432
+ id=id,
2983
3433
  label=label,
2984
3434
  period=period,
2985
3435
  region=region,
3436
+ stack_account=stack_account,
3437
+ stack_region=stack_region,
2986
3438
  statistic=statistic,
2987
3439
  unit=unit,
3440
+ visible=visible,
2988
3441
  )
2989
3442
 
2990
3443
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricNumRecordsOut", [props]))
@@ -2996,11 +3449,15 @@ class _IApplicationProxy(
2996
3449
  account: typing.Optional[builtins.str] = None,
2997
3450
  color: typing.Optional[builtins.str] = None,
2998
3451
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
3452
+ id: typing.Optional[builtins.str] = None,
2999
3453
  label: typing.Optional[builtins.str] = None,
3000
3454
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
3001
3455
  region: typing.Optional[builtins.str] = None,
3456
+ stack_account: typing.Optional[builtins.str] = None,
3457
+ stack_region: typing.Optional[builtins.str] = None,
3002
3458
  statistic: typing.Optional[builtins.str] = None,
3003
3459
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
3460
+ visible: typing.Optional[builtins.bool] = None,
3004
3461
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
3005
3462
  '''(experimental) The total number of records this application, operator or task has emitted per second.
3006
3463
 
@@ -3011,11 +3468,15 @@ class _IApplicationProxy(
3011
3468
  :param account: Account which this metric comes from. Default: - Deployment account.
3012
3469
  :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
3013
3470
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
3471
+ :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
3014
3472
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
3015
3473
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
3016
3474
  :param region: Region which this metric comes from. Default: - Deployment region.
3475
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
3476
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
3017
3477
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
3018
3478
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
3479
+ :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
3019
3480
 
3020
3481
  :default: - average over 5 minutes
3021
3482
 
@@ -3025,11 +3486,15 @@ class _IApplicationProxy(
3025
3486
  account=account,
3026
3487
  color=color,
3027
3488
  dimensions_map=dimensions_map,
3489
+ id=id,
3028
3490
  label=label,
3029
3491
  period=period,
3030
3492
  region=region,
3493
+ stack_account=stack_account,
3494
+ stack_region=stack_region,
3031
3495
  statistic=statistic,
3032
3496
  unit=unit,
3497
+ visible=visible,
3033
3498
  )
3034
3499
 
3035
3500
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricNumRecordsOutPerSecond", [props]))
@@ -3041,11 +3506,15 @@ class _IApplicationProxy(
3041
3506
  account: typing.Optional[builtins.str] = None,
3042
3507
  color: typing.Optional[builtins.str] = None,
3043
3508
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
3509
+ id: typing.Optional[builtins.str] = None,
3044
3510
  label: typing.Optional[builtins.str] = None,
3045
3511
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
3046
3512
  region: typing.Optional[builtins.str] = None,
3513
+ stack_account: typing.Optional[builtins.str] = None,
3514
+ stack_region: typing.Optional[builtins.str] = None,
3047
3515
  statistic: typing.Optional[builtins.str] = None,
3048
3516
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
3517
+ visible: typing.Optional[builtins.bool] = None,
3049
3518
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
3050
3519
  '''(experimental) The total number of old garbage collection operations that have occurred across all task managers.
3051
3520
 
@@ -3056,11 +3525,15 @@ class _IApplicationProxy(
3056
3525
  :param account: Account which this metric comes from. Default: - Deployment account.
3057
3526
  :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
3058
3527
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
3528
+ :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
3059
3529
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
3060
3530
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
3061
3531
  :param region: Region which this metric comes from. Default: - Deployment region.
3532
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
3533
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
3062
3534
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
3063
3535
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
3536
+ :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
3064
3537
 
3065
3538
  :default: - sum over 5 minutes
3066
3539
 
@@ -3070,11 +3543,15 @@ class _IApplicationProxy(
3070
3543
  account=account,
3071
3544
  color=color,
3072
3545
  dimensions_map=dimensions_map,
3546
+ id=id,
3073
3547
  label=label,
3074
3548
  period=period,
3075
3549
  region=region,
3550
+ stack_account=stack_account,
3551
+ stack_region=stack_region,
3076
3552
  statistic=statistic,
3077
3553
  unit=unit,
3554
+ visible=visible,
3078
3555
  )
3079
3556
 
3080
3557
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricOldGenerationGCCount", [props]))
@@ -3086,11 +3563,15 @@ class _IApplicationProxy(
3086
3563
  account: typing.Optional[builtins.str] = None,
3087
3564
  color: typing.Optional[builtins.str] = None,
3088
3565
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
3566
+ id: typing.Optional[builtins.str] = None,
3089
3567
  label: typing.Optional[builtins.str] = None,
3090
3568
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
3091
3569
  region: typing.Optional[builtins.str] = None,
3570
+ stack_account: typing.Optional[builtins.str] = None,
3571
+ stack_region: typing.Optional[builtins.str] = None,
3092
3572
  statistic: typing.Optional[builtins.str] = None,
3093
3573
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
3574
+ visible: typing.Optional[builtins.bool] = None,
3094
3575
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
3095
3576
  '''(experimental) The total time spent performing old garbage collection operations.
3096
3577
 
@@ -3101,11 +3582,15 @@ class _IApplicationProxy(
3101
3582
  :param account: Account which this metric comes from. Default: - Deployment account.
3102
3583
  :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
3103
3584
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
3585
+ :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
3104
3586
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
3105
3587
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
3106
3588
  :param region: Region which this metric comes from. Default: - Deployment region.
3589
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
3590
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
3107
3591
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
3108
3592
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
3593
+ :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
3109
3594
 
3110
3595
  :default: - sum over 5 minutes
3111
3596
 
@@ -3115,11 +3600,15 @@ class _IApplicationProxy(
3115
3600
  account=account,
3116
3601
  color=color,
3117
3602
  dimensions_map=dimensions_map,
3603
+ id=id,
3118
3604
  label=label,
3119
3605
  period=period,
3120
3606
  region=region,
3607
+ stack_account=stack_account,
3608
+ stack_region=stack_region,
3121
3609
  statistic=statistic,
3122
3610
  unit=unit,
3611
+ visible=visible,
3123
3612
  )
3124
3613
 
3125
3614
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricOldGenerationGCTime", [props]))
@@ -3131,11 +3620,15 @@ class _IApplicationProxy(
3131
3620
  account: typing.Optional[builtins.str] = None,
3132
3621
  color: typing.Optional[builtins.str] = None,
3133
3622
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
3623
+ id: typing.Optional[builtins.str] = None,
3134
3624
  label: typing.Optional[builtins.str] = None,
3135
3625
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
3136
3626
  region: typing.Optional[builtins.str] = None,
3627
+ stack_account: typing.Optional[builtins.str] = None,
3628
+ stack_region: typing.Optional[builtins.str] = None,
3137
3629
  statistic: typing.Optional[builtins.str] = None,
3138
3630
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
3631
+ visible: typing.Optional[builtins.bool] = None,
3139
3632
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
3140
3633
  '''(experimental) The total number of live threads used by the application.
3141
3634
 
@@ -3146,11 +3639,15 @@ class _IApplicationProxy(
3146
3639
  :param account: Account which this metric comes from. Default: - Deployment account.
3147
3640
  :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
3148
3641
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
3642
+ :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
3149
3643
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
3150
3644
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
3151
3645
  :param region: Region which this metric comes from. Default: - Deployment region.
3646
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
3647
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
3152
3648
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
3153
3649
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
3650
+ :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
3154
3651
 
3155
3652
  :default: - average over 5 minutes
3156
3653
 
@@ -3160,11 +3657,15 @@ class _IApplicationProxy(
3160
3657
  account=account,
3161
3658
  color=color,
3162
3659
  dimensions_map=dimensions_map,
3660
+ id=id,
3163
3661
  label=label,
3164
3662
  period=period,
3165
3663
  region=region,
3664
+ stack_account=stack_account,
3665
+ stack_region=stack_region,
3166
3666
  statistic=statistic,
3167
3667
  unit=unit,
3668
+ visible=visible,
3168
3669
  )
3169
3670
 
3170
3671
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricThreadsCount", [props]))
@@ -3176,11 +3677,15 @@ class _IApplicationProxy(
3176
3677
  account: typing.Optional[builtins.str] = None,
3177
3678
  color: typing.Optional[builtins.str] = None,
3178
3679
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
3680
+ id: typing.Optional[builtins.str] = None,
3179
3681
  label: typing.Optional[builtins.str] = None,
3180
3682
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
3181
3683
  region: typing.Optional[builtins.str] = None,
3684
+ stack_account: typing.Optional[builtins.str] = None,
3685
+ stack_region: typing.Optional[builtins.str] = None,
3182
3686
  statistic: typing.Optional[builtins.str] = None,
3183
3687
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
3688
+ visible: typing.Optional[builtins.bool] = None,
3184
3689
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
3185
3690
  '''(experimental) The time that the job has been running without interruption.
3186
3691
 
@@ -3191,11 +3696,15 @@ class _IApplicationProxy(
3191
3696
  :param account: Account which this metric comes from. Default: - Deployment account.
3192
3697
  :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
3193
3698
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
3699
+ :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
3194
3700
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
3195
3701
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
3196
3702
  :param region: Region which this metric comes from. Default: - Deployment region.
3703
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
3704
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
3197
3705
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
3198
3706
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
3707
+ :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
3199
3708
 
3200
3709
  :default: - sample count over 5 minutes
3201
3710
 
@@ -3205,11 +3714,15 @@ class _IApplicationProxy(
3205
3714
  account=account,
3206
3715
  color=color,
3207
3716
  dimensions_map=dimensions_map,
3717
+ id=id,
3208
3718
  label=label,
3209
3719
  period=period,
3210
3720
  region=region,
3721
+ stack_account=stack_account,
3722
+ stack_region=stack_region,
3211
3723
  statistic=statistic,
3212
3724
  unit=unit,
3725
+ visible=visible,
3213
3726
  )
3214
3727
 
3215
3728
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricUptime", [props]))
@@ -3467,6 +3980,42 @@ class Runtime(
3467
3980
  '''
3468
3981
  return typing.cast("Runtime", jsii.sget(cls, "FLINK_1_8"))
3469
3982
 
3983
+ @jsii.python.classproperty
3984
+ @jsii.member(jsii_name="SQL_1_0")
3985
+ def SQL_1_0(cls) -> "Runtime":
3986
+ '''(experimental) SQL Version 1.0.
3987
+
3988
+ :stability: experimental
3989
+ '''
3990
+ return typing.cast("Runtime", jsii.sget(cls, "SQL_1_0"))
3991
+
3992
+ @jsii.python.classproperty
3993
+ @jsii.member(jsii_name="ZEPPELIN_FLINK_1_0")
3994
+ def ZEPPELIN_FLINK_1_0(cls) -> "Runtime":
3995
+ '''(experimental) Zeppelin Flink Version 1.0.
3996
+
3997
+ :stability: experimental
3998
+ '''
3999
+ return typing.cast("Runtime", jsii.sget(cls, "ZEPPELIN_FLINK_1_0"))
4000
+
4001
+ @jsii.python.classproperty
4002
+ @jsii.member(jsii_name="ZEPPELIN_FLINK_2_0")
4003
+ def ZEPPELIN_FLINK_2_0(cls) -> "Runtime":
4004
+ '''(experimental) Zeppelin Flink Version 2.0.
4005
+
4006
+ :stability: experimental
4007
+ '''
4008
+ return typing.cast("Runtime", jsii.sget(cls, "ZEPPELIN_FLINK_2_0"))
4009
+
4010
+ @jsii.python.classproperty
4011
+ @jsii.member(jsii_name="ZEPPELIN_FLINK_3_0")
4012
+ def ZEPPELIN_FLINK_3_0(cls) -> "Runtime":
4013
+ '''(experimental) Zeppelin Flink Version 3.0.
4014
+
4015
+ :stability: experimental
4016
+ '''
4017
+ return typing.cast("Runtime", jsii.sget(cls, "ZEPPELIN_FLINK_3_0"))
4018
+
3470
4019
  @builtins.property
3471
4020
  @jsii.member(jsii_name="value")
3472
4021
  def value(self) -> builtins.str:
@@ -3683,11 +4232,15 @@ class Application(
3683
4232
  account: typing.Optional[builtins.str] = None,
3684
4233
  color: typing.Optional[builtins.str] = None,
3685
4234
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
4235
+ id: typing.Optional[builtins.str] = None,
3686
4236
  label: typing.Optional[builtins.str] = None,
3687
4237
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
3688
4238
  region: typing.Optional[builtins.str] = None,
4239
+ stack_account: typing.Optional[builtins.str] = None,
4240
+ stack_region: typing.Optional[builtins.str] = None,
3689
4241
  statistic: typing.Optional[builtins.str] = None,
3690
4242
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
4243
+ visible: typing.Optional[builtins.bool] = None,
3691
4244
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
3692
4245
  '''(experimental) Return a CloudWatch metric associated with this Flink application.
3693
4246
 
@@ -3695,11 +4248,15 @@ class Application(
3695
4248
  :param account: Account which this metric comes from. Default: - Deployment account.
3696
4249
  :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
3697
4250
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
4251
+ :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
3698
4252
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
3699
4253
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
3700
4254
  :param region: Region which this metric comes from. Default: - Deployment region.
4255
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
4256
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
3701
4257
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
3702
4258
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
4259
+ :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
3703
4260
 
3704
4261
  :stability: experimental
3705
4262
  '''
@@ -3710,11 +4267,15 @@ class Application(
3710
4267
  account=account,
3711
4268
  color=color,
3712
4269
  dimensions_map=dimensions_map,
4270
+ id=id,
3713
4271
  label=label,
3714
4272
  period=period,
3715
4273
  region=region,
4274
+ stack_account=stack_account,
4275
+ stack_region=stack_region,
3716
4276
  statistic=statistic,
3717
4277
  unit=unit,
4278
+ visible=visible,
3718
4279
  )
3719
4280
 
3720
4281
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metric", [metric_name, props]))
@@ -3726,11 +4287,15 @@ class Application(
3726
4287
  account: typing.Optional[builtins.str] = None,
3727
4288
  color: typing.Optional[builtins.str] = None,
3728
4289
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
4290
+ id: typing.Optional[builtins.str] = None,
3729
4291
  label: typing.Optional[builtins.str] = None,
3730
4292
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
3731
4293
  region: typing.Optional[builtins.str] = None,
4294
+ stack_account: typing.Optional[builtins.str] = None,
4295
+ stack_region: typing.Optional[builtins.str] = None,
3732
4296
  statistic: typing.Optional[builtins.str] = None,
3733
4297
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
4298
+ visible: typing.Optional[builtins.bool] = None,
3734
4299
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
3735
4300
  '''(experimental) The time (in milliseconds) this task or operator is back pressured per second.
3736
4301
 
@@ -3741,11 +4306,15 @@ class Application(
3741
4306
  :param account: Account which this metric comes from. Default: - Deployment account.
3742
4307
  :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
3743
4308
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
4309
+ :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
3744
4310
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
3745
4311
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
3746
4312
  :param region: Region which this metric comes from. Default: - Deployment region.
4313
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
4314
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
3747
4315
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
3748
4316
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
4317
+ :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
3749
4318
 
3750
4319
  :default: - average over 5 minutes
3751
4320
 
@@ -3755,11 +4324,15 @@ class Application(
3755
4324
  account=account,
3756
4325
  color=color,
3757
4326
  dimensions_map=dimensions_map,
4327
+ id=id,
3758
4328
  label=label,
3759
4329
  period=period,
3760
4330
  region=region,
4331
+ stack_account=stack_account,
4332
+ stack_region=stack_region,
3761
4333
  statistic=statistic,
3762
4334
  unit=unit,
4335
+ visible=visible,
3763
4336
  )
3764
4337
 
3765
4338
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricBackPressuredTimeMsPerSecond", [props]))
@@ -3771,11 +4344,15 @@ class Application(
3771
4344
  account: typing.Optional[builtins.str] = None,
3772
4345
  color: typing.Optional[builtins.str] = None,
3773
4346
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
4347
+ id: typing.Optional[builtins.str] = None,
3774
4348
  label: typing.Optional[builtins.str] = None,
3775
4349
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
3776
4350
  region: typing.Optional[builtins.str] = None,
4351
+ stack_account: typing.Optional[builtins.str] = None,
4352
+ stack_region: typing.Optional[builtins.str] = None,
3777
4353
  statistic: typing.Optional[builtins.str] = None,
3778
4354
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
4355
+ visible: typing.Optional[builtins.bool] = None,
3779
4356
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
3780
4357
  '''(experimental) The time (in milliseconds) this task or operator is busy (neither idle nor back pressured) per second.
3781
4358
 
@@ -3789,11 +4366,15 @@ class Application(
3789
4366
  :param account: Account which this metric comes from. Default: - Deployment account.
3790
4367
  :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
3791
4368
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
4369
+ :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
3792
4370
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
3793
4371
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
3794
4372
  :param region: Region which this metric comes from. Default: - Deployment region.
4373
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
4374
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
3795
4375
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
3796
4376
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
4377
+ :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
3797
4378
 
3798
4379
  :default: - average over 5 minutes
3799
4380
 
@@ -3803,11 +4384,15 @@ class Application(
3803
4384
  account=account,
3804
4385
  color=color,
3805
4386
  dimensions_map=dimensions_map,
4387
+ id=id,
3806
4388
  label=label,
3807
4389
  period=period,
3808
4390
  region=region,
4391
+ stack_account=stack_account,
4392
+ stack_region=stack_region,
3809
4393
  statistic=statistic,
3810
4394
  unit=unit,
4395
+ visible=visible,
3811
4396
  )
3812
4397
 
3813
4398
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricBusyTimePerMsPerSecond", [props]))
@@ -3819,11 +4404,15 @@ class Application(
3819
4404
  account: typing.Optional[builtins.str] = None,
3820
4405
  color: typing.Optional[builtins.str] = None,
3821
4406
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
4407
+ id: typing.Optional[builtins.str] = None,
3822
4408
  label: typing.Optional[builtins.str] = None,
3823
4409
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
3824
4410
  region: typing.Optional[builtins.str] = None,
4411
+ stack_account: typing.Optional[builtins.str] = None,
4412
+ stack_region: typing.Optional[builtins.str] = None,
3825
4413
  statistic: typing.Optional[builtins.str] = None,
3826
4414
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
4415
+ visible: typing.Optional[builtins.bool] = None,
3827
4416
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
3828
4417
  '''(experimental) The overall percentage of CPU utilization across task managers.
3829
4418
 
@@ -3838,11 +4427,15 @@ class Application(
3838
4427
  :param account: Account which this metric comes from. Default: - Deployment account.
3839
4428
  :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
3840
4429
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
4430
+ :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
3841
4431
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
3842
4432
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
3843
4433
  :param region: Region which this metric comes from. Default: - Deployment region.
4434
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
4435
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
3844
4436
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
3845
4437
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
4438
+ :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
3846
4439
 
3847
4440
  :default: - average over 5 minutes
3848
4441
 
@@ -3852,11 +4445,15 @@ class Application(
3852
4445
  account=account,
3853
4446
  color=color,
3854
4447
  dimensions_map=dimensions_map,
4448
+ id=id,
3855
4449
  label=label,
3856
4450
  period=period,
3857
4451
  region=region,
4452
+ stack_account=stack_account,
4453
+ stack_region=stack_region,
3858
4454
  statistic=statistic,
3859
4455
  unit=unit,
4456
+ visible=visible,
3860
4457
  )
3861
4458
 
3862
4459
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricCpuUtilization", [props]))
@@ -3868,11 +4465,15 @@ class Application(
3868
4465
  account: typing.Optional[builtins.str] = None,
3869
4466
  color: typing.Optional[builtins.str] = None,
3870
4467
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
4468
+ id: typing.Optional[builtins.str] = None,
3871
4469
  label: typing.Optional[builtins.str] = None,
3872
4470
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
3873
4471
  region: typing.Optional[builtins.str] = None,
4472
+ stack_account: typing.Optional[builtins.str] = None,
4473
+ stack_region: typing.Optional[builtins.str] = None,
3874
4474
  statistic: typing.Optional[builtins.str] = None,
3875
4475
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
4476
+ visible: typing.Optional[builtins.bool] = None,
3876
4477
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
3877
4478
  '''(experimental) The last watermark this application/operator/task/thread has received.
3878
4479
 
@@ -3883,11 +4484,15 @@ class Application(
3883
4484
  :param account: Account which this metric comes from. Default: - Deployment account.
3884
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
3885
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
3886
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
3887
4489
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
3888
4490
  :param region: Region which this metric comes from. Default: - Deployment region.
4491
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
4492
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
3889
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
3890
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
3891
4496
 
3892
4497
  :default: - maximum over 5 minutes
3893
4498
 
@@ -3897,11 +4502,15 @@ class Application(
3897
4502
  account=account,
3898
4503
  color=color,
3899
4504
  dimensions_map=dimensions_map,
4505
+ id=id,
3900
4506
  label=label,
3901
4507
  period=period,
3902
4508
  region=region,
4509
+ stack_account=stack_account,
4510
+ stack_region=stack_region,
3903
4511
  statistic=statistic,
3904
4512
  unit=unit,
4513
+ visible=visible,
3905
4514
  )
3906
4515
 
3907
4516
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricCurrentInputWatermark", [props]))
@@ -3913,11 +4522,15 @@ class Application(
3913
4522
  account: typing.Optional[builtins.str] = None,
3914
4523
  color: typing.Optional[builtins.str] = None,
3915
4524
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
4525
+ id: typing.Optional[builtins.str] = None,
3916
4526
  label: typing.Optional[builtins.str] = None,
3917
4527
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
3918
4528
  region: typing.Optional[builtins.str] = None,
4529
+ stack_account: typing.Optional[builtins.str] = None,
4530
+ stack_region: typing.Optional[builtins.str] = None,
3919
4531
  statistic: typing.Optional[builtins.str] = None,
3920
4532
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
4533
+ visible: typing.Optional[builtins.bool] = None,
3921
4534
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
3922
4535
  '''(experimental) The last watermark this application/operator/task/thread has received.
3923
4536
 
@@ -3928,11 +4541,15 @@ class Application(
3928
4541
  :param account: Account which this metric comes from. Default: - Deployment account.
3929
4542
  :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
3930
4543
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
4544
+ :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
3931
4545
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
3932
4546
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
3933
4547
  :param region: Region which this metric comes from. Default: - Deployment region.
4548
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
4549
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
3934
4550
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
3935
4551
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
4552
+ :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
3936
4553
 
3937
4554
  :default: - maximum over 5 minutes
3938
4555
 
@@ -3942,11 +4559,15 @@ class Application(
3942
4559
  account=account,
3943
4560
  color=color,
3944
4561
  dimensions_map=dimensions_map,
4562
+ id=id,
3945
4563
  label=label,
3946
4564
  period=period,
3947
4565
  region=region,
4566
+ stack_account=stack_account,
4567
+ stack_region=stack_region,
3948
4568
  statistic=statistic,
3949
4569
  unit=unit,
4570
+ visible=visible,
3950
4571
  )
3951
4572
 
3952
4573
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricCurrentOutputWatermark", [props]))
@@ -3958,11 +4579,15 @@ class Application(
3958
4579
  account: typing.Optional[builtins.str] = None,
3959
4580
  color: typing.Optional[builtins.str] = None,
3960
4581
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
4582
+ id: typing.Optional[builtins.str] = None,
3961
4583
  label: typing.Optional[builtins.str] = None,
3962
4584
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
3963
4585
  region: typing.Optional[builtins.str] = None,
4586
+ stack_account: typing.Optional[builtins.str] = None,
4587
+ stack_region: typing.Optional[builtins.str] = None,
3964
4588
  statistic: typing.Optional[builtins.str] = None,
3965
4589
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
4590
+ visible: typing.Optional[builtins.bool] = None,
3966
4591
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
3967
4592
  '''(experimental) The time elapsed during an outage for failing/recovering jobs.
3968
4593
 
@@ -3973,11 +4598,15 @@ class Application(
3973
4598
  :param account: Account which this metric comes from. Default: - Deployment account.
3974
4599
  :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
3975
4600
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
4601
+ :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
3976
4602
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
3977
4603
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
3978
4604
  :param region: Region which this metric comes from. Default: - Deployment region.
4605
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
4606
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
3979
4607
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
3980
4608
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
4609
+ :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
3981
4610
 
3982
4611
  :default: - average over 5 minutes
3983
4612
 
@@ -3987,11 +4616,15 @@ class Application(
3987
4616
  account=account,
3988
4617
  color=color,
3989
4618
  dimensions_map=dimensions_map,
4619
+ id=id,
3990
4620
  label=label,
3991
4621
  period=period,
3992
4622
  region=region,
4623
+ stack_account=stack_account,
4624
+ stack_region=stack_region,
3993
4625
  statistic=statistic,
3994
4626
  unit=unit,
4627
+ visible=visible,
3995
4628
  )
3996
4629
 
3997
4630
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricDowntime", [props]))
@@ -4003,11 +4636,15 @@ class Application(
4003
4636
  account: typing.Optional[builtins.str] = None,
4004
4637
  color: typing.Optional[builtins.str] = None,
4005
4638
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
4639
+ id: typing.Optional[builtins.str] = None,
4006
4640
  label: typing.Optional[builtins.str] = None,
4007
4641
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
4008
4642
  region: typing.Optional[builtins.str] = None,
4643
+ stack_account: typing.Optional[builtins.str] = None,
4644
+ stack_region: typing.Optional[builtins.str] = None,
4009
4645
  statistic: typing.Optional[builtins.str] = None,
4010
4646
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
4647
+ visible: typing.Optional[builtins.bool] = None,
4011
4648
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
4012
4649
  '''(experimental) The total number of times this job has fully restarted since it was submitted.
4013
4650
 
@@ -4020,11 +4657,15 @@ class Application(
4020
4657
  :param account: Account which this metric comes from. Default: - Deployment account.
4021
4658
  :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
4022
4659
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
4660
+ :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
4023
4661
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
4024
4662
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4025
4663
  :param region: Region which this metric comes from. Default: - Deployment region.
4664
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
4665
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4026
4666
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
4027
4667
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
4668
+ :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
4028
4669
 
4029
4670
  :default: - sum over 5 minutes
4030
4671
 
@@ -4034,11 +4675,15 @@ class Application(
4034
4675
  account=account,
4035
4676
  color=color,
4036
4677
  dimensions_map=dimensions_map,
4678
+ id=id,
4037
4679
  label=label,
4038
4680
  period=period,
4039
4681
  region=region,
4682
+ stack_account=stack_account,
4683
+ stack_region=stack_region,
4040
4684
  statistic=statistic,
4041
4685
  unit=unit,
4686
+ visible=visible,
4042
4687
  )
4043
4688
 
4044
4689
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricFullRestarts", [props]))
@@ -4050,11 +4695,15 @@ class Application(
4050
4695
  account: typing.Optional[builtins.str] = None,
4051
4696
  color: typing.Optional[builtins.str] = None,
4052
4697
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
4698
+ id: typing.Optional[builtins.str] = None,
4053
4699
  label: typing.Optional[builtins.str] = None,
4054
4700
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
4055
4701
  region: typing.Optional[builtins.str] = None,
4702
+ stack_account: typing.Optional[builtins.str] = None,
4703
+ stack_region: typing.Optional[builtins.str] = None,
4056
4704
  statistic: typing.Optional[builtins.str] = None,
4057
4705
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
4706
+ visible: typing.Optional[builtins.bool] = None,
4058
4707
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
4059
4708
  '''(experimental) Overall heap memory utilization across task managers.
4060
4709
 
@@ -4069,11 +4718,15 @@ class Application(
4069
4718
  :param account: Account which this metric comes from. Default: - Deployment account.
4070
4719
  :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
4071
4720
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
4721
+ :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
4072
4722
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
4073
4723
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4074
4724
  :param region: Region which this metric comes from. Default: - Deployment region.
4725
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
4726
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4075
4727
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
4076
4728
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
4729
+ :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
4077
4730
 
4078
4731
  :default: - average over 5 minutes
4079
4732
 
@@ -4083,11 +4736,15 @@ class Application(
4083
4736
  account=account,
4084
4737
  color=color,
4085
4738
  dimensions_map=dimensions_map,
4739
+ id=id,
4086
4740
  label=label,
4087
4741
  period=period,
4088
4742
  region=region,
4743
+ stack_account=stack_account,
4744
+ stack_region=stack_region,
4089
4745
  statistic=statistic,
4090
4746
  unit=unit,
4747
+ visible=visible,
4091
4748
  )
4092
4749
 
4093
4750
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricHeapMemoryUtilization", [props]))
@@ -4099,11 +4756,15 @@ class Application(
4099
4756
  account: typing.Optional[builtins.str] = None,
4100
4757
  color: typing.Optional[builtins.str] = None,
4101
4758
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
4759
+ id: typing.Optional[builtins.str] = None,
4102
4760
  label: typing.Optional[builtins.str] = None,
4103
4761
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
4104
4762
  region: typing.Optional[builtins.str] = None,
4763
+ stack_account: typing.Optional[builtins.str] = None,
4764
+ stack_region: typing.Optional[builtins.str] = None,
4105
4765
  statistic: typing.Optional[builtins.str] = None,
4106
4766
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
4767
+ visible: typing.Optional[builtins.bool] = None,
4107
4768
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
4108
4769
  '''(experimental) The time (in milliseconds) this task or operator is idle (has no data to process) per second.
4109
4770
 
@@ -4117,11 +4778,15 @@ class Application(
4117
4778
  :param account: Account which this metric comes from. Default: - Deployment account.
4118
4779
  :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
4119
4780
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
4781
+ :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
4120
4782
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
4121
4783
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4122
4784
  :param region: Region which this metric comes from. Default: - Deployment region.
4785
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
4786
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4123
4787
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
4124
4788
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
4789
+ :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
4125
4790
 
4126
4791
  :default: - average over 5 minutes
4127
4792
 
@@ -4131,11 +4796,15 @@ class Application(
4131
4796
  account=account,
4132
4797
  color=color,
4133
4798
  dimensions_map=dimensions_map,
4799
+ id=id,
4134
4800
  label=label,
4135
4801
  period=period,
4136
4802
  region=region,
4803
+ stack_account=stack_account,
4804
+ stack_region=stack_region,
4137
4805
  statistic=statistic,
4138
4806
  unit=unit,
4807
+ visible=visible,
4139
4808
  )
4140
4809
 
4141
4810
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricIdleTimeMsPerSecond", [props]))
@@ -4147,11 +4816,15 @@ class Application(
4147
4816
  account: typing.Optional[builtins.str] = None,
4148
4817
  color: typing.Optional[builtins.str] = None,
4149
4818
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
4819
+ id: typing.Optional[builtins.str] = None,
4150
4820
  label: typing.Optional[builtins.str] = None,
4151
4821
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
4152
4822
  region: typing.Optional[builtins.str] = None,
4823
+ stack_account: typing.Optional[builtins.str] = None,
4824
+ stack_region: typing.Optional[builtins.str] = None,
4153
4825
  statistic: typing.Optional[builtins.str] = None,
4154
4826
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
4827
+ visible: typing.Optional[builtins.bool] = None,
4155
4828
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
4156
4829
  '''(experimental) The number of Kinesis Processing Units that are used to run your stream processing application.
4157
4830
 
@@ -4165,11 +4838,15 @@ class Application(
4165
4838
  :param account: Account which this metric comes from. Default: - Deployment account.
4166
4839
  :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
4167
4840
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
4841
+ :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
4168
4842
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
4169
4843
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4170
4844
  :param region: Region which this metric comes from. Default: - Deployment region.
4845
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
4846
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4171
4847
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
4172
4848
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
4849
+ :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
4173
4850
 
4174
4851
  :default: - average over 5 minutes
4175
4852
 
@@ -4179,11 +4856,15 @@ class Application(
4179
4856
  account=account,
4180
4857
  color=color,
4181
4858
  dimensions_map=dimensions_map,
4859
+ id=id,
4182
4860
  label=label,
4183
4861
  period=period,
4184
4862
  region=region,
4863
+ stack_account=stack_account,
4864
+ stack_region=stack_region,
4185
4865
  statistic=statistic,
4186
4866
  unit=unit,
4867
+ visible=visible,
4187
4868
  )
4188
4869
 
4189
4870
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricKpus", [props]))
@@ -4195,11 +4876,15 @@ class Application(
4195
4876
  account: typing.Optional[builtins.str] = None,
4196
4877
  color: typing.Optional[builtins.str] = None,
4197
4878
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
4879
+ id: typing.Optional[builtins.str] = None,
4198
4880
  label: typing.Optional[builtins.str] = None,
4199
4881
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
4200
4882
  region: typing.Optional[builtins.str] = None,
4883
+ stack_account: typing.Optional[builtins.str] = None,
4884
+ stack_region: typing.Optional[builtins.str] = None,
4201
4885
  statistic: typing.Optional[builtins.str] = None,
4202
4886
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
4887
+ visible: typing.Optional[builtins.bool] = None,
4203
4888
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
4204
4889
  '''(experimental) The time it took to complete the last checkpoint.
4205
4890
 
@@ -4210,11 +4895,15 @@ class Application(
4210
4895
  :param account: Account which this metric comes from. Default: - Deployment account.
4211
4896
  :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
4212
4897
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
4898
+ :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
4213
4899
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
4214
4900
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4215
4901
  :param region: Region which this metric comes from. Default: - Deployment region.
4902
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
4903
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4216
4904
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
4217
4905
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
4906
+ :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
4218
4907
 
4219
4908
  :default: - maximum over 5 minutes
4220
4909
 
@@ -4224,11 +4913,15 @@ class Application(
4224
4913
  account=account,
4225
4914
  color=color,
4226
4915
  dimensions_map=dimensions_map,
4916
+ id=id,
4227
4917
  label=label,
4228
4918
  period=period,
4229
4919
  region=region,
4920
+ stack_account=stack_account,
4921
+ stack_region=stack_region,
4230
4922
  statistic=statistic,
4231
4923
  unit=unit,
4924
+ visible=visible,
4232
4925
  )
4233
4926
 
4234
4927
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricLastCheckpointDuration", [props]))
@@ -4240,11 +4933,15 @@ class Application(
4240
4933
  account: typing.Optional[builtins.str] = None,
4241
4934
  color: typing.Optional[builtins.str] = None,
4242
4935
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
4936
+ id: typing.Optional[builtins.str] = None,
4243
4937
  label: typing.Optional[builtins.str] = None,
4244
4938
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
4245
4939
  region: typing.Optional[builtins.str] = None,
4940
+ stack_account: typing.Optional[builtins.str] = None,
4941
+ stack_region: typing.Optional[builtins.str] = None,
4246
4942
  statistic: typing.Optional[builtins.str] = None,
4247
4943
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
4944
+ visible: typing.Optional[builtins.bool] = None,
4248
4945
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
4249
4946
  '''(experimental) The total size of the last checkpoint.
4250
4947
 
@@ -4255,11 +4952,15 @@ class Application(
4255
4952
  :param account: Account which this metric comes from. Default: - Deployment account.
4256
4953
  :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
4257
4954
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
4955
+ :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
4258
4956
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
4259
4957
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4260
4958
  :param region: Region which this metric comes from. Default: - Deployment region.
4959
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
4960
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4261
4961
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
4262
4962
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
4963
+ :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
4263
4964
 
4264
4965
  :default: - maximum over 5 minutes
4265
4966
 
@@ -4269,11 +4970,15 @@ class Application(
4269
4970
  account=account,
4270
4971
  color=color,
4271
4972
  dimensions_map=dimensions_map,
4973
+ id=id,
4272
4974
  label=label,
4273
4975
  period=period,
4274
4976
  region=region,
4977
+ stack_account=stack_account,
4978
+ stack_region=stack_region,
4275
4979
  statistic=statistic,
4276
4980
  unit=unit,
4981
+ visible=visible,
4277
4982
  )
4278
4983
 
4279
4984
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricLastCheckpointSize", [props]))
@@ -4285,11 +4990,15 @@ class Application(
4285
4990
  account: typing.Optional[builtins.str] = None,
4286
4991
  color: typing.Optional[builtins.str] = None,
4287
4992
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
4993
+ id: typing.Optional[builtins.str] = None,
4288
4994
  label: typing.Optional[builtins.str] = None,
4289
4995
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
4290
4996
  region: typing.Optional[builtins.str] = None,
4997
+ stack_account: typing.Optional[builtins.str] = None,
4998
+ stack_region: typing.Optional[builtins.str] = None,
4291
4999
  statistic: typing.Optional[builtins.str] = None,
4292
5000
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
5001
+ visible: typing.Optional[builtins.bool] = None,
4293
5002
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
4294
5003
  '''(experimental) The total amount of managed memory.
4295
5004
 
@@ -4300,11 +5009,15 @@ class Application(
4300
5009
  :param account: Account which this metric comes from. Default: - Deployment account.
4301
5010
  :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
4302
5011
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
5012
+ :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
4303
5013
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
4304
5014
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4305
5015
  :param region: Region which this metric comes from. Default: - Deployment region.
5016
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
5017
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4306
5018
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
4307
5019
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
5020
+ :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
4308
5021
 
4309
5022
  :default: - average over 5 minutes
4310
5023
 
@@ -4314,11 +5027,15 @@ class Application(
4314
5027
  account=account,
4315
5028
  color=color,
4316
5029
  dimensions_map=dimensions_map,
5030
+ id=id,
4317
5031
  label=label,
4318
5032
  period=period,
4319
5033
  region=region,
5034
+ stack_account=stack_account,
5035
+ stack_region=stack_region,
4320
5036
  statistic=statistic,
4321
5037
  unit=unit,
5038
+ visible=visible,
4322
5039
  )
4323
5040
 
4324
5041
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricManagedMemoryTotal", [props]))
@@ -4330,11 +5047,15 @@ class Application(
4330
5047
  account: typing.Optional[builtins.str] = None,
4331
5048
  color: typing.Optional[builtins.str] = None,
4332
5049
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
5050
+ id: typing.Optional[builtins.str] = None,
4333
5051
  label: typing.Optional[builtins.str] = None,
4334
5052
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
4335
5053
  region: typing.Optional[builtins.str] = None,
5054
+ stack_account: typing.Optional[builtins.str] = None,
5055
+ stack_region: typing.Optional[builtins.str] = None,
4336
5056
  statistic: typing.Optional[builtins.str] = None,
4337
5057
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
5058
+ visible: typing.Optional[builtins.bool] = None,
4338
5059
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
4339
5060
  '''(experimental) The amount of managed memory currently used.
4340
5061
 
@@ -4345,11 +5066,15 @@ class Application(
4345
5066
  :param account: Account which this metric comes from. Default: - Deployment account.
4346
5067
  :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
4347
5068
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
5069
+ :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
4348
5070
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
4349
5071
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4350
5072
  :param region: Region which this metric comes from. Default: - Deployment region.
5073
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
5074
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4351
5075
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
4352
5076
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
5077
+ :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
4353
5078
 
4354
5079
  :default: - average over 5 minutes
4355
5080
 
@@ -4359,11 +5084,15 @@ class Application(
4359
5084
  account=account,
4360
5085
  color=color,
4361
5086
  dimensions_map=dimensions_map,
5087
+ id=id,
4362
5088
  label=label,
4363
5089
  period=period,
4364
5090
  region=region,
5091
+ stack_account=stack_account,
5092
+ stack_region=stack_region,
4365
5093
  statistic=statistic,
4366
5094
  unit=unit,
5095
+ visible=visible,
4367
5096
  )
4368
5097
 
4369
5098
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricManagedMemoryUsed", [props]))
@@ -4375,11 +5104,15 @@ class Application(
4375
5104
  account: typing.Optional[builtins.str] = None,
4376
5105
  color: typing.Optional[builtins.str] = None,
4377
5106
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
5107
+ id: typing.Optional[builtins.str] = None,
4378
5108
  label: typing.Optional[builtins.str] = None,
4379
5109
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
4380
5110
  region: typing.Optional[builtins.str] = None,
5111
+ stack_account: typing.Optional[builtins.str] = None,
5112
+ stack_region: typing.Optional[builtins.str] = None,
4381
5113
  statistic: typing.Optional[builtins.str] = None,
4382
5114
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
5115
+ visible: typing.Optional[builtins.bool] = None,
4383
5116
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
4384
5117
  '''(experimental) Derived from managedMemoryUsed/managedMemoryTotal.
4385
5118
 
@@ -4390,11 +5123,15 @@ class Application(
4390
5123
  :param account: Account which this metric comes from. Default: - Deployment account.
4391
5124
  :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
4392
5125
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
5126
+ :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
4393
5127
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
4394
5128
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4395
5129
  :param region: Region which this metric comes from. Default: - Deployment region.
5130
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
5131
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4396
5132
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
4397
5133
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
5134
+ :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
4398
5135
 
4399
5136
  :default: - average over 5 minutes
4400
5137
 
@@ -4404,11 +5141,15 @@ class Application(
4404
5141
  account=account,
4405
5142
  color=color,
4406
5143
  dimensions_map=dimensions_map,
5144
+ id=id,
4407
5145
  label=label,
4408
5146
  period=period,
4409
5147
  region=region,
5148
+ stack_account=stack_account,
5149
+ stack_region=stack_region,
4410
5150
  statistic=statistic,
4411
5151
  unit=unit,
5152
+ visible=visible,
4412
5153
  )
4413
5154
 
4414
5155
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricManagedMemoryUtilization", [props]))
@@ -4420,11 +5161,15 @@ class Application(
4420
5161
  account: typing.Optional[builtins.str] = None,
4421
5162
  color: typing.Optional[builtins.str] = None,
4422
5163
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
5164
+ id: typing.Optional[builtins.str] = None,
4423
5165
  label: typing.Optional[builtins.str] = None,
4424
5166
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
4425
5167
  region: typing.Optional[builtins.str] = None,
5168
+ stack_account: typing.Optional[builtins.str] = None,
5169
+ stack_region: typing.Optional[builtins.str] = None,
4426
5170
  statistic: typing.Optional[builtins.str] = None,
4427
5171
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
5172
+ visible: typing.Optional[builtins.bool] = None,
4428
5173
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
4429
5174
  '''(experimental) The number of times checkpointing has failed.
4430
5175
 
@@ -4435,11 +5180,15 @@ class Application(
4435
5180
  :param account: Account which this metric comes from. Default: - Deployment account.
4436
5181
  :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
4437
5182
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
5183
+ :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
4438
5184
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
4439
5185
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4440
5186
  :param region: Region which this metric comes from. Default: - Deployment region.
5187
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
5188
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4441
5189
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
4442
5190
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
5191
+ :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
4443
5192
 
4444
5193
  :default: - sum over 5 minutes
4445
5194
 
@@ -4449,11 +5198,15 @@ class Application(
4449
5198
  account=account,
4450
5199
  color=color,
4451
5200
  dimensions_map=dimensions_map,
5201
+ id=id,
4452
5202
  label=label,
4453
5203
  period=period,
4454
5204
  region=region,
5205
+ stack_account=stack_account,
5206
+ stack_region=stack_region,
4455
5207
  statistic=statistic,
4456
5208
  unit=unit,
5209
+ visible=visible,
4457
5210
  )
4458
5211
 
4459
5212
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricNumberOfFailedCheckpoints", [props]))
@@ -4465,11 +5218,15 @@ class Application(
4465
5218
  account: typing.Optional[builtins.str] = None,
4466
5219
  color: typing.Optional[builtins.str] = None,
4467
5220
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
5221
+ id: typing.Optional[builtins.str] = None,
4468
5222
  label: typing.Optional[builtins.str] = None,
4469
5223
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
4470
5224
  region: typing.Optional[builtins.str] = None,
5225
+ stack_account: typing.Optional[builtins.str] = None,
5226
+ stack_region: typing.Optional[builtins.str] = None,
4471
5227
  statistic: typing.Optional[builtins.str] = None,
4472
5228
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
5229
+ visible: typing.Optional[builtins.bool] = None,
4473
5230
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
4474
5231
  '''(experimental) The number of records this operator or task has dropped due to arriving late.
4475
5232
 
@@ -4480,11 +5237,15 @@ class Application(
4480
5237
  :param account: Account which this metric comes from. Default: - Deployment account.
4481
5238
  :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
4482
5239
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
5240
+ :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
4483
5241
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
4484
5242
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4485
5243
  :param region: Region which this metric comes from. Default: - Deployment region.
5244
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
5245
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4486
5246
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
4487
5247
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
5248
+ :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
4488
5249
 
4489
5250
  :default: - sum over 5 minutes
4490
5251
 
@@ -4494,11 +5255,15 @@ class Application(
4494
5255
  account=account,
4495
5256
  color=color,
4496
5257
  dimensions_map=dimensions_map,
5258
+ id=id,
4497
5259
  label=label,
4498
5260
  period=period,
4499
5261
  region=region,
5262
+ stack_account=stack_account,
5263
+ stack_region=stack_region,
4500
5264
  statistic=statistic,
4501
5265
  unit=unit,
5266
+ visible=visible,
4502
5267
  )
4503
5268
 
4504
5269
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricNumLateRecordsDropped", [props]))
@@ -4510,11 +5275,15 @@ class Application(
4510
5275
  account: typing.Optional[builtins.str] = None,
4511
5276
  color: typing.Optional[builtins.str] = None,
4512
5277
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
5278
+ id: typing.Optional[builtins.str] = None,
4513
5279
  label: typing.Optional[builtins.str] = None,
4514
5280
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
4515
5281
  region: typing.Optional[builtins.str] = None,
5282
+ stack_account: typing.Optional[builtins.str] = None,
5283
+ stack_region: typing.Optional[builtins.str] = None,
4516
5284
  statistic: typing.Optional[builtins.str] = None,
4517
5285
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
5286
+ visible: typing.Optional[builtins.bool] = None,
4518
5287
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
4519
5288
  '''(experimental) The total number of records this application, operator, or task has received.
4520
5289
 
@@ -4525,11 +5294,15 @@ class Application(
4525
5294
  :param account: Account which this metric comes from. Default: - Deployment account.
4526
5295
  :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
4527
5296
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
5297
+ :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
4528
5298
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
4529
5299
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4530
5300
  :param region: Region which this metric comes from. Default: - Deployment region.
5301
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
5302
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4531
5303
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
4532
5304
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
5305
+ :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
4533
5306
 
4534
5307
  :default: - average over 5 minutes
4535
5308
 
@@ -4539,11 +5312,15 @@ class Application(
4539
5312
  account=account,
4540
5313
  color=color,
4541
5314
  dimensions_map=dimensions_map,
5315
+ id=id,
4542
5316
  label=label,
4543
5317
  period=period,
4544
5318
  region=region,
5319
+ stack_account=stack_account,
5320
+ stack_region=stack_region,
4545
5321
  statistic=statistic,
4546
5322
  unit=unit,
5323
+ visible=visible,
4547
5324
  )
4548
5325
 
4549
5326
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricNumRecordsIn", [props]))
@@ -4555,11 +5332,15 @@ class Application(
4555
5332
  account: typing.Optional[builtins.str] = None,
4556
5333
  color: typing.Optional[builtins.str] = None,
4557
5334
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
5335
+ id: typing.Optional[builtins.str] = None,
4558
5336
  label: typing.Optional[builtins.str] = None,
4559
5337
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
4560
5338
  region: typing.Optional[builtins.str] = None,
5339
+ stack_account: typing.Optional[builtins.str] = None,
5340
+ stack_region: typing.Optional[builtins.str] = None,
4561
5341
  statistic: typing.Optional[builtins.str] = None,
4562
5342
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
5343
+ visible: typing.Optional[builtins.bool] = None,
4563
5344
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
4564
5345
  '''(experimental) The total number of records this application, operator or task has received per second.
4565
5346
 
@@ -4570,11 +5351,15 @@ class Application(
4570
5351
  :param account: Account which this metric comes from. Default: - Deployment account.
4571
5352
  :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
4572
5353
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
5354
+ :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
4573
5355
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
4574
5356
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4575
5357
  :param region: Region which this metric comes from. Default: - Deployment region.
5358
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
5359
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4576
5360
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
4577
5361
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
5362
+ :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
4578
5363
 
4579
5364
  :default: - average over 5 minutes
4580
5365
 
@@ -4584,11 +5369,15 @@ class Application(
4584
5369
  account=account,
4585
5370
  color=color,
4586
5371
  dimensions_map=dimensions_map,
5372
+ id=id,
4587
5373
  label=label,
4588
5374
  period=period,
4589
5375
  region=region,
5376
+ stack_account=stack_account,
5377
+ stack_region=stack_region,
4590
5378
  statistic=statistic,
4591
5379
  unit=unit,
5380
+ visible=visible,
4592
5381
  )
4593
5382
 
4594
5383
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricNumRecordsInPerSecond", [props]))
@@ -4600,11 +5389,15 @@ class Application(
4600
5389
  account: typing.Optional[builtins.str] = None,
4601
5390
  color: typing.Optional[builtins.str] = None,
4602
5391
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
5392
+ id: typing.Optional[builtins.str] = None,
4603
5393
  label: typing.Optional[builtins.str] = None,
4604
5394
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
4605
5395
  region: typing.Optional[builtins.str] = None,
5396
+ stack_account: typing.Optional[builtins.str] = None,
5397
+ stack_region: typing.Optional[builtins.str] = None,
4606
5398
  statistic: typing.Optional[builtins.str] = None,
4607
5399
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
5400
+ visible: typing.Optional[builtins.bool] = None,
4608
5401
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
4609
5402
  '''(experimental) The total number of records this application, operator or task has emitted.
4610
5403
 
@@ -4615,11 +5408,15 @@ class Application(
4615
5408
  :param account: Account which this metric comes from. Default: - Deployment account.
4616
5409
  :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
4617
5410
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
5411
+ :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
4618
5412
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
4619
5413
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4620
5414
  :param region: Region which this metric comes from. Default: - Deployment region.
5415
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
5416
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4621
5417
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
4622
5418
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
5419
+ :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
4623
5420
 
4624
5421
  :default: - average over 5 minutes
4625
5422
 
@@ -4629,11 +5426,15 @@ class Application(
4629
5426
  account=account,
4630
5427
  color=color,
4631
5428
  dimensions_map=dimensions_map,
5429
+ id=id,
4632
5430
  label=label,
4633
5431
  period=period,
4634
5432
  region=region,
5433
+ stack_account=stack_account,
5434
+ stack_region=stack_region,
4635
5435
  statistic=statistic,
4636
5436
  unit=unit,
5437
+ visible=visible,
4637
5438
  )
4638
5439
 
4639
5440
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricNumRecordsOut", [props]))
@@ -4645,11 +5446,15 @@ class Application(
4645
5446
  account: typing.Optional[builtins.str] = None,
4646
5447
  color: typing.Optional[builtins.str] = None,
4647
5448
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
5449
+ id: typing.Optional[builtins.str] = None,
4648
5450
  label: typing.Optional[builtins.str] = None,
4649
5451
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
4650
5452
  region: typing.Optional[builtins.str] = None,
5453
+ stack_account: typing.Optional[builtins.str] = None,
5454
+ stack_region: typing.Optional[builtins.str] = None,
4651
5455
  statistic: typing.Optional[builtins.str] = None,
4652
5456
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
5457
+ visible: typing.Optional[builtins.bool] = None,
4653
5458
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
4654
5459
  '''(experimental) The total number of records this application, operator or task has emitted per second.
4655
5460
 
@@ -4660,11 +5465,15 @@ class Application(
4660
5465
  :param account: Account which this metric comes from. Default: - Deployment account.
4661
5466
  :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
4662
5467
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
5468
+ :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
4663
5469
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
4664
5470
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4665
5471
  :param region: Region which this metric comes from. Default: - Deployment region.
5472
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
5473
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4666
5474
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
4667
5475
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
5476
+ :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
4668
5477
 
4669
5478
  :default: - average over 5 minutes
4670
5479
 
@@ -4674,11 +5483,15 @@ class Application(
4674
5483
  account=account,
4675
5484
  color=color,
4676
5485
  dimensions_map=dimensions_map,
5486
+ id=id,
4677
5487
  label=label,
4678
5488
  period=period,
4679
5489
  region=region,
5490
+ stack_account=stack_account,
5491
+ stack_region=stack_region,
4680
5492
  statistic=statistic,
4681
5493
  unit=unit,
5494
+ visible=visible,
4682
5495
  )
4683
5496
 
4684
5497
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricNumRecordsOutPerSecond", [props]))
@@ -4690,11 +5503,15 @@ class Application(
4690
5503
  account: typing.Optional[builtins.str] = None,
4691
5504
  color: typing.Optional[builtins.str] = None,
4692
5505
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
5506
+ id: typing.Optional[builtins.str] = None,
4693
5507
  label: typing.Optional[builtins.str] = None,
4694
5508
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
4695
5509
  region: typing.Optional[builtins.str] = None,
5510
+ stack_account: typing.Optional[builtins.str] = None,
5511
+ stack_region: typing.Optional[builtins.str] = None,
4696
5512
  statistic: typing.Optional[builtins.str] = None,
4697
5513
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
5514
+ visible: typing.Optional[builtins.bool] = None,
4698
5515
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
4699
5516
  '''(experimental) The total number of old garbage collection operations that have occurred across all task managers.
4700
5517
 
@@ -4705,11 +5522,15 @@ class Application(
4705
5522
  :param account: Account which this metric comes from. Default: - Deployment account.
4706
5523
  :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
4707
5524
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
5525
+ :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
4708
5526
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
4709
5527
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4710
5528
  :param region: Region which this metric comes from. Default: - Deployment region.
5529
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
5530
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4711
5531
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
4712
5532
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
5533
+ :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
4713
5534
 
4714
5535
  :default: - sum over 5 minutes
4715
5536
 
@@ -4719,11 +5540,15 @@ class Application(
4719
5540
  account=account,
4720
5541
  color=color,
4721
5542
  dimensions_map=dimensions_map,
5543
+ id=id,
4722
5544
  label=label,
4723
5545
  period=period,
4724
5546
  region=region,
5547
+ stack_account=stack_account,
5548
+ stack_region=stack_region,
4725
5549
  statistic=statistic,
4726
5550
  unit=unit,
5551
+ visible=visible,
4727
5552
  )
4728
5553
 
4729
5554
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricOldGenerationGCCount", [props]))
@@ -4735,11 +5560,15 @@ class Application(
4735
5560
  account: typing.Optional[builtins.str] = None,
4736
5561
  color: typing.Optional[builtins.str] = None,
4737
5562
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
5563
+ id: typing.Optional[builtins.str] = None,
4738
5564
  label: typing.Optional[builtins.str] = None,
4739
5565
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
4740
5566
  region: typing.Optional[builtins.str] = None,
5567
+ stack_account: typing.Optional[builtins.str] = None,
5568
+ stack_region: typing.Optional[builtins.str] = None,
4741
5569
  statistic: typing.Optional[builtins.str] = None,
4742
5570
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
5571
+ visible: typing.Optional[builtins.bool] = None,
4743
5572
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
4744
5573
  '''(experimental) The total time spent performing old garbage collection operations.
4745
5574
 
@@ -4750,11 +5579,15 @@ class Application(
4750
5579
  :param account: Account which this metric comes from. Default: - Deployment account.
4751
5580
  :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
4752
5581
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
5582
+ :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
4753
5583
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
4754
5584
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4755
5585
  :param region: Region which this metric comes from. Default: - Deployment region.
5586
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
5587
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4756
5588
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
4757
5589
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
5590
+ :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
4758
5591
 
4759
5592
  :default: - sum over 5 minutes
4760
5593
 
@@ -4764,11 +5597,15 @@ class Application(
4764
5597
  account=account,
4765
5598
  color=color,
4766
5599
  dimensions_map=dimensions_map,
5600
+ id=id,
4767
5601
  label=label,
4768
5602
  period=period,
4769
5603
  region=region,
5604
+ stack_account=stack_account,
5605
+ stack_region=stack_region,
4770
5606
  statistic=statistic,
4771
5607
  unit=unit,
5608
+ visible=visible,
4772
5609
  )
4773
5610
 
4774
5611
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricOldGenerationGCTime", [props]))
@@ -4780,11 +5617,15 @@ class Application(
4780
5617
  account: typing.Optional[builtins.str] = None,
4781
5618
  color: typing.Optional[builtins.str] = None,
4782
5619
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
5620
+ id: typing.Optional[builtins.str] = None,
4783
5621
  label: typing.Optional[builtins.str] = None,
4784
5622
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
4785
5623
  region: typing.Optional[builtins.str] = None,
5624
+ stack_account: typing.Optional[builtins.str] = None,
5625
+ stack_region: typing.Optional[builtins.str] = None,
4786
5626
  statistic: typing.Optional[builtins.str] = None,
4787
5627
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
5628
+ visible: typing.Optional[builtins.bool] = None,
4788
5629
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
4789
5630
  '''(experimental) The total number of live threads used by the application.
4790
5631
 
@@ -4795,11 +5636,15 @@ class Application(
4795
5636
  :param account: Account which this metric comes from. Default: - Deployment account.
4796
5637
  :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
4797
5638
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
5639
+ :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
4798
5640
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
4799
5641
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4800
5642
  :param region: Region which this metric comes from. Default: - Deployment region.
5643
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
5644
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4801
5645
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
4802
5646
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
5647
+ :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
4803
5648
 
4804
5649
  :default: - average over 5 minutes
4805
5650
 
@@ -4809,11 +5654,15 @@ class Application(
4809
5654
  account=account,
4810
5655
  color=color,
4811
5656
  dimensions_map=dimensions_map,
5657
+ id=id,
4812
5658
  label=label,
4813
5659
  period=period,
4814
5660
  region=region,
5661
+ stack_account=stack_account,
5662
+ stack_region=stack_region,
4815
5663
  statistic=statistic,
4816
5664
  unit=unit,
5665
+ visible=visible,
4817
5666
  )
4818
5667
 
4819
5668
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricThreadsCount", [props]))
@@ -4825,11 +5674,15 @@ class Application(
4825
5674
  account: typing.Optional[builtins.str] = None,
4826
5675
  color: typing.Optional[builtins.str] = None,
4827
5676
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
5677
+ id: typing.Optional[builtins.str] = None,
4828
5678
  label: typing.Optional[builtins.str] = None,
4829
5679
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
4830
5680
  region: typing.Optional[builtins.str] = None,
5681
+ stack_account: typing.Optional[builtins.str] = None,
5682
+ stack_region: typing.Optional[builtins.str] = None,
4831
5683
  statistic: typing.Optional[builtins.str] = None,
4832
5684
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
5685
+ visible: typing.Optional[builtins.bool] = None,
4833
5686
  ) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
4834
5687
  '''(experimental) The time that the job has been running without interruption.
4835
5688
 
@@ -4840,11 +5693,15 @@ class Application(
4840
5693
  :param account: Account which this metric comes from. Default: - Deployment account.
4841
5694
  :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
4842
5695
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
5696
+ :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
4843
5697
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
4844
5698
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
4845
5699
  :param region: Region which this metric comes from. Default: - Deployment region.
5700
+ :param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
5701
+ :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
4846
5702
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
4847
5703
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
5704
+ :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
4848
5705
 
4849
5706
  :default: - average over 5 minutes
4850
5707
 
@@ -4854,15 +5711,28 @@ class Application(
4854
5711
  account=account,
4855
5712
  color=color,
4856
5713
  dimensions_map=dimensions_map,
5714
+ id=id,
4857
5715
  label=label,
4858
5716
  period=period,
4859
5717
  region=region,
5718
+ stack_account=stack_account,
5719
+ stack_region=stack_region,
4860
5720
  statistic=statistic,
4861
5721
  unit=unit,
5722
+ visible=visible,
4862
5723
  )
4863
5724
 
4864
5725
  return typing.cast(_aws_cdk_aws_cloudwatch_ceddda9d.Metric, jsii.invoke(self, "metricUptime", [props]))
4865
5726
 
5727
+ @jsii.python.classproperty
5728
+ @jsii.member(jsii_name="PROPERTY_INJECTION_ID")
5729
+ def PROPERTY_INJECTION_ID(cls) -> builtins.str:
5730
+ '''(experimental) Uniquely identifies this class.
5731
+
5732
+ :stability: experimental
5733
+ '''
5734
+ return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
5735
+
4866
5736
  @builtins.property
4867
5737
  @jsii.member(jsii_name="applicationArn")
4868
5738
  def application_arn(self) -> builtins.str:
@@ -4936,8 +5806,9 @@ def _typecheckingstub__1b3f5ea7b01f2c445236fa2c0bbef9d04ab26dce3d5e0a7fe634f6546
4936
5806
  path: builtins.str,
4937
5807
  *,
4938
5808
  deploy_time: typing.Optional[builtins.bool] = None,
5809
+ display_name: typing.Optional[builtins.str] = None,
4939
5810
  readers: typing.Optional[typing.Sequence[_aws_cdk_aws_iam_ceddda9d.IGrantable]] = None,
4940
- source_kms_key: typing.Optional[_aws_cdk_aws_kms_ceddda9d.IKey] = None,
5811
+ source_kms_key: typing.Optional[_aws_cdk_aws_kms_ceddda9d.IKeyRef] = None,
4941
5812
  asset_hash: typing.Optional[builtins.str] = None,
4942
5813
  asset_hash_type: typing.Optional[_aws_cdk_ceddda9d.AssetHashType] = None,
4943
5814
  bundling: typing.Optional[typing.Union[_aws_cdk_ceddda9d.BundlingOptions, typing.Dict[builtins.str, typing.Any]]] = None,
@@ -5007,11 +5878,15 @@ def _typecheckingstub__097540094b7582e7d789cf6a116b80ddef50d6da32ceb164de5da9561
5007
5878
  account: typing.Optional[builtins.str] = None,
5008
5879
  color: typing.Optional[builtins.str] = None,
5009
5880
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
5881
+ id: typing.Optional[builtins.str] = None,
5010
5882
  label: typing.Optional[builtins.str] = None,
5011
5883
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
5012
5884
  region: typing.Optional[builtins.str] = None,
5885
+ stack_account: typing.Optional[builtins.str] = None,
5886
+ stack_region: typing.Optional[builtins.str] = None,
5013
5887
  statistic: typing.Optional[builtins.str] = None,
5014
5888
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
5889
+ visible: typing.Optional[builtins.bool] = None,
5015
5890
  ) -> None:
5016
5891
  """Type checking stubs"""
5017
5892
  pass
@@ -5087,11 +5962,18 @@ def _typecheckingstub__bd7be1e816d1e378b989c42da53244077b88147554f5269f162bf7af5
5087
5962
  account: typing.Optional[builtins.str] = None,
5088
5963
  color: typing.Optional[builtins.str] = None,
5089
5964
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
5965
+ id: typing.Optional[builtins.str] = None,
5090
5966
  label: typing.Optional[builtins.str] = None,
5091
5967
  period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
5092
5968
  region: typing.Optional[builtins.str] = None,
5969
+ stack_account: typing.Optional[builtins.str] = None,
5970
+ stack_region: typing.Optional[builtins.str] = None,
5093
5971
  statistic: typing.Optional[builtins.str] = None,
5094
5972
  unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
5973
+ visible: typing.Optional[builtins.bool] = None,
5095
5974
  ) -> None:
5096
5975
  """Type checking stubs"""
5097
5976
  pass
5977
+
5978
+ for cls in [IApplication]:
5979
+ typing.cast(typing.Any, cls).__protocol_attrs__ = typing.cast(typing.Any, cls).__protocol_attrs__ - set(['__jsii_proxy_class__', '__jsii_type__'])