aws-cdk.aws-kinesisanalytics-flink-alpha 2.174.1a0__py3-none-any.whl → 2.175.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.
Potentially problematic release.
This version of aws-cdk.aws-kinesisanalytics-flink-alpha might be problematic. Click here for more details.
- aws_cdk/aws_kinesisanalytics_flink_alpha/__init__.py +420 -0
- aws_cdk/aws_kinesisanalytics_flink_alpha/_jsii/__init__.py +2 -2
- aws_cdk/aws_kinesisanalytics_flink_alpha/_jsii/aws-kinesisanalytics-flink-alpha@2.175.0-alpha.0.jsii.tgz +0 -0
- {aws_cdk.aws_kinesisanalytics_flink_alpha-2.174.1a0.dist-info → aws_cdk.aws_kinesisanalytics_flink_alpha-2.175.0a0.dist-info}/METADATA +2 -2
- aws_cdk.aws_kinesisanalytics_flink_alpha-2.175.0a0.dist-info/RECORD +10 -0
- aws_cdk/aws_kinesisanalytics_flink_alpha/_jsii/aws-kinesisanalytics-flink-alpha@2.174.1-alpha.0.jsii.tgz +0 -0
- aws_cdk.aws_kinesisanalytics_flink_alpha-2.174.1a0.dist-info/RECORD +0 -10
- {aws_cdk.aws_kinesisanalytics_flink_alpha-2.174.1a0.dist-info → aws_cdk.aws_kinesisanalytics_flink_alpha-2.175.0a0.dist-info}/LICENSE +0 -0
- {aws_cdk.aws_kinesisanalytics_flink_alpha-2.174.1a0.dist-info → aws_cdk.aws_kinesisanalytics_flink_alpha-2.175.0a0.dist-info}/NOTICE +0 -0
- {aws_cdk.aws_kinesisanalytics_flink_alpha-2.174.1a0.dist-info → aws_cdk.aws_kinesisanalytics_flink_alpha-2.175.0a0.dist-info}/WHEEL +0 -0
- {aws_cdk.aws_kinesisanalytics_flink_alpha-2.174.1a0.dist-info → aws_cdk.aws_kinesisanalytics_flink_alpha-2.175.0a0.dist-info}/top_level.txt +0 -0
|
@@ -1080,6 +1080,8 @@ class IApplication(
|
|
|
1080
1080
|
label: typing.Optional[builtins.str] = None,
|
|
1081
1081
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1082
1082
|
region: typing.Optional[builtins.str] = None,
|
|
1083
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
1084
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
1083
1085
|
statistic: typing.Optional[builtins.str] = None,
|
|
1084
1086
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1085
1087
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -1092,6 +1094,8 @@ class IApplication(
|
|
|
1092
1094
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
1095
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1094
1096
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
1097
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
1098
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1095
1099
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
1100
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, 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
1101
|
|
|
@@ -1109,6 +1113,8 @@ class IApplication(
|
|
|
1109
1113
|
label: typing.Optional[builtins.str] = None,
|
|
1110
1114
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1111
1115
|
region: typing.Optional[builtins.str] = None,
|
|
1116
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
1117
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
1112
1118
|
statistic: typing.Optional[builtins.str] = None,
|
|
1113
1119
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1114
1120
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -1124,6 +1130,8 @@ class IApplication(
|
|
|
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
|
|
1129
1137
|
|
|
@@ -1143,6 +1151,8 @@ class IApplication(
|
|
|
1143
1151
|
label: typing.Optional[builtins.str] = None,
|
|
1144
1152
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1145
1153
|
region: typing.Optional[builtins.str] = None,
|
|
1154
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
1155
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
1146
1156
|
statistic: typing.Optional[builtins.str] = None,
|
|
1147
1157
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1148
1158
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -1161,6 +1171,8 @@ class IApplication(
|
|
|
1161
1171
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
1172
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1163
1173
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
1174
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
1175
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1164
1176
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
1177
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1166
1178
|
|
|
@@ -1180,6 +1192,8 @@ class IApplication(
|
|
|
1180
1192
|
label: typing.Optional[builtins.str] = None,
|
|
1181
1193
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1182
1194
|
region: typing.Optional[builtins.str] = None,
|
|
1195
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
1196
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
1183
1197
|
statistic: typing.Optional[builtins.str] = None,
|
|
1184
1198
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1185
1199
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -1199,6 +1213,8 @@ class IApplication(
|
|
|
1199
1213
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
1214
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1201
1215
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
1216
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
1217
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1202
1218
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
1219
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1204
1220
|
|
|
@@ -1218,6 +1234,8 @@ class IApplication(
|
|
|
1218
1234
|
label: typing.Optional[builtins.str] = None,
|
|
1219
1235
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1220
1236
|
region: typing.Optional[builtins.str] = None,
|
|
1237
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
1238
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
1221
1239
|
statistic: typing.Optional[builtins.str] = None,
|
|
1222
1240
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1223
1241
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -1233,6 +1251,8 @@ class IApplication(
|
|
|
1233
1251
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
1252
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1235
1253
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
1254
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
1255
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1236
1256
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
1257
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1238
1258
|
|
|
@@ -1252,6 +1272,8 @@ class IApplication(
|
|
|
1252
1272
|
label: typing.Optional[builtins.str] = None,
|
|
1253
1273
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1254
1274
|
region: typing.Optional[builtins.str] = None,
|
|
1275
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
1276
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
1255
1277
|
statistic: typing.Optional[builtins.str] = None,
|
|
1256
1278
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1257
1279
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -1267,6 +1289,8 @@ class IApplication(
|
|
|
1267
1289
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
1290
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1269
1291
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
1292
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
1293
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1270
1294
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
1295
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1272
1296
|
|
|
@@ -1286,6 +1310,8 @@ class IApplication(
|
|
|
1286
1310
|
label: typing.Optional[builtins.str] = None,
|
|
1287
1311
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1288
1312
|
region: typing.Optional[builtins.str] = None,
|
|
1313
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
1314
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
1289
1315
|
statistic: typing.Optional[builtins.str] = None,
|
|
1290
1316
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1291
1317
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -1301,6 +1327,8 @@ class IApplication(
|
|
|
1301
1327
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
1328
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1303
1329
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
1330
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
1331
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1304
1332
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
1333
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1306
1334
|
|
|
@@ -1320,6 +1348,8 @@ class IApplication(
|
|
|
1320
1348
|
label: typing.Optional[builtins.str] = None,
|
|
1321
1349
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1322
1350
|
region: typing.Optional[builtins.str] = None,
|
|
1351
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
1352
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
1323
1353
|
statistic: typing.Optional[builtins.str] = None,
|
|
1324
1354
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1325
1355
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -1337,6 +1367,8 @@ class IApplication(
|
|
|
1337
1367
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
1368
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1339
1369
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
1370
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
1371
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1340
1372
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
1373
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1342
1374
|
|
|
@@ -1356,6 +1388,8 @@ class IApplication(
|
|
|
1356
1388
|
label: typing.Optional[builtins.str] = None,
|
|
1357
1389
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1358
1390
|
region: typing.Optional[builtins.str] = None,
|
|
1391
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
1392
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
1359
1393
|
statistic: typing.Optional[builtins.str] = None,
|
|
1360
1394
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1361
1395
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -1375,6 +1409,8 @@ class IApplication(
|
|
|
1375
1409
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
1410
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1377
1411
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
1412
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
1413
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1378
1414
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
1415
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1380
1416
|
|
|
@@ -1394,6 +1430,8 @@ class IApplication(
|
|
|
1394
1430
|
label: typing.Optional[builtins.str] = None,
|
|
1395
1431
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1396
1432
|
region: typing.Optional[builtins.str] = None,
|
|
1433
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
1434
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
1397
1435
|
statistic: typing.Optional[builtins.str] = None,
|
|
1398
1436
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1399
1437
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -1412,6 +1450,8 @@ class IApplication(
|
|
|
1412
1450
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
1451
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1414
1452
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
1453
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
1454
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1415
1455
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
1456
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1417
1457
|
|
|
@@ -1431,6 +1471,8 @@ class IApplication(
|
|
|
1431
1471
|
label: typing.Optional[builtins.str] = None,
|
|
1432
1472
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1433
1473
|
region: typing.Optional[builtins.str] = None,
|
|
1474
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
1475
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
1434
1476
|
statistic: typing.Optional[builtins.str] = None,
|
|
1435
1477
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1436
1478
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -1449,6 +1491,8 @@ class IApplication(
|
|
|
1449
1491
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
1492
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1451
1493
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
1494
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
1495
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1452
1496
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
1497
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1454
1498
|
|
|
@@ -1468,6 +1512,8 @@ class IApplication(
|
|
|
1468
1512
|
label: typing.Optional[builtins.str] = None,
|
|
1469
1513
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1470
1514
|
region: typing.Optional[builtins.str] = None,
|
|
1515
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
1516
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
1471
1517
|
statistic: typing.Optional[builtins.str] = None,
|
|
1472
1518
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1473
1519
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -1483,6 +1529,8 @@ class IApplication(
|
|
|
1483
1529
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
1530
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1485
1531
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
1532
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
1533
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1486
1534
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
1535
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1488
1536
|
|
|
@@ -1502,6 +1550,8 @@ class IApplication(
|
|
|
1502
1550
|
label: typing.Optional[builtins.str] = None,
|
|
1503
1551
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1504
1552
|
region: typing.Optional[builtins.str] = None,
|
|
1553
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
1554
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
1505
1555
|
statistic: typing.Optional[builtins.str] = None,
|
|
1506
1556
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1507
1557
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -1517,6 +1567,8 @@ class IApplication(
|
|
|
1517
1567
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
1568
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1519
1569
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
1570
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
1571
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1520
1572
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
1573
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1522
1574
|
|
|
@@ -1536,6 +1588,8 @@ class IApplication(
|
|
|
1536
1588
|
label: typing.Optional[builtins.str] = None,
|
|
1537
1589
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1538
1590
|
region: typing.Optional[builtins.str] = None,
|
|
1591
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
1592
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
1539
1593
|
statistic: typing.Optional[builtins.str] = None,
|
|
1540
1594
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1541
1595
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -1551,6 +1605,8 @@ class IApplication(
|
|
|
1551
1605
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
1606
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1553
1607
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
1608
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
1609
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1554
1610
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
1611
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1556
1612
|
|
|
@@ -1570,6 +1626,8 @@ class IApplication(
|
|
|
1570
1626
|
label: typing.Optional[builtins.str] = None,
|
|
1571
1627
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1572
1628
|
region: typing.Optional[builtins.str] = None,
|
|
1629
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
1630
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
1573
1631
|
statistic: typing.Optional[builtins.str] = None,
|
|
1574
1632
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1575
1633
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -1585,6 +1643,8 @@ class IApplication(
|
|
|
1585
1643
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
1644
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1587
1645
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
1646
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
1647
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1588
1648
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
1649
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1590
1650
|
|
|
@@ -1604,6 +1664,8 @@ class IApplication(
|
|
|
1604
1664
|
label: typing.Optional[builtins.str] = None,
|
|
1605
1665
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1606
1666
|
region: typing.Optional[builtins.str] = None,
|
|
1667
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
1668
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
1607
1669
|
statistic: typing.Optional[builtins.str] = None,
|
|
1608
1670
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1609
1671
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -1619,6 +1681,8 @@ class IApplication(
|
|
|
1619
1681
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
1682
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1621
1683
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
1684
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
1685
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1622
1686
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
1687
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1624
1688
|
|
|
@@ -1638,6 +1702,8 @@ class IApplication(
|
|
|
1638
1702
|
label: typing.Optional[builtins.str] = None,
|
|
1639
1703
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1640
1704
|
region: typing.Optional[builtins.str] = None,
|
|
1705
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
1706
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
1641
1707
|
statistic: typing.Optional[builtins.str] = None,
|
|
1642
1708
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1643
1709
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -1653,6 +1719,8 @@ class IApplication(
|
|
|
1653
1719
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
1720
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1655
1721
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
1722
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
1723
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1656
1724
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
1725
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1658
1726
|
|
|
@@ -1672,6 +1740,8 @@ class IApplication(
|
|
|
1672
1740
|
label: typing.Optional[builtins.str] = None,
|
|
1673
1741
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1674
1742
|
region: typing.Optional[builtins.str] = None,
|
|
1743
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
1744
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
1675
1745
|
statistic: typing.Optional[builtins.str] = None,
|
|
1676
1746
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1677
1747
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -1687,6 +1757,8 @@ class IApplication(
|
|
|
1687
1757
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
1758
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1689
1759
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
1760
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
1761
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1690
1762
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
1763
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1692
1764
|
|
|
@@ -1706,6 +1778,8 @@ class IApplication(
|
|
|
1706
1778
|
label: typing.Optional[builtins.str] = None,
|
|
1707
1779
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1708
1780
|
region: typing.Optional[builtins.str] = None,
|
|
1781
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
1782
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
1709
1783
|
statistic: typing.Optional[builtins.str] = None,
|
|
1710
1784
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1711
1785
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -1721,6 +1795,8 @@ class IApplication(
|
|
|
1721
1795
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
1796
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1723
1797
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
1798
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
1799
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1724
1800
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
1801
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1726
1802
|
|
|
@@ -1740,6 +1816,8 @@ class IApplication(
|
|
|
1740
1816
|
label: typing.Optional[builtins.str] = None,
|
|
1741
1817
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1742
1818
|
region: typing.Optional[builtins.str] = None,
|
|
1819
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
1820
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
1743
1821
|
statistic: typing.Optional[builtins.str] = None,
|
|
1744
1822
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1745
1823
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -1755,6 +1833,8 @@ class IApplication(
|
|
|
1755
1833
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
1834
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1757
1835
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
1836
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
1837
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1758
1838
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
1839
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1760
1840
|
|
|
@@ -1774,6 +1854,8 @@ class IApplication(
|
|
|
1774
1854
|
label: typing.Optional[builtins.str] = None,
|
|
1775
1855
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1776
1856
|
region: typing.Optional[builtins.str] = None,
|
|
1857
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
1858
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
1777
1859
|
statistic: typing.Optional[builtins.str] = None,
|
|
1778
1860
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1779
1861
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -1789,6 +1871,8 @@ class IApplication(
|
|
|
1789
1871
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
1872
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1791
1873
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
1874
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
1875
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1792
1876
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
1877
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1794
1878
|
|
|
@@ -1808,6 +1892,8 @@ class IApplication(
|
|
|
1808
1892
|
label: typing.Optional[builtins.str] = None,
|
|
1809
1893
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1810
1894
|
region: typing.Optional[builtins.str] = None,
|
|
1895
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
1896
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
1811
1897
|
statistic: typing.Optional[builtins.str] = None,
|
|
1812
1898
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1813
1899
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -1823,6 +1909,8 @@ class IApplication(
|
|
|
1823
1909
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
1910
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1825
1911
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
1912
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
1913
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1826
1914
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
1915
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, 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
1916
|
|
|
@@ -1842,6 +1930,8 @@ class IApplication(
|
|
|
1842
1930
|
label: typing.Optional[builtins.str] = None,
|
|
1843
1931
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1844
1932
|
region: typing.Optional[builtins.str] = None,
|
|
1933
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
1934
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
1845
1935
|
statistic: typing.Optional[builtins.str] = None,
|
|
1846
1936
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1847
1937
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -1857,6 +1947,8 @@ class IApplication(
|
|
|
1857
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
|
|
1858
1948
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1859
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.
|
|
1860
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
|
|
1861
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
|
|
1862
1954
|
|
|
@@ -1876,6 +1968,8 @@ class IApplication(
|
|
|
1876
1968
|
label: typing.Optional[builtins.str] = None,
|
|
1877
1969
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1878
1970
|
region: typing.Optional[builtins.str] = None,
|
|
1971
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
1972
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
1879
1973
|
statistic: typing.Optional[builtins.str] = None,
|
|
1880
1974
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1881
1975
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -1891,6 +1985,8 @@ class IApplication(
|
|
|
1891
1985
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
1986
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1893
1987
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
1988
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
1989
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1894
1990
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
1991
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1896
1992
|
|
|
@@ -1910,6 +2006,8 @@ class IApplication(
|
|
|
1910
2006
|
label: typing.Optional[builtins.str] = None,
|
|
1911
2007
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1912
2008
|
region: typing.Optional[builtins.str] = None,
|
|
2009
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
2010
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
1913
2011
|
statistic: typing.Optional[builtins.str] = None,
|
|
1914
2012
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1915
2013
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -1925,6 +2023,8 @@ class IApplication(
|
|
|
1925
2023
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
2024
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1927
2025
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
2026
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
2027
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1928
2028
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
2029
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1930
2030
|
|
|
@@ -1944,6 +2044,8 @@ class IApplication(
|
|
|
1944
2044
|
label: typing.Optional[builtins.str] = None,
|
|
1945
2045
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
1946
2046
|
region: typing.Optional[builtins.str] = None,
|
|
2047
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
2048
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
1947
2049
|
statistic: typing.Optional[builtins.str] = None,
|
|
1948
2050
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
1949
2051
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -1959,6 +2061,8 @@ class IApplication(
|
|
|
1959
2061
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
2062
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
1961
2063
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
2064
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
2065
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
1962
2066
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
2067
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
1964
2068
|
|
|
@@ -2037,6 +2141,8 @@ class _IApplicationProxy(
|
|
|
2037
2141
|
label: typing.Optional[builtins.str] = None,
|
|
2038
2142
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2039
2143
|
region: typing.Optional[builtins.str] = None,
|
|
2144
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
2145
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
2040
2146
|
statistic: typing.Optional[builtins.str] = None,
|
|
2041
2147
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2042
2148
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -2049,6 +2155,8 @@ class _IApplicationProxy(
|
|
|
2049
2155
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
2156
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2051
2157
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
2158
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
2159
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2052
2160
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
2161
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
2054
2162
|
|
|
@@ -2064,6 +2172,8 @@ class _IApplicationProxy(
|
|
|
2064
2172
|
label=label,
|
|
2065
2173
|
period=period,
|
|
2066
2174
|
region=region,
|
|
2175
|
+
stack_account=stack_account,
|
|
2176
|
+
stack_region=stack_region,
|
|
2067
2177
|
statistic=statistic,
|
|
2068
2178
|
unit=unit,
|
|
2069
2179
|
)
|
|
@@ -2080,6 +2190,8 @@ class _IApplicationProxy(
|
|
|
2080
2190
|
label: typing.Optional[builtins.str] = None,
|
|
2081
2191
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2082
2192
|
region: typing.Optional[builtins.str] = None,
|
|
2193
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
2194
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
2083
2195
|
statistic: typing.Optional[builtins.str] = None,
|
|
2084
2196
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2085
2197
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -2095,6 +2207,8 @@ class _IApplicationProxy(
|
|
|
2095
2207
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
2208
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2097
2209
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
2210
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
2211
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2098
2212
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
2213
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
2100
2214
|
|
|
@@ -2109,6 +2223,8 @@ class _IApplicationProxy(
|
|
|
2109
2223
|
label=label,
|
|
2110
2224
|
period=period,
|
|
2111
2225
|
region=region,
|
|
2226
|
+
stack_account=stack_account,
|
|
2227
|
+
stack_region=stack_region,
|
|
2112
2228
|
statistic=statistic,
|
|
2113
2229
|
unit=unit,
|
|
2114
2230
|
)
|
|
@@ -2125,6 +2241,8 @@ class _IApplicationProxy(
|
|
|
2125
2241
|
label: typing.Optional[builtins.str] = None,
|
|
2126
2242
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2127
2243
|
region: typing.Optional[builtins.str] = None,
|
|
2244
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
2245
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
2128
2246
|
statistic: typing.Optional[builtins.str] = None,
|
|
2129
2247
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2130
2248
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -2143,6 +2261,8 @@ class _IApplicationProxy(
|
|
|
2143
2261
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
2262
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2145
2263
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
2264
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
2265
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2146
2266
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
2267
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
2148
2268
|
|
|
@@ -2157,6 +2277,8 @@ class _IApplicationProxy(
|
|
|
2157
2277
|
label=label,
|
|
2158
2278
|
period=period,
|
|
2159
2279
|
region=region,
|
|
2280
|
+
stack_account=stack_account,
|
|
2281
|
+
stack_region=stack_region,
|
|
2160
2282
|
statistic=statistic,
|
|
2161
2283
|
unit=unit,
|
|
2162
2284
|
)
|
|
@@ -2173,6 +2295,8 @@ class _IApplicationProxy(
|
|
|
2173
2295
|
label: typing.Optional[builtins.str] = None,
|
|
2174
2296
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2175
2297
|
region: typing.Optional[builtins.str] = None,
|
|
2298
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
2299
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
2176
2300
|
statistic: typing.Optional[builtins.str] = None,
|
|
2177
2301
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2178
2302
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -2192,6 +2316,8 @@ class _IApplicationProxy(
|
|
|
2192
2316
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
2317
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2194
2318
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
2319
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
2320
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2195
2321
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
2322
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
2197
2323
|
|
|
@@ -2206,6 +2332,8 @@ class _IApplicationProxy(
|
|
|
2206
2332
|
label=label,
|
|
2207
2333
|
period=period,
|
|
2208
2334
|
region=region,
|
|
2335
|
+
stack_account=stack_account,
|
|
2336
|
+
stack_region=stack_region,
|
|
2209
2337
|
statistic=statistic,
|
|
2210
2338
|
unit=unit,
|
|
2211
2339
|
)
|
|
@@ -2222,6 +2350,8 @@ class _IApplicationProxy(
|
|
|
2222
2350
|
label: typing.Optional[builtins.str] = None,
|
|
2223
2351
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2224
2352
|
region: typing.Optional[builtins.str] = None,
|
|
2353
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
2354
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
2225
2355
|
statistic: typing.Optional[builtins.str] = None,
|
|
2226
2356
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2227
2357
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -2237,6 +2367,8 @@ class _IApplicationProxy(
|
|
|
2237
2367
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
2368
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2239
2369
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
2370
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
2371
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2240
2372
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
2373
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
2242
2374
|
|
|
@@ -2251,6 +2383,8 @@ class _IApplicationProxy(
|
|
|
2251
2383
|
label=label,
|
|
2252
2384
|
period=period,
|
|
2253
2385
|
region=region,
|
|
2386
|
+
stack_account=stack_account,
|
|
2387
|
+
stack_region=stack_region,
|
|
2254
2388
|
statistic=statistic,
|
|
2255
2389
|
unit=unit,
|
|
2256
2390
|
)
|
|
@@ -2267,6 +2401,8 @@ class _IApplicationProxy(
|
|
|
2267
2401
|
label: typing.Optional[builtins.str] = None,
|
|
2268
2402
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2269
2403
|
region: typing.Optional[builtins.str] = None,
|
|
2404
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
2405
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
2270
2406
|
statistic: typing.Optional[builtins.str] = None,
|
|
2271
2407
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2272
2408
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -2282,6 +2418,8 @@ class _IApplicationProxy(
|
|
|
2282
2418
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
2419
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2284
2420
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
2421
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
2422
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2285
2423
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
2424
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
2287
2425
|
|
|
@@ -2296,6 +2434,8 @@ class _IApplicationProxy(
|
|
|
2296
2434
|
label=label,
|
|
2297
2435
|
period=period,
|
|
2298
2436
|
region=region,
|
|
2437
|
+
stack_account=stack_account,
|
|
2438
|
+
stack_region=stack_region,
|
|
2299
2439
|
statistic=statistic,
|
|
2300
2440
|
unit=unit,
|
|
2301
2441
|
)
|
|
@@ -2312,6 +2452,8 @@ class _IApplicationProxy(
|
|
|
2312
2452
|
label: typing.Optional[builtins.str] = None,
|
|
2313
2453
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2314
2454
|
region: typing.Optional[builtins.str] = None,
|
|
2455
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
2456
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
2315
2457
|
statistic: typing.Optional[builtins.str] = None,
|
|
2316
2458
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2317
2459
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -2327,6 +2469,8 @@ class _IApplicationProxy(
|
|
|
2327
2469
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
2470
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2329
2471
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
2472
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
2473
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2330
2474
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
2475
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
2332
2476
|
|
|
@@ -2341,6 +2485,8 @@ class _IApplicationProxy(
|
|
|
2341
2485
|
label=label,
|
|
2342
2486
|
period=period,
|
|
2343
2487
|
region=region,
|
|
2488
|
+
stack_account=stack_account,
|
|
2489
|
+
stack_region=stack_region,
|
|
2344
2490
|
statistic=statistic,
|
|
2345
2491
|
unit=unit,
|
|
2346
2492
|
)
|
|
@@ -2357,6 +2503,8 @@ class _IApplicationProxy(
|
|
|
2357
2503
|
label: typing.Optional[builtins.str] = None,
|
|
2358
2504
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2359
2505
|
region: typing.Optional[builtins.str] = None,
|
|
2506
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
2507
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
2360
2508
|
statistic: typing.Optional[builtins.str] = None,
|
|
2361
2509
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2362
2510
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -2374,6 +2522,8 @@ class _IApplicationProxy(
|
|
|
2374
2522
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
2523
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2376
2524
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
2525
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
2526
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2377
2527
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
2528
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
2379
2529
|
|
|
@@ -2388,6 +2538,8 @@ class _IApplicationProxy(
|
|
|
2388
2538
|
label=label,
|
|
2389
2539
|
period=period,
|
|
2390
2540
|
region=region,
|
|
2541
|
+
stack_account=stack_account,
|
|
2542
|
+
stack_region=stack_region,
|
|
2391
2543
|
statistic=statistic,
|
|
2392
2544
|
unit=unit,
|
|
2393
2545
|
)
|
|
@@ -2404,6 +2556,8 @@ class _IApplicationProxy(
|
|
|
2404
2556
|
label: typing.Optional[builtins.str] = None,
|
|
2405
2557
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2406
2558
|
region: typing.Optional[builtins.str] = None,
|
|
2559
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
2560
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
2407
2561
|
statistic: typing.Optional[builtins.str] = None,
|
|
2408
2562
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2409
2563
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -2423,6 +2577,8 @@ class _IApplicationProxy(
|
|
|
2423
2577
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
2578
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2425
2579
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
2580
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
2581
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2426
2582
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
2583
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
2428
2584
|
|
|
@@ -2437,6 +2593,8 @@ class _IApplicationProxy(
|
|
|
2437
2593
|
label=label,
|
|
2438
2594
|
period=period,
|
|
2439
2595
|
region=region,
|
|
2596
|
+
stack_account=stack_account,
|
|
2597
|
+
stack_region=stack_region,
|
|
2440
2598
|
statistic=statistic,
|
|
2441
2599
|
unit=unit,
|
|
2442
2600
|
)
|
|
@@ -2453,6 +2611,8 @@ class _IApplicationProxy(
|
|
|
2453
2611
|
label: typing.Optional[builtins.str] = None,
|
|
2454
2612
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2455
2613
|
region: typing.Optional[builtins.str] = None,
|
|
2614
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
2615
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
2456
2616
|
statistic: typing.Optional[builtins.str] = None,
|
|
2457
2617
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2458
2618
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -2471,6 +2631,8 @@ class _IApplicationProxy(
|
|
|
2471
2631
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
2632
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2473
2633
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
2634
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
2635
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2474
2636
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
2637
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
2476
2638
|
|
|
@@ -2485,6 +2647,8 @@ class _IApplicationProxy(
|
|
|
2485
2647
|
label=label,
|
|
2486
2648
|
period=period,
|
|
2487
2649
|
region=region,
|
|
2650
|
+
stack_account=stack_account,
|
|
2651
|
+
stack_region=stack_region,
|
|
2488
2652
|
statistic=statistic,
|
|
2489
2653
|
unit=unit,
|
|
2490
2654
|
)
|
|
@@ -2501,6 +2665,8 @@ class _IApplicationProxy(
|
|
|
2501
2665
|
label: typing.Optional[builtins.str] = None,
|
|
2502
2666
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2503
2667
|
region: typing.Optional[builtins.str] = None,
|
|
2668
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
2669
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
2504
2670
|
statistic: typing.Optional[builtins.str] = None,
|
|
2505
2671
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2506
2672
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -2519,6 +2685,8 @@ class _IApplicationProxy(
|
|
|
2519
2685
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
2686
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2521
2687
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
2688
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
2689
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2522
2690
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
2691
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
2524
2692
|
|
|
@@ -2533,6 +2701,8 @@ class _IApplicationProxy(
|
|
|
2533
2701
|
label=label,
|
|
2534
2702
|
period=period,
|
|
2535
2703
|
region=region,
|
|
2704
|
+
stack_account=stack_account,
|
|
2705
|
+
stack_region=stack_region,
|
|
2536
2706
|
statistic=statistic,
|
|
2537
2707
|
unit=unit,
|
|
2538
2708
|
)
|
|
@@ -2549,6 +2719,8 @@ class _IApplicationProxy(
|
|
|
2549
2719
|
label: typing.Optional[builtins.str] = None,
|
|
2550
2720
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2551
2721
|
region: typing.Optional[builtins.str] = None,
|
|
2722
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
2723
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
2552
2724
|
statistic: typing.Optional[builtins.str] = None,
|
|
2553
2725
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2554
2726
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -2564,6 +2736,8 @@ class _IApplicationProxy(
|
|
|
2564
2736
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
2737
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2566
2738
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
2739
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
2740
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2567
2741
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
2742
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
2569
2743
|
|
|
@@ -2578,6 +2752,8 @@ class _IApplicationProxy(
|
|
|
2578
2752
|
label=label,
|
|
2579
2753
|
period=period,
|
|
2580
2754
|
region=region,
|
|
2755
|
+
stack_account=stack_account,
|
|
2756
|
+
stack_region=stack_region,
|
|
2581
2757
|
statistic=statistic,
|
|
2582
2758
|
unit=unit,
|
|
2583
2759
|
)
|
|
@@ -2594,6 +2770,8 @@ class _IApplicationProxy(
|
|
|
2594
2770
|
label: typing.Optional[builtins.str] = None,
|
|
2595
2771
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2596
2772
|
region: typing.Optional[builtins.str] = None,
|
|
2773
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
2774
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
2597
2775
|
statistic: typing.Optional[builtins.str] = None,
|
|
2598
2776
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2599
2777
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -2609,6 +2787,8 @@ class _IApplicationProxy(
|
|
|
2609
2787
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
2788
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2611
2789
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
2790
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
2791
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2612
2792
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
2793
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
2614
2794
|
|
|
@@ -2623,6 +2803,8 @@ class _IApplicationProxy(
|
|
|
2623
2803
|
label=label,
|
|
2624
2804
|
period=period,
|
|
2625
2805
|
region=region,
|
|
2806
|
+
stack_account=stack_account,
|
|
2807
|
+
stack_region=stack_region,
|
|
2626
2808
|
statistic=statistic,
|
|
2627
2809
|
unit=unit,
|
|
2628
2810
|
)
|
|
@@ -2639,6 +2821,8 @@ class _IApplicationProxy(
|
|
|
2639
2821
|
label: typing.Optional[builtins.str] = None,
|
|
2640
2822
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2641
2823
|
region: typing.Optional[builtins.str] = None,
|
|
2824
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
2825
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
2642
2826
|
statistic: typing.Optional[builtins.str] = None,
|
|
2643
2827
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2644
2828
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -2654,6 +2838,8 @@ class _IApplicationProxy(
|
|
|
2654
2838
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
2839
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2656
2840
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
2841
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
2842
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2657
2843
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
2844
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
2659
2845
|
|
|
@@ -2668,6 +2854,8 @@ class _IApplicationProxy(
|
|
|
2668
2854
|
label=label,
|
|
2669
2855
|
period=period,
|
|
2670
2856
|
region=region,
|
|
2857
|
+
stack_account=stack_account,
|
|
2858
|
+
stack_region=stack_region,
|
|
2671
2859
|
statistic=statistic,
|
|
2672
2860
|
unit=unit,
|
|
2673
2861
|
)
|
|
@@ -2684,6 +2872,8 @@ class _IApplicationProxy(
|
|
|
2684
2872
|
label: typing.Optional[builtins.str] = None,
|
|
2685
2873
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2686
2874
|
region: typing.Optional[builtins.str] = None,
|
|
2875
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
2876
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
2687
2877
|
statistic: typing.Optional[builtins.str] = None,
|
|
2688
2878
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2689
2879
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -2699,6 +2889,8 @@ class _IApplicationProxy(
|
|
|
2699
2889
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
2890
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2701
2891
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
2892
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
2893
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2702
2894
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
2895
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
2704
2896
|
|
|
@@ -2713,6 +2905,8 @@ class _IApplicationProxy(
|
|
|
2713
2905
|
label=label,
|
|
2714
2906
|
period=period,
|
|
2715
2907
|
region=region,
|
|
2908
|
+
stack_account=stack_account,
|
|
2909
|
+
stack_region=stack_region,
|
|
2716
2910
|
statistic=statistic,
|
|
2717
2911
|
unit=unit,
|
|
2718
2912
|
)
|
|
@@ -2729,6 +2923,8 @@ class _IApplicationProxy(
|
|
|
2729
2923
|
label: typing.Optional[builtins.str] = None,
|
|
2730
2924
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2731
2925
|
region: typing.Optional[builtins.str] = None,
|
|
2926
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
2927
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
2732
2928
|
statistic: typing.Optional[builtins.str] = None,
|
|
2733
2929
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2734
2930
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -2744,6 +2940,8 @@ class _IApplicationProxy(
|
|
|
2744
2940
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
2941
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2746
2942
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
2943
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
2944
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2747
2945
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
2946
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
2749
2947
|
|
|
@@ -2758,6 +2956,8 @@ class _IApplicationProxy(
|
|
|
2758
2956
|
label=label,
|
|
2759
2957
|
period=period,
|
|
2760
2958
|
region=region,
|
|
2959
|
+
stack_account=stack_account,
|
|
2960
|
+
stack_region=stack_region,
|
|
2761
2961
|
statistic=statistic,
|
|
2762
2962
|
unit=unit,
|
|
2763
2963
|
)
|
|
@@ -2774,6 +2974,8 @@ class _IApplicationProxy(
|
|
|
2774
2974
|
label: typing.Optional[builtins.str] = None,
|
|
2775
2975
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2776
2976
|
region: typing.Optional[builtins.str] = None,
|
|
2977
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
2978
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
2777
2979
|
statistic: typing.Optional[builtins.str] = None,
|
|
2778
2980
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2779
2981
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -2789,6 +2991,8 @@ class _IApplicationProxy(
|
|
|
2789
2991
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
2992
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2791
2993
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
2994
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
2995
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2792
2996
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
2997
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
2794
2998
|
|
|
@@ -2803,6 +3007,8 @@ class _IApplicationProxy(
|
|
|
2803
3007
|
label=label,
|
|
2804
3008
|
period=period,
|
|
2805
3009
|
region=region,
|
|
3010
|
+
stack_account=stack_account,
|
|
3011
|
+
stack_region=stack_region,
|
|
2806
3012
|
statistic=statistic,
|
|
2807
3013
|
unit=unit,
|
|
2808
3014
|
)
|
|
@@ -2819,6 +3025,8 @@ class _IApplicationProxy(
|
|
|
2819
3025
|
label: typing.Optional[builtins.str] = None,
|
|
2820
3026
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2821
3027
|
region: typing.Optional[builtins.str] = None,
|
|
3028
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
3029
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
2822
3030
|
statistic: typing.Optional[builtins.str] = None,
|
|
2823
3031
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2824
3032
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -2834,6 +3042,8 @@ class _IApplicationProxy(
|
|
|
2834
3042
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
3043
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2836
3044
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
3045
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
3046
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2837
3047
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
3048
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
2839
3049
|
|
|
@@ -2848,6 +3058,8 @@ class _IApplicationProxy(
|
|
|
2848
3058
|
label=label,
|
|
2849
3059
|
period=period,
|
|
2850
3060
|
region=region,
|
|
3061
|
+
stack_account=stack_account,
|
|
3062
|
+
stack_region=stack_region,
|
|
2851
3063
|
statistic=statistic,
|
|
2852
3064
|
unit=unit,
|
|
2853
3065
|
)
|
|
@@ -2864,6 +3076,8 @@ class _IApplicationProxy(
|
|
|
2864
3076
|
label: typing.Optional[builtins.str] = None,
|
|
2865
3077
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2866
3078
|
region: typing.Optional[builtins.str] = None,
|
|
3079
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
3080
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
2867
3081
|
statistic: typing.Optional[builtins.str] = None,
|
|
2868
3082
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2869
3083
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -2879,6 +3093,8 @@ class _IApplicationProxy(
|
|
|
2879
3093
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
3094
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2881
3095
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
3096
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
3097
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2882
3098
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
3099
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
2884
3100
|
|
|
@@ -2893,6 +3109,8 @@ class _IApplicationProxy(
|
|
|
2893
3109
|
label=label,
|
|
2894
3110
|
period=period,
|
|
2895
3111
|
region=region,
|
|
3112
|
+
stack_account=stack_account,
|
|
3113
|
+
stack_region=stack_region,
|
|
2896
3114
|
statistic=statistic,
|
|
2897
3115
|
unit=unit,
|
|
2898
3116
|
)
|
|
@@ -2909,6 +3127,8 @@ class _IApplicationProxy(
|
|
|
2909
3127
|
label: typing.Optional[builtins.str] = None,
|
|
2910
3128
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2911
3129
|
region: typing.Optional[builtins.str] = None,
|
|
3130
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
3131
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
2912
3132
|
statistic: typing.Optional[builtins.str] = None,
|
|
2913
3133
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2914
3134
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -2924,6 +3144,8 @@ class _IApplicationProxy(
|
|
|
2924
3144
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
3145
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2926
3146
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
3147
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
3148
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2927
3149
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
3150
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
2929
3151
|
|
|
@@ -2938,6 +3160,8 @@ class _IApplicationProxy(
|
|
|
2938
3160
|
label=label,
|
|
2939
3161
|
period=period,
|
|
2940
3162
|
region=region,
|
|
3163
|
+
stack_account=stack_account,
|
|
3164
|
+
stack_region=stack_region,
|
|
2941
3165
|
statistic=statistic,
|
|
2942
3166
|
unit=unit,
|
|
2943
3167
|
)
|
|
@@ -2954,6 +3178,8 @@ class _IApplicationProxy(
|
|
|
2954
3178
|
label: typing.Optional[builtins.str] = None,
|
|
2955
3179
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
2956
3180
|
region: typing.Optional[builtins.str] = None,
|
|
3181
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
3182
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
2957
3183
|
statistic: typing.Optional[builtins.str] = None,
|
|
2958
3184
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
2959
3185
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -2969,6 +3195,8 @@ class _IApplicationProxy(
|
|
|
2969
3195
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
3196
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
2971
3197
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
3198
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
3199
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
2972
3200
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
3201
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
2974
3202
|
|
|
@@ -2983,6 +3211,8 @@ class _IApplicationProxy(
|
|
|
2983
3211
|
label=label,
|
|
2984
3212
|
period=period,
|
|
2985
3213
|
region=region,
|
|
3214
|
+
stack_account=stack_account,
|
|
3215
|
+
stack_region=stack_region,
|
|
2986
3216
|
statistic=statistic,
|
|
2987
3217
|
unit=unit,
|
|
2988
3218
|
)
|
|
@@ -2999,6 +3229,8 @@ class _IApplicationProxy(
|
|
|
2999
3229
|
label: typing.Optional[builtins.str] = None,
|
|
3000
3230
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
3001
3231
|
region: typing.Optional[builtins.str] = None,
|
|
3232
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
3233
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
3002
3234
|
statistic: typing.Optional[builtins.str] = None,
|
|
3003
3235
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
3004
3236
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -3014,6 +3246,8 @@ class _IApplicationProxy(
|
|
|
3014
3246
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
3247
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3016
3248
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
3249
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
3250
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3017
3251
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
3252
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
3019
3253
|
|
|
@@ -3028,6 +3262,8 @@ class _IApplicationProxy(
|
|
|
3028
3262
|
label=label,
|
|
3029
3263
|
period=period,
|
|
3030
3264
|
region=region,
|
|
3265
|
+
stack_account=stack_account,
|
|
3266
|
+
stack_region=stack_region,
|
|
3031
3267
|
statistic=statistic,
|
|
3032
3268
|
unit=unit,
|
|
3033
3269
|
)
|
|
@@ -3044,6 +3280,8 @@ class _IApplicationProxy(
|
|
|
3044
3280
|
label: typing.Optional[builtins.str] = None,
|
|
3045
3281
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
3046
3282
|
region: typing.Optional[builtins.str] = None,
|
|
3283
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
3284
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
3047
3285
|
statistic: typing.Optional[builtins.str] = None,
|
|
3048
3286
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
3049
3287
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -3059,6 +3297,8 @@ class _IApplicationProxy(
|
|
|
3059
3297
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
3298
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3061
3299
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
3300
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
3301
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3062
3302
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
3303
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
3064
3304
|
|
|
@@ -3073,6 +3313,8 @@ class _IApplicationProxy(
|
|
|
3073
3313
|
label=label,
|
|
3074
3314
|
period=period,
|
|
3075
3315
|
region=region,
|
|
3316
|
+
stack_account=stack_account,
|
|
3317
|
+
stack_region=stack_region,
|
|
3076
3318
|
statistic=statistic,
|
|
3077
3319
|
unit=unit,
|
|
3078
3320
|
)
|
|
@@ -3089,6 +3331,8 @@ class _IApplicationProxy(
|
|
|
3089
3331
|
label: typing.Optional[builtins.str] = None,
|
|
3090
3332
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
3091
3333
|
region: typing.Optional[builtins.str] = None,
|
|
3334
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
3335
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
3092
3336
|
statistic: typing.Optional[builtins.str] = None,
|
|
3093
3337
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
3094
3338
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -3104,6 +3348,8 @@ class _IApplicationProxy(
|
|
|
3104
3348
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
3349
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3106
3350
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
3351
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
3352
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3107
3353
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
3354
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
3109
3355
|
|
|
@@ -3118,6 +3364,8 @@ class _IApplicationProxy(
|
|
|
3118
3364
|
label=label,
|
|
3119
3365
|
period=period,
|
|
3120
3366
|
region=region,
|
|
3367
|
+
stack_account=stack_account,
|
|
3368
|
+
stack_region=stack_region,
|
|
3121
3369
|
statistic=statistic,
|
|
3122
3370
|
unit=unit,
|
|
3123
3371
|
)
|
|
@@ -3134,6 +3382,8 @@ class _IApplicationProxy(
|
|
|
3134
3382
|
label: typing.Optional[builtins.str] = None,
|
|
3135
3383
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
3136
3384
|
region: typing.Optional[builtins.str] = None,
|
|
3385
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
3386
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
3137
3387
|
statistic: typing.Optional[builtins.str] = None,
|
|
3138
3388
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
3139
3389
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -3149,6 +3399,8 @@ class _IApplicationProxy(
|
|
|
3149
3399
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
3400
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3151
3401
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
3402
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
3403
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3152
3404
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
3405
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
3154
3406
|
|
|
@@ -3163,6 +3415,8 @@ class _IApplicationProxy(
|
|
|
3163
3415
|
label=label,
|
|
3164
3416
|
period=period,
|
|
3165
3417
|
region=region,
|
|
3418
|
+
stack_account=stack_account,
|
|
3419
|
+
stack_region=stack_region,
|
|
3166
3420
|
statistic=statistic,
|
|
3167
3421
|
unit=unit,
|
|
3168
3422
|
)
|
|
@@ -3179,6 +3433,8 @@ class _IApplicationProxy(
|
|
|
3179
3433
|
label: typing.Optional[builtins.str] = None,
|
|
3180
3434
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
3181
3435
|
region: typing.Optional[builtins.str] = None,
|
|
3436
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
3437
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
3182
3438
|
statistic: typing.Optional[builtins.str] = None,
|
|
3183
3439
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
3184
3440
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -3194,6 +3450,8 @@ class _IApplicationProxy(
|
|
|
3194
3450
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
3451
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3196
3452
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
3453
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
3454
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3197
3455
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
3456
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
3199
3457
|
|
|
@@ -3208,6 +3466,8 @@ class _IApplicationProxy(
|
|
|
3208
3466
|
label=label,
|
|
3209
3467
|
period=period,
|
|
3210
3468
|
region=region,
|
|
3469
|
+
stack_account=stack_account,
|
|
3470
|
+
stack_region=stack_region,
|
|
3211
3471
|
statistic=statistic,
|
|
3212
3472
|
unit=unit,
|
|
3213
3473
|
)
|
|
@@ -3686,6 +3946,8 @@ class Application(
|
|
|
3686
3946
|
label: typing.Optional[builtins.str] = None,
|
|
3687
3947
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
3688
3948
|
region: typing.Optional[builtins.str] = None,
|
|
3949
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
3950
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
3689
3951
|
statistic: typing.Optional[builtins.str] = None,
|
|
3690
3952
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
3691
3953
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -3698,6 +3960,8 @@ class Application(
|
|
|
3698
3960
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
3961
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3700
3962
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
3963
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
3964
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3701
3965
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
3966
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
3703
3967
|
|
|
@@ -3713,6 +3977,8 @@ class Application(
|
|
|
3713
3977
|
label=label,
|
|
3714
3978
|
period=period,
|
|
3715
3979
|
region=region,
|
|
3980
|
+
stack_account=stack_account,
|
|
3981
|
+
stack_region=stack_region,
|
|
3716
3982
|
statistic=statistic,
|
|
3717
3983
|
unit=unit,
|
|
3718
3984
|
)
|
|
@@ -3729,6 +3995,8 @@ class Application(
|
|
|
3729
3995
|
label: typing.Optional[builtins.str] = None,
|
|
3730
3996
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
3731
3997
|
region: typing.Optional[builtins.str] = None,
|
|
3998
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
3999
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
3732
4000
|
statistic: typing.Optional[builtins.str] = None,
|
|
3733
4001
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
3734
4002
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -3744,6 +4012,8 @@ class Application(
|
|
|
3744
4012
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
4013
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3746
4014
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
4015
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
4016
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3747
4017
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
4018
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
3749
4019
|
|
|
@@ -3758,6 +4028,8 @@ class Application(
|
|
|
3758
4028
|
label=label,
|
|
3759
4029
|
period=period,
|
|
3760
4030
|
region=region,
|
|
4031
|
+
stack_account=stack_account,
|
|
4032
|
+
stack_region=stack_region,
|
|
3761
4033
|
statistic=statistic,
|
|
3762
4034
|
unit=unit,
|
|
3763
4035
|
)
|
|
@@ -3774,6 +4046,8 @@ class Application(
|
|
|
3774
4046
|
label: typing.Optional[builtins.str] = None,
|
|
3775
4047
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
3776
4048
|
region: typing.Optional[builtins.str] = None,
|
|
4049
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
4050
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
3777
4051
|
statistic: typing.Optional[builtins.str] = None,
|
|
3778
4052
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
3779
4053
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -3792,6 +4066,8 @@ class Application(
|
|
|
3792
4066
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
4067
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3794
4068
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
4069
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
4070
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3795
4071
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
4072
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
3797
4073
|
|
|
@@ -3806,6 +4082,8 @@ class Application(
|
|
|
3806
4082
|
label=label,
|
|
3807
4083
|
period=period,
|
|
3808
4084
|
region=region,
|
|
4085
|
+
stack_account=stack_account,
|
|
4086
|
+
stack_region=stack_region,
|
|
3809
4087
|
statistic=statistic,
|
|
3810
4088
|
unit=unit,
|
|
3811
4089
|
)
|
|
@@ -3822,6 +4100,8 @@ class Application(
|
|
|
3822
4100
|
label: typing.Optional[builtins.str] = None,
|
|
3823
4101
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
3824
4102
|
region: typing.Optional[builtins.str] = None,
|
|
4103
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
4104
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
3825
4105
|
statistic: typing.Optional[builtins.str] = None,
|
|
3826
4106
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
3827
4107
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -3841,6 +4121,8 @@ class Application(
|
|
|
3841
4121
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
4122
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3843
4123
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
4124
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
4125
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3844
4126
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
4127
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
3846
4128
|
|
|
@@ -3855,6 +4137,8 @@ class Application(
|
|
|
3855
4137
|
label=label,
|
|
3856
4138
|
period=period,
|
|
3857
4139
|
region=region,
|
|
4140
|
+
stack_account=stack_account,
|
|
4141
|
+
stack_region=stack_region,
|
|
3858
4142
|
statistic=statistic,
|
|
3859
4143
|
unit=unit,
|
|
3860
4144
|
)
|
|
@@ -3871,6 +4155,8 @@ class Application(
|
|
|
3871
4155
|
label: typing.Optional[builtins.str] = None,
|
|
3872
4156
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
3873
4157
|
region: typing.Optional[builtins.str] = None,
|
|
4158
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
4159
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
3874
4160
|
statistic: typing.Optional[builtins.str] = None,
|
|
3875
4161
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
3876
4162
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -3886,6 +4172,8 @@ class Application(
|
|
|
3886
4172
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
4173
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3888
4174
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
4175
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
4176
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3889
4177
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
4178
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
3891
4179
|
|
|
@@ -3900,6 +4188,8 @@ class Application(
|
|
|
3900
4188
|
label=label,
|
|
3901
4189
|
period=period,
|
|
3902
4190
|
region=region,
|
|
4191
|
+
stack_account=stack_account,
|
|
4192
|
+
stack_region=stack_region,
|
|
3903
4193
|
statistic=statistic,
|
|
3904
4194
|
unit=unit,
|
|
3905
4195
|
)
|
|
@@ -3916,6 +4206,8 @@ class Application(
|
|
|
3916
4206
|
label: typing.Optional[builtins.str] = None,
|
|
3917
4207
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
3918
4208
|
region: typing.Optional[builtins.str] = None,
|
|
4209
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
4210
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
3919
4211
|
statistic: typing.Optional[builtins.str] = None,
|
|
3920
4212
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
3921
4213
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -3931,6 +4223,8 @@ class Application(
|
|
|
3931
4223
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
4224
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3933
4225
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
4226
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
4227
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3934
4228
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
4229
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
3936
4230
|
|
|
@@ -3945,6 +4239,8 @@ class Application(
|
|
|
3945
4239
|
label=label,
|
|
3946
4240
|
period=period,
|
|
3947
4241
|
region=region,
|
|
4242
|
+
stack_account=stack_account,
|
|
4243
|
+
stack_region=stack_region,
|
|
3948
4244
|
statistic=statistic,
|
|
3949
4245
|
unit=unit,
|
|
3950
4246
|
)
|
|
@@ -3961,6 +4257,8 @@ class Application(
|
|
|
3961
4257
|
label: typing.Optional[builtins.str] = None,
|
|
3962
4258
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
3963
4259
|
region: typing.Optional[builtins.str] = None,
|
|
4260
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
4261
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
3964
4262
|
statistic: typing.Optional[builtins.str] = None,
|
|
3965
4263
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
3966
4264
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -3976,6 +4274,8 @@ class Application(
|
|
|
3976
4274
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
4275
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
3978
4276
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
4277
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
4278
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
3979
4279
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
4280
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
3981
4281
|
|
|
@@ -3990,6 +4290,8 @@ class Application(
|
|
|
3990
4290
|
label=label,
|
|
3991
4291
|
period=period,
|
|
3992
4292
|
region=region,
|
|
4293
|
+
stack_account=stack_account,
|
|
4294
|
+
stack_region=stack_region,
|
|
3993
4295
|
statistic=statistic,
|
|
3994
4296
|
unit=unit,
|
|
3995
4297
|
)
|
|
@@ -4006,6 +4308,8 @@ class Application(
|
|
|
4006
4308
|
label: typing.Optional[builtins.str] = None,
|
|
4007
4309
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4008
4310
|
region: typing.Optional[builtins.str] = None,
|
|
4311
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
4312
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
4009
4313
|
statistic: typing.Optional[builtins.str] = None,
|
|
4010
4314
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4011
4315
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -4023,6 +4327,8 @@ class Application(
|
|
|
4023
4327
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
4024
4328
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4025
4329
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
4330
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
4331
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4026
4332
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
4027
4333
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
4028
4334
|
|
|
@@ -4037,6 +4343,8 @@ class Application(
|
|
|
4037
4343
|
label=label,
|
|
4038
4344
|
period=period,
|
|
4039
4345
|
region=region,
|
|
4346
|
+
stack_account=stack_account,
|
|
4347
|
+
stack_region=stack_region,
|
|
4040
4348
|
statistic=statistic,
|
|
4041
4349
|
unit=unit,
|
|
4042
4350
|
)
|
|
@@ -4053,6 +4361,8 @@ class Application(
|
|
|
4053
4361
|
label: typing.Optional[builtins.str] = None,
|
|
4054
4362
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4055
4363
|
region: typing.Optional[builtins.str] = None,
|
|
4364
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
4365
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
4056
4366
|
statistic: typing.Optional[builtins.str] = None,
|
|
4057
4367
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4058
4368
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -4072,6 +4382,8 @@ class Application(
|
|
|
4072
4382
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
4383
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4074
4384
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
4385
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
4386
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4075
4387
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
4388
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
4077
4389
|
|
|
@@ -4086,6 +4398,8 @@ class Application(
|
|
|
4086
4398
|
label=label,
|
|
4087
4399
|
period=period,
|
|
4088
4400
|
region=region,
|
|
4401
|
+
stack_account=stack_account,
|
|
4402
|
+
stack_region=stack_region,
|
|
4089
4403
|
statistic=statistic,
|
|
4090
4404
|
unit=unit,
|
|
4091
4405
|
)
|
|
@@ -4102,6 +4416,8 @@ class Application(
|
|
|
4102
4416
|
label: typing.Optional[builtins.str] = None,
|
|
4103
4417
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4104
4418
|
region: typing.Optional[builtins.str] = None,
|
|
4419
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
4420
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
4105
4421
|
statistic: typing.Optional[builtins.str] = None,
|
|
4106
4422
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4107
4423
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -4120,6 +4436,8 @@ class Application(
|
|
|
4120
4436
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
4437
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4122
4438
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
4439
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
4440
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4123
4441
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
4442
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
4125
4443
|
|
|
@@ -4134,6 +4452,8 @@ class Application(
|
|
|
4134
4452
|
label=label,
|
|
4135
4453
|
period=period,
|
|
4136
4454
|
region=region,
|
|
4455
|
+
stack_account=stack_account,
|
|
4456
|
+
stack_region=stack_region,
|
|
4137
4457
|
statistic=statistic,
|
|
4138
4458
|
unit=unit,
|
|
4139
4459
|
)
|
|
@@ -4150,6 +4470,8 @@ class Application(
|
|
|
4150
4470
|
label: typing.Optional[builtins.str] = None,
|
|
4151
4471
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4152
4472
|
region: typing.Optional[builtins.str] = None,
|
|
4473
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
4474
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
4153
4475
|
statistic: typing.Optional[builtins.str] = None,
|
|
4154
4476
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4155
4477
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -4168,6 +4490,8 @@ class Application(
|
|
|
4168
4490
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
4491
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4170
4492
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
4493
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
4494
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4171
4495
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
4496
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
4173
4497
|
|
|
@@ -4182,6 +4506,8 @@ class Application(
|
|
|
4182
4506
|
label=label,
|
|
4183
4507
|
period=period,
|
|
4184
4508
|
region=region,
|
|
4509
|
+
stack_account=stack_account,
|
|
4510
|
+
stack_region=stack_region,
|
|
4185
4511
|
statistic=statistic,
|
|
4186
4512
|
unit=unit,
|
|
4187
4513
|
)
|
|
@@ -4198,6 +4524,8 @@ class Application(
|
|
|
4198
4524
|
label: typing.Optional[builtins.str] = None,
|
|
4199
4525
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4200
4526
|
region: typing.Optional[builtins.str] = None,
|
|
4527
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
4528
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
4201
4529
|
statistic: typing.Optional[builtins.str] = None,
|
|
4202
4530
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4203
4531
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -4213,6 +4541,8 @@ class Application(
|
|
|
4213
4541
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
4542
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4215
4543
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
4544
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
4545
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4216
4546
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
4547
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
4218
4548
|
|
|
@@ -4227,6 +4557,8 @@ class Application(
|
|
|
4227
4557
|
label=label,
|
|
4228
4558
|
period=period,
|
|
4229
4559
|
region=region,
|
|
4560
|
+
stack_account=stack_account,
|
|
4561
|
+
stack_region=stack_region,
|
|
4230
4562
|
statistic=statistic,
|
|
4231
4563
|
unit=unit,
|
|
4232
4564
|
)
|
|
@@ -4243,6 +4575,8 @@ class Application(
|
|
|
4243
4575
|
label: typing.Optional[builtins.str] = None,
|
|
4244
4576
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4245
4577
|
region: typing.Optional[builtins.str] = None,
|
|
4578
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
4579
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
4246
4580
|
statistic: typing.Optional[builtins.str] = None,
|
|
4247
4581
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4248
4582
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -4258,6 +4592,8 @@ class Application(
|
|
|
4258
4592
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
4593
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4260
4594
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
4595
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
4596
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4261
4597
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
4598
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
4263
4599
|
|
|
@@ -4272,6 +4608,8 @@ class Application(
|
|
|
4272
4608
|
label=label,
|
|
4273
4609
|
period=period,
|
|
4274
4610
|
region=region,
|
|
4611
|
+
stack_account=stack_account,
|
|
4612
|
+
stack_region=stack_region,
|
|
4275
4613
|
statistic=statistic,
|
|
4276
4614
|
unit=unit,
|
|
4277
4615
|
)
|
|
@@ -4288,6 +4626,8 @@ class Application(
|
|
|
4288
4626
|
label: typing.Optional[builtins.str] = None,
|
|
4289
4627
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4290
4628
|
region: typing.Optional[builtins.str] = None,
|
|
4629
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
4630
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
4291
4631
|
statistic: typing.Optional[builtins.str] = None,
|
|
4292
4632
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4293
4633
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -4303,6 +4643,8 @@ class Application(
|
|
|
4303
4643
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
4644
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4305
4645
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
4646
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
4647
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4306
4648
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
4649
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
4308
4650
|
|
|
@@ -4317,6 +4659,8 @@ class Application(
|
|
|
4317
4659
|
label=label,
|
|
4318
4660
|
period=period,
|
|
4319
4661
|
region=region,
|
|
4662
|
+
stack_account=stack_account,
|
|
4663
|
+
stack_region=stack_region,
|
|
4320
4664
|
statistic=statistic,
|
|
4321
4665
|
unit=unit,
|
|
4322
4666
|
)
|
|
@@ -4333,6 +4677,8 @@ class Application(
|
|
|
4333
4677
|
label: typing.Optional[builtins.str] = None,
|
|
4334
4678
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4335
4679
|
region: typing.Optional[builtins.str] = None,
|
|
4680
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
4681
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
4336
4682
|
statistic: typing.Optional[builtins.str] = None,
|
|
4337
4683
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4338
4684
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -4348,6 +4694,8 @@ class Application(
|
|
|
4348
4694
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
4695
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4350
4696
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
4697
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
4698
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4351
4699
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
4700
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
4353
4701
|
|
|
@@ -4362,6 +4710,8 @@ class Application(
|
|
|
4362
4710
|
label=label,
|
|
4363
4711
|
period=period,
|
|
4364
4712
|
region=region,
|
|
4713
|
+
stack_account=stack_account,
|
|
4714
|
+
stack_region=stack_region,
|
|
4365
4715
|
statistic=statistic,
|
|
4366
4716
|
unit=unit,
|
|
4367
4717
|
)
|
|
@@ -4378,6 +4728,8 @@ class Application(
|
|
|
4378
4728
|
label: typing.Optional[builtins.str] = None,
|
|
4379
4729
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4380
4730
|
region: typing.Optional[builtins.str] = None,
|
|
4731
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
4732
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
4381
4733
|
statistic: typing.Optional[builtins.str] = None,
|
|
4382
4734
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4383
4735
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -4393,6 +4745,8 @@ class Application(
|
|
|
4393
4745
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
4746
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4395
4747
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
4748
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
4749
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4396
4750
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
4751
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
4398
4752
|
|
|
@@ -4407,6 +4761,8 @@ class Application(
|
|
|
4407
4761
|
label=label,
|
|
4408
4762
|
period=period,
|
|
4409
4763
|
region=region,
|
|
4764
|
+
stack_account=stack_account,
|
|
4765
|
+
stack_region=stack_region,
|
|
4410
4766
|
statistic=statistic,
|
|
4411
4767
|
unit=unit,
|
|
4412
4768
|
)
|
|
@@ -4423,6 +4779,8 @@ class Application(
|
|
|
4423
4779
|
label: typing.Optional[builtins.str] = None,
|
|
4424
4780
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4425
4781
|
region: typing.Optional[builtins.str] = None,
|
|
4782
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
4783
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
4426
4784
|
statistic: typing.Optional[builtins.str] = None,
|
|
4427
4785
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4428
4786
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -4438,6 +4796,8 @@ class Application(
|
|
|
4438
4796
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
4797
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4440
4798
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
4799
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
4800
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4441
4801
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
4802
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
4443
4803
|
|
|
@@ -4452,6 +4812,8 @@ class Application(
|
|
|
4452
4812
|
label=label,
|
|
4453
4813
|
period=period,
|
|
4454
4814
|
region=region,
|
|
4815
|
+
stack_account=stack_account,
|
|
4816
|
+
stack_region=stack_region,
|
|
4455
4817
|
statistic=statistic,
|
|
4456
4818
|
unit=unit,
|
|
4457
4819
|
)
|
|
@@ -4468,6 +4830,8 @@ class Application(
|
|
|
4468
4830
|
label: typing.Optional[builtins.str] = None,
|
|
4469
4831
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4470
4832
|
region: typing.Optional[builtins.str] = None,
|
|
4833
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
4834
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
4471
4835
|
statistic: typing.Optional[builtins.str] = None,
|
|
4472
4836
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4473
4837
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -4483,6 +4847,8 @@ class Application(
|
|
|
4483
4847
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
4848
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4485
4849
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
4850
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
4851
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4486
4852
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
4853
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
4488
4854
|
|
|
@@ -4497,6 +4863,8 @@ class Application(
|
|
|
4497
4863
|
label=label,
|
|
4498
4864
|
period=period,
|
|
4499
4865
|
region=region,
|
|
4866
|
+
stack_account=stack_account,
|
|
4867
|
+
stack_region=stack_region,
|
|
4500
4868
|
statistic=statistic,
|
|
4501
4869
|
unit=unit,
|
|
4502
4870
|
)
|
|
@@ -4513,6 +4881,8 @@ class Application(
|
|
|
4513
4881
|
label: typing.Optional[builtins.str] = None,
|
|
4514
4882
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4515
4883
|
region: typing.Optional[builtins.str] = None,
|
|
4884
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
4885
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
4516
4886
|
statistic: typing.Optional[builtins.str] = None,
|
|
4517
4887
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4518
4888
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -4528,6 +4898,8 @@ class Application(
|
|
|
4528
4898
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
4899
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4530
4900
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
4901
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
4902
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4531
4903
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
4904
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
4533
4905
|
|
|
@@ -4542,6 +4914,8 @@ class Application(
|
|
|
4542
4914
|
label=label,
|
|
4543
4915
|
period=period,
|
|
4544
4916
|
region=region,
|
|
4917
|
+
stack_account=stack_account,
|
|
4918
|
+
stack_region=stack_region,
|
|
4545
4919
|
statistic=statistic,
|
|
4546
4920
|
unit=unit,
|
|
4547
4921
|
)
|
|
@@ -4558,6 +4932,8 @@ class Application(
|
|
|
4558
4932
|
label: typing.Optional[builtins.str] = None,
|
|
4559
4933
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4560
4934
|
region: typing.Optional[builtins.str] = None,
|
|
4935
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
4936
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
4561
4937
|
statistic: typing.Optional[builtins.str] = None,
|
|
4562
4938
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4563
4939
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -4573,6 +4949,8 @@ class Application(
|
|
|
4573
4949
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
4950
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4575
4951
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
4952
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
4953
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4576
4954
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
4955
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
4578
4956
|
|
|
@@ -4587,6 +4965,8 @@ class Application(
|
|
|
4587
4965
|
label=label,
|
|
4588
4966
|
period=period,
|
|
4589
4967
|
region=region,
|
|
4968
|
+
stack_account=stack_account,
|
|
4969
|
+
stack_region=stack_region,
|
|
4590
4970
|
statistic=statistic,
|
|
4591
4971
|
unit=unit,
|
|
4592
4972
|
)
|
|
@@ -4603,6 +4983,8 @@ class Application(
|
|
|
4603
4983
|
label: typing.Optional[builtins.str] = None,
|
|
4604
4984
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4605
4985
|
region: typing.Optional[builtins.str] = None,
|
|
4986
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
4987
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
4606
4988
|
statistic: typing.Optional[builtins.str] = None,
|
|
4607
4989
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4608
4990
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -4618,6 +5000,8 @@ class Application(
|
|
|
4618
5000
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
5001
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4620
5002
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
5003
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
5004
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4621
5005
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
5006
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
4623
5007
|
|
|
@@ -4632,6 +5016,8 @@ class Application(
|
|
|
4632
5016
|
label=label,
|
|
4633
5017
|
period=period,
|
|
4634
5018
|
region=region,
|
|
5019
|
+
stack_account=stack_account,
|
|
5020
|
+
stack_region=stack_region,
|
|
4635
5021
|
statistic=statistic,
|
|
4636
5022
|
unit=unit,
|
|
4637
5023
|
)
|
|
@@ -4648,6 +5034,8 @@ class Application(
|
|
|
4648
5034
|
label: typing.Optional[builtins.str] = None,
|
|
4649
5035
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4650
5036
|
region: typing.Optional[builtins.str] = None,
|
|
5037
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
5038
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
4651
5039
|
statistic: typing.Optional[builtins.str] = None,
|
|
4652
5040
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4653
5041
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -4663,6 +5051,8 @@ class Application(
|
|
|
4663
5051
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
5052
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4665
5053
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
5054
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
5055
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4666
5056
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
5057
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, 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
5058
|
|
|
@@ -4677,6 +5067,8 @@ class Application(
|
|
|
4677
5067
|
label=label,
|
|
4678
5068
|
period=period,
|
|
4679
5069
|
region=region,
|
|
5070
|
+
stack_account=stack_account,
|
|
5071
|
+
stack_region=stack_region,
|
|
4680
5072
|
statistic=statistic,
|
|
4681
5073
|
unit=unit,
|
|
4682
5074
|
)
|
|
@@ -4693,6 +5085,8 @@ class Application(
|
|
|
4693
5085
|
label: typing.Optional[builtins.str] = None,
|
|
4694
5086
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4695
5087
|
region: typing.Optional[builtins.str] = None,
|
|
5088
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
5089
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
4696
5090
|
statistic: typing.Optional[builtins.str] = None,
|
|
4697
5091
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4698
5092
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -4708,6 +5102,8 @@ class Application(
|
|
|
4708
5102
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
5103
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4710
5104
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
5105
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
5106
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4711
5107
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
5108
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
4713
5109
|
|
|
@@ -4722,6 +5118,8 @@ class Application(
|
|
|
4722
5118
|
label=label,
|
|
4723
5119
|
period=period,
|
|
4724
5120
|
region=region,
|
|
5121
|
+
stack_account=stack_account,
|
|
5122
|
+
stack_region=stack_region,
|
|
4725
5123
|
statistic=statistic,
|
|
4726
5124
|
unit=unit,
|
|
4727
5125
|
)
|
|
@@ -4738,6 +5136,8 @@ class Application(
|
|
|
4738
5136
|
label: typing.Optional[builtins.str] = None,
|
|
4739
5137
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4740
5138
|
region: typing.Optional[builtins.str] = None,
|
|
5139
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
5140
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
4741
5141
|
statistic: typing.Optional[builtins.str] = None,
|
|
4742
5142
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4743
5143
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -4753,6 +5153,8 @@ class Application(
|
|
|
4753
5153
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
5154
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4755
5155
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
5156
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
5157
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4756
5158
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
5159
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
4758
5160
|
|
|
@@ -4767,6 +5169,8 @@ class Application(
|
|
|
4767
5169
|
label=label,
|
|
4768
5170
|
period=period,
|
|
4769
5171
|
region=region,
|
|
5172
|
+
stack_account=stack_account,
|
|
5173
|
+
stack_region=stack_region,
|
|
4770
5174
|
statistic=statistic,
|
|
4771
5175
|
unit=unit,
|
|
4772
5176
|
)
|
|
@@ -4783,6 +5187,8 @@ class Application(
|
|
|
4783
5187
|
label: typing.Optional[builtins.str] = None,
|
|
4784
5188
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4785
5189
|
region: typing.Optional[builtins.str] = None,
|
|
5190
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
5191
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
4786
5192
|
statistic: typing.Optional[builtins.str] = None,
|
|
4787
5193
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4788
5194
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -4798,6 +5204,8 @@ class Application(
|
|
|
4798
5204
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, 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
5205
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4800
5206
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
5207
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
5208
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4801
5209
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "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
5210
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
4803
5211
|
|
|
@@ -4812,6 +5220,8 @@ class Application(
|
|
|
4812
5220
|
label=label,
|
|
4813
5221
|
period=period,
|
|
4814
5222
|
region=region,
|
|
5223
|
+
stack_account=stack_account,
|
|
5224
|
+
stack_region=stack_region,
|
|
4815
5225
|
statistic=statistic,
|
|
4816
5226
|
unit=unit,
|
|
4817
5227
|
)
|
|
@@ -4828,6 +5238,8 @@ class Application(
|
|
|
4828
5238
|
label: typing.Optional[builtins.str] = None,
|
|
4829
5239
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
4830
5240
|
region: typing.Optional[builtins.str] = None,
|
|
5241
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
5242
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
4831
5243
|
statistic: typing.Optional[builtins.str] = None,
|
|
4832
5244
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
4833
5245
|
) -> _aws_cdk_aws_cloudwatch_ceddda9d.Metric:
|
|
@@ -4843,6 +5255,8 @@ class Application(
|
|
|
4843
5255
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
4844
5256
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
4845
5257
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
5258
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
5259
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
4846
5260
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
4847
5261
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
4848
5262
|
|
|
@@ -4857,6 +5271,8 @@ class Application(
|
|
|
4857
5271
|
label=label,
|
|
4858
5272
|
period=period,
|
|
4859
5273
|
region=region,
|
|
5274
|
+
stack_account=stack_account,
|
|
5275
|
+
stack_region=stack_region,
|
|
4860
5276
|
statistic=statistic,
|
|
4861
5277
|
unit=unit,
|
|
4862
5278
|
)
|
|
@@ -5010,6 +5426,8 @@ def _typecheckingstub__097540094b7582e7d789cf6a116b80ddef50d6da32ceb164de5da9561
|
|
|
5010
5426
|
label: typing.Optional[builtins.str] = None,
|
|
5011
5427
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
5012
5428
|
region: typing.Optional[builtins.str] = None,
|
|
5429
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
5430
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
5013
5431
|
statistic: typing.Optional[builtins.str] = None,
|
|
5014
5432
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
5015
5433
|
) -> None:
|
|
@@ -5090,6 +5508,8 @@ def _typecheckingstub__bd7be1e816d1e378b989c42da53244077b88147554f5269f162bf7af5
|
|
|
5090
5508
|
label: typing.Optional[builtins.str] = None,
|
|
5091
5509
|
period: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
|
|
5092
5510
|
region: typing.Optional[builtins.str] = None,
|
|
5511
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
5512
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
5093
5513
|
statistic: typing.Optional[builtins.str] = None,
|
|
5094
5514
|
unit: typing.Optional[_aws_cdk_aws_cloudwatch_ceddda9d.Unit] = None,
|
|
5095
5515
|
) -> None:
|