aws-cdk-lib 2.174.0__py3-none-any.whl → 2.175.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of aws-cdk-lib might be problematic. Click here for more details.
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.174.0.jsii.tgz → aws-cdk-lib@2.175.0.jsii.tgz} +0 -0
- aws_cdk/aws_amazonmq/__init__.py +18 -0
- aws_cdk/aws_apigateway/__init__.py +164 -0
- aws_cdk/aws_apigatewayv2/__init__.py +248 -0
- aws_cdk/aws_applicationautoscaling/__init__.py +6 -3
- aws_cdk/aws_autoscaling/__init__.py +8 -8
- aws_cdk/aws_batch/__init__.py +32 -458
- aws_cdk/aws_bedrock/__init__.py +7 -4
- aws_cdk/aws_certificatemanager/__init__.py +28 -0
- aws_cdk/aws_chatbot/__init__.py +28 -0
- aws_cdk/aws_cleanrooms/__init__.py +683 -2
- aws_cdk/aws_cloudfront/__init__.py +92 -0
- aws_cdk/aws_cloudfront/experimental/__init__.py +32 -0
- aws_cdk/aws_cloudwatch/__init__.py +146 -0
- aws_cdk/aws_codebuild/__init__.py +84 -0
- aws_cdk/aws_dms/__init__.py +49 -27
- aws_cdk/aws_docdb/__init__.py +134 -0
- aws_cdk/aws_dynamodb/__init__.py +300 -0
- aws_cdk/aws_ec2/__init__.py +97 -0
- aws_cdk/aws_ecs/__init__.py +351 -110
- aws_cdk/aws_ecs_patterns/__init__.py +77 -42
- aws_cdk/aws_elasticloadbalancing/__init__.py +3 -6
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +732 -7
- aws_cdk/aws_elasticsearch/__init__.py +260 -0
- aws_cdk/aws_kinesis/__init__.py +324 -0
- aws_cdk/aws_kms/__init__.py +197 -0
- aws_cdk/aws_lambda/__init__.py +144 -0
- aws_cdk/aws_logs/__init__.py +58 -0
- aws_cdk/aws_mediaconvert/__init__.py +39 -0
- aws_cdk/aws_opensearchservice/__init__.py +260 -0
- aws_cdk/aws_quicksight/__init__.py +1422 -859
- aws_cdk/aws_rds/__init__.py +386 -7
- aws_cdk/aws_sagemaker/__init__.py +6 -6
- aws_cdk/aws_sns/__init__.py +164 -0
- aws_cdk/aws_sqs/__init__.py +164 -0
- aws_cdk/aws_stepfunctions/__init__.py +288 -0
- aws_cdk/aws_synthetics/__init__.py +18 -0
- aws_cdk/cx_api/__init__.py +42 -0
- {aws_cdk_lib-2.174.0.dist-info → aws_cdk_lib-2.175.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.174.0.dist-info → aws_cdk_lib-2.175.0.dist-info}/RECORD +45 -45
- {aws_cdk_lib-2.174.0.dist-info → aws_cdk_lib-2.175.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.174.0.dist-info → aws_cdk_lib-2.175.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.174.0.dist-info → aws_cdk_lib-2.175.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.174.0.dist-info → aws_cdk_lib-2.175.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_rds/__init__.py
CHANGED
|
@@ -5053,7 +5053,7 @@ class CfnDBCluster(
|
|
|
5053
5053
|
:param domain_iam_role_name: Specifies the name of the IAM role to use when making API calls to the Directory Service. Valid for: Aurora DB clusters only
|
|
5054
5054
|
:param enable_cloudwatch_logs_exports: The list of log types that need to be enabled for exporting to CloudWatch Logs. The values in the list depend on the DB engine being used. For more information, see `Publishing Database Logs to Amazon CloudWatch Logs <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch>`_ in the *Amazon Aurora User Guide* . *Aurora MySQL* Valid values: ``audit`` , ``error`` , ``general`` , ``slowquery`` *Aurora PostgreSQL* Valid values: ``postgresql`` Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
|
5055
5055
|
:param enable_global_write_forwarding: Specifies whether to enable this DB cluster to forward write operations to the primary cluster of a global cluster (Aurora global database). By default, write operations are not allowed on Aurora DB clusters that are secondary clusters in an Aurora global database. You can set this value only on Aurora DB clusters that are members of an Aurora global database. With this parameter enabled, a secondary cluster can forward writes to the current primary cluster, and the resulting changes are replicated back to this cluster. For the primary DB cluster of an Aurora global database, this value is used immediately if the primary is demoted by a global cluster API operation, but it does nothing until then. Valid for Cluster Type: Aurora DB clusters only
|
|
5056
|
-
:param enable_http_endpoint: Specifies whether to enable the HTTP endpoint for the DB cluster. By default, the HTTP endpoint isn't enabled. When enabled, the HTTP endpoint provides a connectionless web service API (RDS Data API) for running SQL queries on the DB cluster. You can also query your database from inside the RDS console with the RDS query editor.
|
|
5056
|
+
:param enable_http_endpoint: Specifies whether to enable the HTTP endpoint for the DB cluster. By default, the HTTP endpoint isn't enabled. When enabled, the HTTP endpoint provides a connectionless web service API (RDS Data API) for running SQL queries on the DB cluster. You can also query your database from inside the RDS console with the RDS query editor. For more information, see `Using RDS Data API <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html>`_ in the *Amazon Aurora User Guide* . Valid for Cluster Type: Aurora DB clusters only
|
|
5057
5057
|
:param enable_iam_database_authentication: A value that indicates whether to enable mapping of AWS Identity and Access Management (IAM) accounts to database accounts. By default, mapping is disabled. For more information, see `IAM Database Authentication <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html>`_ in the *Amazon Aurora User Guide.* Valid for: Aurora DB clusters only
|
|
5058
5058
|
:param enable_local_write_forwarding: Specifies whether read replicas can forward write operations to the writer DB instance in the DB cluster. By default, write operations aren't allowed on reader DB instances. Valid for: Aurora DB clusters only
|
|
5059
5059
|
:param engine: The name of the database engine to be used for this DB cluster. Valid Values: - ``aurora-mysql`` - ``aurora-postgresql`` - ``mysql`` - ``postgres`` Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
|
@@ -7247,7 +7247,7 @@ class CfnDBClusterProps:
|
|
|
7247
7247
|
:param domain_iam_role_name: Specifies the name of the IAM role to use when making API calls to the Directory Service. Valid for: Aurora DB clusters only
|
|
7248
7248
|
:param enable_cloudwatch_logs_exports: The list of log types that need to be enabled for exporting to CloudWatch Logs. The values in the list depend on the DB engine being used. For more information, see `Publishing Database Logs to Amazon CloudWatch Logs <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch>`_ in the *Amazon Aurora User Guide* . *Aurora MySQL* Valid values: ``audit`` , ``error`` , ``general`` , ``slowquery`` *Aurora PostgreSQL* Valid values: ``postgresql`` Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
|
7249
7249
|
:param enable_global_write_forwarding: Specifies whether to enable this DB cluster to forward write operations to the primary cluster of a global cluster (Aurora global database). By default, write operations are not allowed on Aurora DB clusters that are secondary clusters in an Aurora global database. You can set this value only on Aurora DB clusters that are members of an Aurora global database. With this parameter enabled, a secondary cluster can forward writes to the current primary cluster, and the resulting changes are replicated back to this cluster. For the primary DB cluster of an Aurora global database, this value is used immediately if the primary is demoted by a global cluster API operation, but it does nothing until then. Valid for Cluster Type: Aurora DB clusters only
|
|
7250
|
-
:param enable_http_endpoint: Specifies whether to enable the HTTP endpoint for the DB cluster. By default, the HTTP endpoint isn't enabled. When enabled, the HTTP endpoint provides a connectionless web service API (RDS Data API) for running SQL queries on the DB cluster. You can also query your database from inside the RDS console with the RDS query editor.
|
|
7250
|
+
:param enable_http_endpoint: Specifies whether to enable the HTTP endpoint for the DB cluster. By default, the HTTP endpoint isn't enabled. When enabled, the HTTP endpoint provides a connectionless web service API (RDS Data API) for running SQL queries on the DB cluster. You can also query your database from inside the RDS console with the RDS query editor. For more information, see `Using RDS Data API <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html>`_ in the *Amazon Aurora User Guide* . Valid for Cluster Type: Aurora DB clusters only
|
|
7251
7251
|
:param enable_iam_database_authentication: A value that indicates whether to enable mapping of AWS Identity and Access Management (IAM) accounts to database accounts. By default, mapping is disabled. For more information, see `IAM Database Authentication <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html>`_ in the *Amazon Aurora User Guide.* Valid for: Aurora DB clusters only
|
|
7252
7252
|
:param enable_local_write_forwarding: Specifies whether read replicas can forward write operations to the writer DB instance in the DB cluster. By default, write operations aren't allowed on reader DB instances. Valid for: Aurora DB clusters only
|
|
7253
7253
|
:param engine: The name of the database engine to be used for this DB cluster. Valid Values: - ``aurora-mysql`` - ``aurora-postgresql`` - ``mysql`` - ``postgres`` Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
|
@@ -7887,11 +7887,6 @@ class CfnDBClusterProps:
|
|
|
7887
7887
|
|
|
7888
7888
|
When enabled, the HTTP endpoint provides a connectionless web service API (RDS Data API) for running SQL queries on the DB cluster. You can also query your database from inside the RDS console with the RDS query editor.
|
|
7889
7889
|
|
|
7890
|
-
RDS Data API is supported with the following DB clusters:
|
|
7891
|
-
|
|
7892
|
-
- Aurora PostgreSQL Serverless v2 and provisioned
|
|
7893
|
-
- Aurora PostgreSQL and Aurora MySQL Serverless v1
|
|
7894
|
-
|
|
7895
7890
|
For more information, see `Using RDS Data API <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html>`_ in the *Amazon Aurora User Guide* .
|
|
7896
7891
|
|
|
7897
7892
|
Valid for Cluster Type: Aurora DB clusters only
|
|
@@ -27221,6 +27216,8 @@ class IDatabaseCluster(
|
|
|
27221
27216
|
label: typing.Optional[builtins.str] = None,
|
|
27222
27217
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
27223
27218
|
region: typing.Optional[builtins.str] = None,
|
|
27219
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
27220
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
27224
27221
|
statistic: typing.Optional[builtins.str] = None,
|
|
27225
27222
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
27226
27223
|
) -> _Metric_e396a4dc:
|
|
@@ -27233,6 +27230,8 @@ class IDatabaseCluster(
|
|
|
27233
27230
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
27234
27231
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
27235
27232
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
27233
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
27234
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
27236
27235
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
27237
27236
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
27238
27237
|
'''
|
|
@@ -27248,6 +27247,8 @@ class IDatabaseCluster(
|
|
|
27248
27247
|
label: typing.Optional[builtins.str] = None,
|
|
27249
27248
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
27250
27249
|
region: typing.Optional[builtins.str] = None,
|
|
27250
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
27251
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
27251
27252
|
statistic: typing.Optional[builtins.str] = None,
|
|
27252
27253
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
27253
27254
|
) -> _Metric_e396a4dc:
|
|
@@ -27261,6 +27262,8 @@ class IDatabaseCluster(
|
|
|
27261
27262
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
27262
27263
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
27263
27264
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
27265
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
27266
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
27264
27267
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
27265
27268
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
27266
27269
|
'''
|
|
@@ -27276,6 +27279,8 @@ class IDatabaseCluster(
|
|
|
27276
27279
|
label: typing.Optional[builtins.str] = None,
|
|
27277
27280
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
27278
27281
|
region: typing.Optional[builtins.str] = None,
|
|
27282
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
27283
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
27279
27284
|
statistic: typing.Optional[builtins.str] = None,
|
|
27280
27285
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
27281
27286
|
) -> _Metric_e396a4dc:
|
|
@@ -27289,6 +27294,8 @@ class IDatabaseCluster(
|
|
|
27289
27294
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
27290
27295
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
27291
27296
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
27297
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
27298
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
27292
27299
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
27293
27300
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
27294
27301
|
'''
|
|
@@ -27304,6 +27311,8 @@ class IDatabaseCluster(
|
|
|
27304
27311
|
label: typing.Optional[builtins.str] = None,
|
|
27305
27312
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
27306
27313
|
region: typing.Optional[builtins.str] = None,
|
|
27314
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
27315
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
27307
27316
|
statistic: typing.Optional[builtins.str] = None,
|
|
27308
27317
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
27309
27318
|
) -> _Metric_e396a4dc:
|
|
@@ -27317,6 +27326,8 @@ class IDatabaseCluster(
|
|
|
27317
27326
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
27318
27327
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
27319
27328
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
27329
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
27330
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
27320
27331
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
27321
27332
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
27322
27333
|
'''
|
|
@@ -27332,6 +27343,8 @@ class IDatabaseCluster(
|
|
|
27332
27343
|
label: typing.Optional[builtins.str] = None,
|
|
27333
27344
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
27334
27345
|
region: typing.Optional[builtins.str] = None,
|
|
27346
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
27347
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
27335
27348
|
statistic: typing.Optional[builtins.str] = None,
|
|
27336
27349
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
27337
27350
|
) -> _Metric_e396a4dc:
|
|
@@ -27345,6 +27358,8 @@ class IDatabaseCluster(
|
|
|
27345
27358
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
27346
27359
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
27347
27360
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
27361
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
27362
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
27348
27363
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
27349
27364
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
27350
27365
|
'''
|
|
@@ -27360,6 +27375,8 @@ class IDatabaseCluster(
|
|
|
27360
27375
|
label: typing.Optional[builtins.str] = None,
|
|
27361
27376
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
27362
27377
|
region: typing.Optional[builtins.str] = None,
|
|
27378
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
27379
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
27363
27380
|
statistic: typing.Optional[builtins.str] = None,
|
|
27364
27381
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
27365
27382
|
) -> _Metric_e396a4dc:
|
|
@@ -27373,6 +27390,8 @@ class IDatabaseCluster(
|
|
|
27373
27390
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
27374
27391
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
27375
27392
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
27393
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
27394
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
27376
27395
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
27377
27396
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
27378
27397
|
'''
|
|
@@ -27388,6 +27407,8 @@ class IDatabaseCluster(
|
|
|
27388
27407
|
label: typing.Optional[builtins.str] = None,
|
|
27389
27408
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
27390
27409
|
region: typing.Optional[builtins.str] = None,
|
|
27410
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
27411
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
27391
27412
|
statistic: typing.Optional[builtins.str] = None,
|
|
27392
27413
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
27393
27414
|
) -> _Metric_e396a4dc:
|
|
@@ -27401,6 +27422,8 @@ class IDatabaseCluster(
|
|
|
27401
27422
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
27402
27423
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
27403
27424
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
27425
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
27426
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
27404
27427
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
27405
27428
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
27406
27429
|
'''
|
|
@@ -27416,6 +27439,8 @@ class IDatabaseCluster(
|
|
|
27416
27439
|
label: typing.Optional[builtins.str] = None,
|
|
27417
27440
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
27418
27441
|
region: typing.Optional[builtins.str] = None,
|
|
27442
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
27443
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
27419
27444
|
statistic: typing.Optional[builtins.str] = None,
|
|
27420
27445
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
27421
27446
|
) -> _Metric_e396a4dc:
|
|
@@ -27429,6 +27454,8 @@ class IDatabaseCluster(
|
|
|
27429
27454
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
27430
27455
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
27431
27456
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
27457
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
27458
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
27432
27459
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
27433
27460
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
27434
27461
|
'''
|
|
@@ -27444,6 +27471,8 @@ class IDatabaseCluster(
|
|
|
27444
27471
|
label: typing.Optional[builtins.str] = None,
|
|
27445
27472
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
27446
27473
|
region: typing.Optional[builtins.str] = None,
|
|
27474
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
27475
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
27447
27476
|
statistic: typing.Optional[builtins.str] = None,
|
|
27448
27477
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
27449
27478
|
) -> _Metric_e396a4dc:
|
|
@@ -27457,6 +27486,8 @@ class IDatabaseCluster(
|
|
|
27457
27486
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
27458
27487
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
27459
27488
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
27489
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
27490
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
27460
27491
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
27461
27492
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
27462
27493
|
'''
|
|
@@ -27472,6 +27503,8 @@ class IDatabaseCluster(
|
|
|
27472
27503
|
label: typing.Optional[builtins.str] = None,
|
|
27473
27504
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
27474
27505
|
region: typing.Optional[builtins.str] = None,
|
|
27506
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
27507
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
27475
27508
|
statistic: typing.Optional[builtins.str] = None,
|
|
27476
27509
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
27477
27510
|
) -> _Metric_e396a4dc:
|
|
@@ -27485,6 +27518,8 @@ class IDatabaseCluster(
|
|
|
27485
27518
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
27486
27519
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
27487
27520
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
27521
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
27522
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
27488
27523
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
27489
27524
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
27490
27525
|
'''
|
|
@@ -27500,6 +27535,8 @@ class IDatabaseCluster(
|
|
|
27500
27535
|
label: typing.Optional[builtins.str] = None,
|
|
27501
27536
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
27502
27537
|
region: typing.Optional[builtins.str] = None,
|
|
27538
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
27539
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
27503
27540
|
statistic: typing.Optional[builtins.str] = None,
|
|
27504
27541
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
27505
27542
|
) -> _Metric_e396a4dc:
|
|
@@ -27513,6 +27550,8 @@ class IDatabaseCluster(
|
|
|
27513
27550
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
27514
27551
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
27515
27552
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
27553
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
27554
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
27516
27555
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
27517
27556
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
27518
27557
|
'''
|
|
@@ -27528,6 +27567,8 @@ class IDatabaseCluster(
|
|
|
27528
27567
|
label: typing.Optional[builtins.str] = None,
|
|
27529
27568
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
27530
27569
|
region: typing.Optional[builtins.str] = None,
|
|
27570
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
27571
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
27531
27572
|
statistic: typing.Optional[builtins.str] = None,
|
|
27532
27573
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
27533
27574
|
) -> _Metric_e396a4dc:
|
|
@@ -27541,6 +27582,8 @@ class IDatabaseCluster(
|
|
|
27541
27582
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
27542
27583
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
27543
27584
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
27585
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
27586
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
27544
27587
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
27545
27588
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
27546
27589
|
'''
|
|
@@ -27556,6 +27599,8 @@ class IDatabaseCluster(
|
|
|
27556
27599
|
label: typing.Optional[builtins.str] = None,
|
|
27557
27600
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
27558
27601
|
region: typing.Optional[builtins.str] = None,
|
|
27602
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
27603
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
27559
27604
|
statistic: typing.Optional[builtins.str] = None,
|
|
27560
27605
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
27561
27606
|
) -> _Metric_e396a4dc:
|
|
@@ -27569,6 +27614,8 @@ class IDatabaseCluster(
|
|
|
27569
27614
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
27570
27615
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
27571
27616
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
27617
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
27618
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
27572
27619
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
27573
27620
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
27574
27621
|
'''
|
|
@@ -27584,6 +27631,8 @@ class IDatabaseCluster(
|
|
|
27584
27631
|
label: typing.Optional[builtins.str] = None,
|
|
27585
27632
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
27586
27633
|
region: typing.Optional[builtins.str] = None,
|
|
27634
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
27635
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
27587
27636
|
statistic: typing.Optional[builtins.str] = None,
|
|
27588
27637
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
27589
27638
|
) -> _Metric_e396a4dc:
|
|
@@ -27597,6 +27646,8 @@ class IDatabaseCluster(
|
|
|
27597
27646
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
27598
27647
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
27599
27648
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
27649
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
27650
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
27600
27651
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
27601
27652
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
27602
27653
|
'''
|
|
@@ -27612,6 +27663,8 @@ class IDatabaseCluster(
|
|
|
27612
27663
|
label: typing.Optional[builtins.str] = None,
|
|
27613
27664
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
27614
27665
|
region: typing.Optional[builtins.str] = None,
|
|
27666
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
27667
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
27615
27668
|
statistic: typing.Optional[builtins.str] = None,
|
|
27616
27669
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
27617
27670
|
) -> _Metric_e396a4dc:
|
|
@@ -27625,6 +27678,8 @@ class IDatabaseCluster(
|
|
|
27625
27678
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
27626
27679
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
27627
27680
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
27681
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
27682
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
27628
27683
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
27629
27684
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
27630
27685
|
'''
|
|
@@ -27805,6 +27860,8 @@ class _IDatabaseClusterProxy(
|
|
|
27805
27860
|
label: typing.Optional[builtins.str] = None,
|
|
27806
27861
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
27807
27862
|
region: typing.Optional[builtins.str] = None,
|
|
27863
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
27864
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
27808
27865
|
statistic: typing.Optional[builtins.str] = None,
|
|
27809
27866
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
27810
27867
|
) -> _Metric_e396a4dc:
|
|
@@ -27817,6 +27874,8 @@ class _IDatabaseClusterProxy(
|
|
|
27817
27874
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
27818
27875
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
27819
27876
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
27877
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
27878
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
27820
27879
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
27821
27880
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
27822
27881
|
'''
|
|
@@ -27830,6 +27889,8 @@ class _IDatabaseClusterProxy(
|
|
|
27830
27889
|
label=label,
|
|
27831
27890
|
period=period,
|
|
27832
27891
|
region=region,
|
|
27892
|
+
stack_account=stack_account,
|
|
27893
|
+
stack_region=stack_region,
|
|
27833
27894
|
statistic=statistic,
|
|
27834
27895
|
unit=unit,
|
|
27835
27896
|
)
|
|
@@ -27846,6 +27907,8 @@ class _IDatabaseClusterProxy(
|
|
|
27846
27907
|
label: typing.Optional[builtins.str] = None,
|
|
27847
27908
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
27848
27909
|
region: typing.Optional[builtins.str] = None,
|
|
27910
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
27911
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
27849
27912
|
statistic: typing.Optional[builtins.str] = None,
|
|
27850
27913
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
27851
27914
|
) -> _Metric_e396a4dc:
|
|
@@ -27859,6 +27922,8 @@ class _IDatabaseClusterProxy(
|
|
|
27859
27922
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
27860
27923
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
27861
27924
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
27925
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
27926
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
27862
27927
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
27863
27928
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
27864
27929
|
'''
|
|
@@ -27869,6 +27934,8 @@ class _IDatabaseClusterProxy(
|
|
|
27869
27934
|
label=label,
|
|
27870
27935
|
period=period,
|
|
27871
27936
|
region=region,
|
|
27937
|
+
stack_account=stack_account,
|
|
27938
|
+
stack_region=stack_region,
|
|
27872
27939
|
statistic=statistic,
|
|
27873
27940
|
unit=unit,
|
|
27874
27941
|
)
|
|
@@ -27885,6 +27952,8 @@ class _IDatabaseClusterProxy(
|
|
|
27885
27952
|
label: typing.Optional[builtins.str] = None,
|
|
27886
27953
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
27887
27954
|
region: typing.Optional[builtins.str] = None,
|
|
27955
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
27956
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
27888
27957
|
statistic: typing.Optional[builtins.str] = None,
|
|
27889
27958
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
27890
27959
|
) -> _Metric_e396a4dc:
|
|
@@ -27898,6 +27967,8 @@ class _IDatabaseClusterProxy(
|
|
|
27898
27967
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
27899
27968
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
27900
27969
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
27970
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
27971
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
27901
27972
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
27902
27973
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
27903
27974
|
'''
|
|
@@ -27908,6 +27979,8 @@ class _IDatabaseClusterProxy(
|
|
|
27908
27979
|
label=label,
|
|
27909
27980
|
period=period,
|
|
27910
27981
|
region=region,
|
|
27982
|
+
stack_account=stack_account,
|
|
27983
|
+
stack_region=stack_region,
|
|
27911
27984
|
statistic=statistic,
|
|
27912
27985
|
unit=unit,
|
|
27913
27986
|
)
|
|
@@ -27924,6 +27997,8 @@ class _IDatabaseClusterProxy(
|
|
|
27924
27997
|
label: typing.Optional[builtins.str] = None,
|
|
27925
27998
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
27926
27999
|
region: typing.Optional[builtins.str] = None,
|
|
28000
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28001
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
27927
28002
|
statistic: typing.Optional[builtins.str] = None,
|
|
27928
28003
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
27929
28004
|
) -> _Metric_e396a4dc:
|
|
@@ -27937,6 +28012,8 @@ class _IDatabaseClusterProxy(
|
|
|
27937
28012
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
27938
28013
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
27939
28014
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28015
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28016
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
27940
28017
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
27941
28018
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
27942
28019
|
'''
|
|
@@ -27947,6 +28024,8 @@ class _IDatabaseClusterProxy(
|
|
|
27947
28024
|
label=label,
|
|
27948
28025
|
period=period,
|
|
27949
28026
|
region=region,
|
|
28027
|
+
stack_account=stack_account,
|
|
28028
|
+
stack_region=stack_region,
|
|
27950
28029
|
statistic=statistic,
|
|
27951
28030
|
unit=unit,
|
|
27952
28031
|
)
|
|
@@ -27963,6 +28042,8 @@ class _IDatabaseClusterProxy(
|
|
|
27963
28042
|
label: typing.Optional[builtins.str] = None,
|
|
27964
28043
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
27965
28044
|
region: typing.Optional[builtins.str] = None,
|
|
28045
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28046
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
27966
28047
|
statistic: typing.Optional[builtins.str] = None,
|
|
27967
28048
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
27968
28049
|
) -> _Metric_e396a4dc:
|
|
@@ -27976,6 +28057,8 @@ class _IDatabaseClusterProxy(
|
|
|
27976
28057
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
27977
28058
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
27978
28059
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28060
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28061
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
27979
28062
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
27980
28063
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
27981
28064
|
'''
|
|
@@ -27986,6 +28069,8 @@ class _IDatabaseClusterProxy(
|
|
|
27986
28069
|
label=label,
|
|
27987
28070
|
period=period,
|
|
27988
28071
|
region=region,
|
|
28072
|
+
stack_account=stack_account,
|
|
28073
|
+
stack_region=stack_region,
|
|
27989
28074
|
statistic=statistic,
|
|
27990
28075
|
unit=unit,
|
|
27991
28076
|
)
|
|
@@ -28002,6 +28087,8 @@ class _IDatabaseClusterProxy(
|
|
|
28002
28087
|
label: typing.Optional[builtins.str] = None,
|
|
28003
28088
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28004
28089
|
region: typing.Optional[builtins.str] = None,
|
|
28090
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28091
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28005
28092
|
statistic: typing.Optional[builtins.str] = None,
|
|
28006
28093
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28007
28094
|
) -> _Metric_e396a4dc:
|
|
@@ -28015,6 +28102,8 @@ class _IDatabaseClusterProxy(
|
|
|
28015
28102
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
28016
28103
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28017
28104
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28105
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28106
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28018
28107
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
28019
28108
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
28020
28109
|
'''
|
|
@@ -28025,6 +28114,8 @@ class _IDatabaseClusterProxy(
|
|
|
28025
28114
|
label=label,
|
|
28026
28115
|
period=period,
|
|
28027
28116
|
region=region,
|
|
28117
|
+
stack_account=stack_account,
|
|
28118
|
+
stack_region=stack_region,
|
|
28028
28119
|
statistic=statistic,
|
|
28029
28120
|
unit=unit,
|
|
28030
28121
|
)
|
|
@@ -28041,6 +28132,8 @@ class _IDatabaseClusterProxy(
|
|
|
28041
28132
|
label: typing.Optional[builtins.str] = None,
|
|
28042
28133
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28043
28134
|
region: typing.Optional[builtins.str] = None,
|
|
28135
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28136
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28044
28137
|
statistic: typing.Optional[builtins.str] = None,
|
|
28045
28138
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28046
28139
|
) -> _Metric_e396a4dc:
|
|
@@ -28054,6 +28147,8 @@ class _IDatabaseClusterProxy(
|
|
|
28054
28147
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
28055
28148
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28056
28149
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28150
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28151
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28057
28152
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
28058
28153
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
28059
28154
|
'''
|
|
@@ -28064,6 +28159,8 @@ class _IDatabaseClusterProxy(
|
|
|
28064
28159
|
label=label,
|
|
28065
28160
|
period=period,
|
|
28066
28161
|
region=region,
|
|
28162
|
+
stack_account=stack_account,
|
|
28163
|
+
stack_region=stack_region,
|
|
28067
28164
|
statistic=statistic,
|
|
28068
28165
|
unit=unit,
|
|
28069
28166
|
)
|
|
@@ -28080,6 +28177,8 @@ class _IDatabaseClusterProxy(
|
|
|
28080
28177
|
label: typing.Optional[builtins.str] = None,
|
|
28081
28178
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28082
28179
|
region: typing.Optional[builtins.str] = None,
|
|
28180
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28181
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28083
28182
|
statistic: typing.Optional[builtins.str] = None,
|
|
28084
28183
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28085
28184
|
) -> _Metric_e396a4dc:
|
|
@@ -28093,6 +28192,8 @@ class _IDatabaseClusterProxy(
|
|
|
28093
28192
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
28094
28193
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28095
28194
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28195
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28196
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28096
28197
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
28097
28198
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
28098
28199
|
'''
|
|
@@ -28103,6 +28204,8 @@ class _IDatabaseClusterProxy(
|
|
|
28103
28204
|
label=label,
|
|
28104
28205
|
period=period,
|
|
28105
28206
|
region=region,
|
|
28207
|
+
stack_account=stack_account,
|
|
28208
|
+
stack_region=stack_region,
|
|
28106
28209
|
statistic=statistic,
|
|
28107
28210
|
unit=unit,
|
|
28108
28211
|
)
|
|
@@ -28119,6 +28222,8 @@ class _IDatabaseClusterProxy(
|
|
|
28119
28222
|
label: typing.Optional[builtins.str] = None,
|
|
28120
28223
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28121
28224
|
region: typing.Optional[builtins.str] = None,
|
|
28225
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28226
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28122
28227
|
statistic: typing.Optional[builtins.str] = None,
|
|
28123
28228
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28124
28229
|
) -> _Metric_e396a4dc:
|
|
@@ -28132,6 +28237,8 @@ class _IDatabaseClusterProxy(
|
|
|
28132
28237
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
28133
28238
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28134
28239
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28240
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28241
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28135
28242
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
28136
28243
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
28137
28244
|
'''
|
|
@@ -28142,6 +28249,8 @@ class _IDatabaseClusterProxy(
|
|
|
28142
28249
|
label=label,
|
|
28143
28250
|
period=period,
|
|
28144
28251
|
region=region,
|
|
28252
|
+
stack_account=stack_account,
|
|
28253
|
+
stack_region=stack_region,
|
|
28145
28254
|
statistic=statistic,
|
|
28146
28255
|
unit=unit,
|
|
28147
28256
|
)
|
|
@@ -28158,6 +28267,8 @@ class _IDatabaseClusterProxy(
|
|
|
28158
28267
|
label: typing.Optional[builtins.str] = None,
|
|
28159
28268
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28160
28269
|
region: typing.Optional[builtins.str] = None,
|
|
28270
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28271
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28161
28272
|
statistic: typing.Optional[builtins.str] = None,
|
|
28162
28273
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28163
28274
|
) -> _Metric_e396a4dc:
|
|
@@ -28171,6 +28282,8 @@ class _IDatabaseClusterProxy(
|
|
|
28171
28282
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
28172
28283
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28173
28284
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28285
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28286
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28174
28287
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
28175
28288
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
28176
28289
|
'''
|
|
@@ -28181,6 +28294,8 @@ class _IDatabaseClusterProxy(
|
|
|
28181
28294
|
label=label,
|
|
28182
28295
|
period=period,
|
|
28183
28296
|
region=region,
|
|
28297
|
+
stack_account=stack_account,
|
|
28298
|
+
stack_region=stack_region,
|
|
28184
28299
|
statistic=statistic,
|
|
28185
28300
|
unit=unit,
|
|
28186
28301
|
)
|
|
@@ -28197,6 +28312,8 @@ class _IDatabaseClusterProxy(
|
|
|
28197
28312
|
label: typing.Optional[builtins.str] = None,
|
|
28198
28313
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28199
28314
|
region: typing.Optional[builtins.str] = None,
|
|
28315
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28316
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28200
28317
|
statistic: typing.Optional[builtins.str] = None,
|
|
28201
28318
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28202
28319
|
) -> _Metric_e396a4dc:
|
|
@@ -28210,6 +28327,8 @@ class _IDatabaseClusterProxy(
|
|
|
28210
28327
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
28211
28328
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28212
28329
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28330
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28331
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28213
28332
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
28214
28333
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
28215
28334
|
'''
|
|
@@ -28220,6 +28339,8 @@ class _IDatabaseClusterProxy(
|
|
|
28220
28339
|
label=label,
|
|
28221
28340
|
period=period,
|
|
28222
28341
|
region=region,
|
|
28342
|
+
stack_account=stack_account,
|
|
28343
|
+
stack_region=stack_region,
|
|
28223
28344
|
statistic=statistic,
|
|
28224
28345
|
unit=unit,
|
|
28225
28346
|
)
|
|
@@ -28236,6 +28357,8 @@ class _IDatabaseClusterProxy(
|
|
|
28236
28357
|
label: typing.Optional[builtins.str] = None,
|
|
28237
28358
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28238
28359
|
region: typing.Optional[builtins.str] = None,
|
|
28360
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28361
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28239
28362
|
statistic: typing.Optional[builtins.str] = None,
|
|
28240
28363
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28241
28364
|
) -> _Metric_e396a4dc:
|
|
@@ -28249,6 +28372,8 @@ class _IDatabaseClusterProxy(
|
|
|
28249
28372
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
28250
28373
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28251
28374
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28375
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28376
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28252
28377
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
28253
28378
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
28254
28379
|
'''
|
|
@@ -28259,6 +28384,8 @@ class _IDatabaseClusterProxy(
|
|
|
28259
28384
|
label=label,
|
|
28260
28385
|
period=period,
|
|
28261
28386
|
region=region,
|
|
28387
|
+
stack_account=stack_account,
|
|
28388
|
+
stack_region=stack_region,
|
|
28262
28389
|
statistic=statistic,
|
|
28263
28390
|
unit=unit,
|
|
28264
28391
|
)
|
|
@@ -28275,6 +28402,8 @@ class _IDatabaseClusterProxy(
|
|
|
28275
28402
|
label: typing.Optional[builtins.str] = None,
|
|
28276
28403
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28277
28404
|
region: typing.Optional[builtins.str] = None,
|
|
28405
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28406
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28278
28407
|
statistic: typing.Optional[builtins.str] = None,
|
|
28279
28408
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28280
28409
|
) -> _Metric_e396a4dc:
|
|
@@ -28288,6 +28417,8 @@ class _IDatabaseClusterProxy(
|
|
|
28288
28417
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
28289
28418
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28290
28419
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28420
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28421
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28291
28422
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
28292
28423
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
28293
28424
|
'''
|
|
@@ -28298,6 +28429,8 @@ class _IDatabaseClusterProxy(
|
|
|
28298
28429
|
label=label,
|
|
28299
28430
|
period=period,
|
|
28300
28431
|
region=region,
|
|
28432
|
+
stack_account=stack_account,
|
|
28433
|
+
stack_region=stack_region,
|
|
28301
28434
|
statistic=statistic,
|
|
28302
28435
|
unit=unit,
|
|
28303
28436
|
)
|
|
@@ -28314,6 +28447,8 @@ class _IDatabaseClusterProxy(
|
|
|
28314
28447
|
label: typing.Optional[builtins.str] = None,
|
|
28315
28448
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28316
28449
|
region: typing.Optional[builtins.str] = None,
|
|
28450
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28451
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28317
28452
|
statistic: typing.Optional[builtins.str] = None,
|
|
28318
28453
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28319
28454
|
) -> _Metric_e396a4dc:
|
|
@@ -28327,6 +28462,8 @@ class _IDatabaseClusterProxy(
|
|
|
28327
28462
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
28328
28463
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28329
28464
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28465
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28466
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28330
28467
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
28331
28468
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
28332
28469
|
'''
|
|
@@ -28337,6 +28474,8 @@ class _IDatabaseClusterProxy(
|
|
|
28337
28474
|
label=label,
|
|
28338
28475
|
period=period,
|
|
28339
28476
|
region=region,
|
|
28477
|
+
stack_account=stack_account,
|
|
28478
|
+
stack_region=stack_region,
|
|
28340
28479
|
statistic=statistic,
|
|
28341
28480
|
unit=unit,
|
|
28342
28481
|
)
|
|
@@ -28353,6 +28492,8 @@ class _IDatabaseClusterProxy(
|
|
|
28353
28492
|
label: typing.Optional[builtins.str] = None,
|
|
28354
28493
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28355
28494
|
region: typing.Optional[builtins.str] = None,
|
|
28495
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28496
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28356
28497
|
statistic: typing.Optional[builtins.str] = None,
|
|
28357
28498
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28358
28499
|
) -> _Metric_e396a4dc:
|
|
@@ -28366,6 +28507,8 @@ class _IDatabaseClusterProxy(
|
|
|
28366
28507
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
28367
28508
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28368
28509
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28510
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28511
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28369
28512
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
28370
28513
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
28371
28514
|
'''
|
|
@@ -28376,6 +28519,8 @@ class _IDatabaseClusterProxy(
|
|
|
28376
28519
|
label=label,
|
|
28377
28520
|
period=period,
|
|
28378
28521
|
region=region,
|
|
28522
|
+
stack_account=stack_account,
|
|
28523
|
+
stack_region=stack_region,
|
|
28379
28524
|
statistic=statistic,
|
|
28380
28525
|
unit=unit,
|
|
28381
28526
|
)
|
|
@@ -28520,6 +28665,8 @@ class IDatabaseInstance(
|
|
|
28520
28665
|
label: typing.Optional[builtins.str] = None,
|
|
28521
28666
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28522
28667
|
region: typing.Optional[builtins.str] = None,
|
|
28668
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28669
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28523
28670
|
statistic: typing.Optional[builtins.str] = None,
|
|
28524
28671
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28525
28672
|
) -> _Metric_e396a4dc:
|
|
@@ -28532,6 +28679,8 @@ class IDatabaseInstance(
|
|
|
28532
28679
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
28533
28680
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28534
28681
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28682
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28683
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28535
28684
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
28536
28685
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
28537
28686
|
'''
|
|
@@ -28547,6 +28696,8 @@ class IDatabaseInstance(
|
|
|
28547
28696
|
label: typing.Optional[builtins.str] = None,
|
|
28548
28697
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28549
28698
|
region: typing.Optional[builtins.str] = None,
|
|
28699
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28700
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28550
28701
|
statistic: typing.Optional[builtins.str] = None,
|
|
28551
28702
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28552
28703
|
) -> _Metric_e396a4dc:
|
|
@@ -28560,6 +28711,8 @@ class IDatabaseInstance(
|
|
|
28560
28711
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
28561
28712
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28562
28713
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28714
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28715
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28563
28716
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
28564
28717
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
28565
28718
|
'''
|
|
@@ -28575,6 +28728,8 @@ class IDatabaseInstance(
|
|
|
28575
28728
|
label: typing.Optional[builtins.str] = None,
|
|
28576
28729
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28577
28730
|
region: typing.Optional[builtins.str] = None,
|
|
28731
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28732
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28578
28733
|
statistic: typing.Optional[builtins.str] = None,
|
|
28579
28734
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28580
28735
|
) -> _Metric_e396a4dc:
|
|
@@ -28588,6 +28743,8 @@ class IDatabaseInstance(
|
|
|
28588
28743
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
28589
28744
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28590
28745
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28746
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28747
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28591
28748
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
28592
28749
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
28593
28750
|
'''
|
|
@@ -28603,6 +28760,8 @@ class IDatabaseInstance(
|
|
|
28603
28760
|
label: typing.Optional[builtins.str] = None,
|
|
28604
28761
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28605
28762
|
region: typing.Optional[builtins.str] = None,
|
|
28763
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28764
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28606
28765
|
statistic: typing.Optional[builtins.str] = None,
|
|
28607
28766
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28608
28767
|
) -> _Metric_e396a4dc:
|
|
@@ -28616,6 +28775,8 @@ class IDatabaseInstance(
|
|
|
28616
28775
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
28617
28776
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28618
28777
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28778
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28779
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28619
28780
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
28620
28781
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
28621
28782
|
'''
|
|
@@ -28631,6 +28792,8 @@ class IDatabaseInstance(
|
|
|
28631
28792
|
label: typing.Optional[builtins.str] = None,
|
|
28632
28793
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28633
28794
|
region: typing.Optional[builtins.str] = None,
|
|
28795
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28796
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28634
28797
|
statistic: typing.Optional[builtins.str] = None,
|
|
28635
28798
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28636
28799
|
) -> _Metric_e396a4dc:
|
|
@@ -28644,6 +28807,8 @@ class IDatabaseInstance(
|
|
|
28644
28807
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
28645
28808
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28646
28809
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28810
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28811
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28647
28812
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
28648
28813
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
28649
28814
|
'''
|
|
@@ -28659,6 +28824,8 @@ class IDatabaseInstance(
|
|
|
28659
28824
|
label: typing.Optional[builtins.str] = None,
|
|
28660
28825
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28661
28826
|
region: typing.Optional[builtins.str] = None,
|
|
28827
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28828
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28662
28829
|
statistic: typing.Optional[builtins.str] = None,
|
|
28663
28830
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28664
28831
|
) -> _Metric_e396a4dc:
|
|
@@ -28672,6 +28839,8 @@ class IDatabaseInstance(
|
|
|
28672
28839
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
28673
28840
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28674
28841
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28842
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28843
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28675
28844
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
28676
28845
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
28677
28846
|
'''
|
|
@@ -28687,6 +28856,8 @@ class IDatabaseInstance(
|
|
|
28687
28856
|
label: typing.Optional[builtins.str] = None,
|
|
28688
28857
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28689
28858
|
region: typing.Optional[builtins.str] = None,
|
|
28859
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
28860
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28690
28861
|
statistic: typing.Optional[builtins.str] = None,
|
|
28691
28862
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28692
28863
|
) -> _Metric_e396a4dc:
|
|
@@ -28700,6 +28871,8 @@ class IDatabaseInstance(
|
|
|
28700
28871
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
28701
28872
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28702
28873
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
28874
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
28875
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28703
28876
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
28704
28877
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
28705
28878
|
'''
|
|
@@ -28891,6 +29064,8 @@ class _IDatabaseInstanceProxy(
|
|
|
28891
29064
|
label: typing.Optional[builtins.str] = None,
|
|
28892
29065
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28893
29066
|
region: typing.Optional[builtins.str] = None,
|
|
29067
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
29068
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28894
29069
|
statistic: typing.Optional[builtins.str] = None,
|
|
28895
29070
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28896
29071
|
) -> _Metric_e396a4dc:
|
|
@@ -28903,6 +29078,8 @@ class _IDatabaseInstanceProxy(
|
|
|
28903
29078
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
28904
29079
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28905
29080
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
29081
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
29082
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28906
29083
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
28907
29084
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
28908
29085
|
'''
|
|
@@ -28916,6 +29093,8 @@ class _IDatabaseInstanceProxy(
|
|
|
28916
29093
|
label=label,
|
|
28917
29094
|
period=period,
|
|
28918
29095
|
region=region,
|
|
29096
|
+
stack_account=stack_account,
|
|
29097
|
+
stack_region=stack_region,
|
|
28919
29098
|
statistic=statistic,
|
|
28920
29099
|
unit=unit,
|
|
28921
29100
|
)
|
|
@@ -28932,6 +29111,8 @@ class _IDatabaseInstanceProxy(
|
|
|
28932
29111
|
label: typing.Optional[builtins.str] = None,
|
|
28933
29112
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28934
29113
|
region: typing.Optional[builtins.str] = None,
|
|
29114
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
29115
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28935
29116
|
statistic: typing.Optional[builtins.str] = None,
|
|
28936
29117
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28937
29118
|
) -> _Metric_e396a4dc:
|
|
@@ -28945,6 +29126,8 @@ class _IDatabaseInstanceProxy(
|
|
|
28945
29126
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
28946
29127
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28947
29128
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
29129
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
29130
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28948
29131
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
28949
29132
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
28950
29133
|
'''
|
|
@@ -28955,6 +29138,8 @@ class _IDatabaseInstanceProxy(
|
|
|
28955
29138
|
label=label,
|
|
28956
29139
|
period=period,
|
|
28957
29140
|
region=region,
|
|
29141
|
+
stack_account=stack_account,
|
|
29142
|
+
stack_region=stack_region,
|
|
28958
29143
|
statistic=statistic,
|
|
28959
29144
|
unit=unit,
|
|
28960
29145
|
)
|
|
@@ -28971,6 +29156,8 @@ class _IDatabaseInstanceProxy(
|
|
|
28971
29156
|
label: typing.Optional[builtins.str] = None,
|
|
28972
29157
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
28973
29158
|
region: typing.Optional[builtins.str] = None,
|
|
29159
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
29160
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
28974
29161
|
statistic: typing.Optional[builtins.str] = None,
|
|
28975
29162
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
28976
29163
|
) -> _Metric_e396a4dc:
|
|
@@ -28984,6 +29171,8 @@ class _IDatabaseInstanceProxy(
|
|
|
28984
29171
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
28985
29172
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
28986
29173
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
29174
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
29175
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
28987
29176
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
28988
29177
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
28989
29178
|
'''
|
|
@@ -28994,6 +29183,8 @@ class _IDatabaseInstanceProxy(
|
|
|
28994
29183
|
label=label,
|
|
28995
29184
|
period=period,
|
|
28996
29185
|
region=region,
|
|
29186
|
+
stack_account=stack_account,
|
|
29187
|
+
stack_region=stack_region,
|
|
28997
29188
|
statistic=statistic,
|
|
28998
29189
|
unit=unit,
|
|
28999
29190
|
)
|
|
@@ -29010,6 +29201,8 @@ class _IDatabaseInstanceProxy(
|
|
|
29010
29201
|
label: typing.Optional[builtins.str] = None,
|
|
29011
29202
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
29012
29203
|
region: typing.Optional[builtins.str] = None,
|
|
29204
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
29205
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
29013
29206
|
statistic: typing.Optional[builtins.str] = None,
|
|
29014
29207
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
29015
29208
|
) -> _Metric_e396a4dc:
|
|
@@ -29023,6 +29216,8 @@ class _IDatabaseInstanceProxy(
|
|
|
29023
29216
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
29024
29217
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
29025
29218
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
29219
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
29220
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
29026
29221
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
29027
29222
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
29028
29223
|
'''
|
|
@@ -29033,6 +29228,8 @@ class _IDatabaseInstanceProxy(
|
|
|
29033
29228
|
label=label,
|
|
29034
29229
|
period=period,
|
|
29035
29230
|
region=region,
|
|
29231
|
+
stack_account=stack_account,
|
|
29232
|
+
stack_region=stack_region,
|
|
29036
29233
|
statistic=statistic,
|
|
29037
29234
|
unit=unit,
|
|
29038
29235
|
)
|
|
@@ -29049,6 +29246,8 @@ class _IDatabaseInstanceProxy(
|
|
|
29049
29246
|
label: typing.Optional[builtins.str] = None,
|
|
29050
29247
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
29051
29248
|
region: typing.Optional[builtins.str] = None,
|
|
29249
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
29250
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
29052
29251
|
statistic: typing.Optional[builtins.str] = None,
|
|
29053
29252
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
29054
29253
|
) -> _Metric_e396a4dc:
|
|
@@ -29062,6 +29261,8 @@ class _IDatabaseInstanceProxy(
|
|
|
29062
29261
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
29063
29262
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
29064
29263
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
29264
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
29265
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
29065
29266
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
29066
29267
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
29067
29268
|
'''
|
|
@@ -29072,6 +29273,8 @@ class _IDatabaseInstanceProxy(
|
|
|
29072
29273
|
label=label,
|
|
29073
29274
|
period=period,
|
|
29074
29275
|
region=region,
|
|
29276
|
+
stack_account=stack_account,
|
|
29277
|
+
stack_region=stack_region,
|
|
29075
29278
|
statistic=statistic,
|
|
29076
29279
|
unit=unit,
|
|
29077
29280
|
)
|
|
@@ -29088,6 +29291,8 @@ class _IDatabaseInstanceProxy(
|
|
|
29088
29291
|
label: typing.Optional[builtins.str] = None,
|
|
29089
29292
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
29090
29293
|
region: typing.Optional[builtins.str] = None,
|
|
29294
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
29295
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
29091
29296
|
statistic: typing.Optional[builtins.str] = None,
|
|
29092
29297
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
29093
29298
|
) -> _Metric_e396a4dc:
|
|
@@ -29101,6 +29306,8 @@ class _IDatabaseInstanceProxy(
|
|
|
29101
29306
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
29102
29307
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
29103
29308
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
29309
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
29310
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
29104
29311
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
29105
29312
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
29106
29313
|
'''
|
|
@@ -29111,6 +29318,8 @@ class _IDatabaseInstanceProxy(
|
|
|
29111
29318
|
label=label,
|
|
29112
29319
|
period=period,
|
|
29113
29320
|
region=region,
|
|
29321
|
+
stack_account=stack_account,
|
|
29322
|
+
stack_region=stack_region,
|
|
29114
29323
|
statistic=statistic,
|
|
29115
29324
|
unit=unit,
|
|
29116
29325
|
)
|
|
@@ -29127,6 +29336,8 @@ class _IDatabaseInstanceProxy(
|
|
|
29127
29336
|
label: typing.Optional[builtins.str] = None,
|
|
29128
29337
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
29129
29338
|
region: typing.Optional[builtins.str] = None,
|
|
29339
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
29340
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
29130
29341
|
statistic: typing.Optional[builtins.str] = None,
|
|
29131
29342
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
29132
29343
|
) -> _Metric_e396a4dc:
|
|
@@ -29140,6 +29351,8 @@ class _IDatabaseInstanceProxy(
|
|
|
29140
29351
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
29141
29352
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
29142
29353
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
29354
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
29355
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
29143
29356
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
29144
29357
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
29145
29358
|
'''
|
|
@@ -29150,6 +29363,8 @@ class _IDatabaseInstanceProxy(
|
|
|
29150
29363
|
label=label,
|
|
29151
29364
|
period=period,
|
|
29152
29365
|
region=region,
|
|
29366
|
+
stack_account=stack_account,
|
|
29367
|
+
stack_region=stack_region,
|
|
29153
29368
|
statistic=statistic,
|
|
29154
29369
|
unit=unit,
|
|
29155
29370
|
)
|
|
@@ -40303,6 +40518,8 @@ class DatabaseClusterBase(
|
|
|
40303
40518
|
label: typing.Optional[builtins.str] = None,
|
|
40304
40519
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
40305
40520
|
region: typing.Optional[builtins.str] = None,
|
|
40521
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
40522
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
40306
40523
|
statistic: typing.Optional[builtins.str] = None,
|
|
40307
40524
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
40308
40525
|
) -> _Metric_e396a4dc:
|
|
@@ -40315,6 +40532,8 @@ class DatabaseClusterBase(
|
|
|
40315
40532
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
40316
40533
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
40317
40534
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
40535
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
40536
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
40318
40537
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
40319
40538
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
40320
40539
|
'''
|
|
@@ -40328,6 +40547,8 @@ class DatabaseClusterBase(
|
|
|
40328
40547
|
label=label,
|
|
40329
40548
|
period=period,
|
|
40330
40549
|
region=region,
|
|
40550
|
+
stack_account=stack_account,
|
|
40551
|
+
stack_region=stack_region,
|
|
40331
40552
|
statistic=statistic,
|
|
40332
40553
|
unit=unit,
|
|
40333
40554
|
)
|
|
@@ -40344,6 +40565,8 @@ class DatabaseClusterBase(
|
|
|
40344
40565
|
label: typing.Optional[builtins.str] = None,
|
|
40345
40566
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
40346
40567
|
region: typing.Optional[builtins.str] = None,
|
|
40568
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
40569
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
40347
40570
|
statistic: typing.Optional[builtins.str] = None,
|
|
40348
40571
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
40349
40572
|
) -> _Metric_e396a4dc:
|
|
@@ -40357,6 +40580,8 @@ class DatabaseClusterBase(
|
|
|
40357
40580
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
40358
40581
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
40359
40582
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
40583
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
40584
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
40360
40585
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
40361
40586
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
40362
40587
|
'''
|
|
@@ -40367,6 +40592,8 @@ class DatabaseClusterBase(
|
|
|
40367
40592
|
label=label,
|
|
40368
40593
|
period=period,
|
|
40369
40594
|
region=region,
|
|
40595
|
+
stack_account=stack_account,
|
|
40596
|
+
stack_region=stack_region,
|
|
40370
40597
|
statistic=statistic,
|
|
40371
40598
|
unit=unit,
|
|
40372
40599
|
)
|
|
@@ -40383,6 +40610,8 @@ class DatabaseClusterBase(
|
|
|
40383
40610
|
label: typing.Optional[builtins.str] = None,
|
|
40384
40611
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
40385
40612
|
region: typing.Optional[builtins.str] = None,
|
|
40613
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
40614
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
40386
40615
|
statistic: typing.Optional[builtins.str] = None,
|
|
40387
40616
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
40388
40617
|
) -> _Metric_e396a4dc:
|
|
@@ -40396,6 +40625,8 @@ class DatabaseClusterBase(
|
|
|
40396
40625
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
40397
40626
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
40398
40627
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
40628
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
40629
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
40399
40630
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
40400
40631
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
40401
40632
|
'''
|
|
@@ -40406,6 +40637,8 @@ class DatabaseClusterBase(
|
|
|
40406
40637
|
label=label,
|
|
40407
40638
|
period=period,
|
|
40408
40639
|
region=region,
|
|
40640
|
+
stack_account=stack_account,
|
|
40641
|
+
stack_region=stack_region,
|
|
40409
40642
|
statistic=statistic,
|
|
40410
40643
|
unit=unit,
|
|
40411
40644
|
)
|
|
@@ -40422,6 +40655,8 @@ class DatabaseClusterBase(
|
|
|
40422
40655
|
label: typing.Optional[builtins.str] = None,
|
|
40423
40656
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
40424
40657
|
region: typing.Optional[builtins.str] = None,
|
|
40658
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
40659
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
40425
40660
|
statistic: typing.Optional[builtins.str] = None,
|
|
40426
40661
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
40427
40662
|
) -> _Metric_e396a4dc:
|
|
@@ -40435,6 +40670,8 @@ class DatabaseClusterBase(
|
|
|
40435
40670
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
40436
40671
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
40437
40672
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
40673
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
40674
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
40438
40675
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
40439
40676
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
40440
40677
|
'''
|
|
@@ -40445,6 +40682,8 @@ class DatabaseClusterBase(
|
|
|
40445
40682
|
label=label,
|
|
40446
40683
|
period=period,
|
|
40447
40684
|
region=region,
|
|
40685
|
+
stack_account=stack_account,
|
|
40686
|
+
stack_region=stack_region,
|
|
40448
40687
|
statistic=statistic,
|
|
40449
40688
|
unit=unit,
|
|
40450
40689
|
)
|
|
@@ -40461,6 +40700,8 @@ class DatabaseClusterBase(
|
|
|
40461
40700
|
label: typing.Optional[builtins.str] = None,
|
|
40462
40701
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
40463
40702
|
region: typing.Optional[builtins.str] = None,
|
|
40703
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
40704
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
40464
40705
|
statistic: typing.Optional[builtins.str] = None,
|
|
40465
40706
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
40466
40707
|
) -> _Metric_e396a4dc:
|
|
@@ -40474,6 +40715,8 @@ class DatabaseClusterBase(
|
|
|
40474
40715
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
40475
40716
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
40476
40717
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
40718
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
40719
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
40477
40720
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
40478
40721
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
40479
40722
|
'''
|
|
@@ -40484,6 +40727,8 @@ class DatabaseClusterBase(
|
|
|
40484
40727
|
label=label,
|
|
40485
40728
|
period=period,
|
|
40486
40729
|
region=region,
|
|
40730
|
+
stack_account=stack_account,
|
|
40731
|
+
stack_region=stack_region,
|
|
40487
40732
|
statistic=statistic,
|
|
40488
40733
|
unit=unit,
|
|
40489
40734
|
)
|
|
@@ -40500,6 +40745,8 @@ class DatabaseClusterBase(
|
|
|
40500
40745
|
label: typing.Optional[builtins.str] = None,
|
|
40501
40746
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
40502
40747
|
region: typing.Optional[builtins.str] = None,
|
|
40748
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
40749
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
40503
40750
|
statistic: typing.Optional[builtins.str] = None,
|
|
40504
40751
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
40505
40752
|
) -> _Metric_e396a4dc:
|
|
@@ -40513,6 +40760,8 @@ class DatabaseClusterBase(
|
|
|
40513
40760
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
40514
40761
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
40515
40762
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
40763
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
40764
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
40516
40765
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
40517
40766
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
40518
40767
|
'''
|
|
@@ -40523,6 +40772,8 @@ class DatabaseClusterBase(
|
|
|
40523
40772
|
label=label,
|
|
40524
40773
|
period=period,
|
|
40525
40774
|
region=region,
|
|
40775
|
+
stack_account=stack_account,
|
|
40776
|
+
stack_region=stack_region,
|
|
40526
40777
|
statistic=statistic,
|
|
40527
40778
|
unit=unit,
|
|
40528
40779
|
)
|
|
@@ -40539,6 +40790,8 @@ class DatabaseClusterBase(
|
|
|
40539
40790
|
label: typing.Optional[builtins.str] = None,
|
|
40540
40791
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
40541
40792
|
region: typing.Optional[builtins.str] = None,
|
|
40793
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
40794
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
40542
40795
|
statistic: typing.Optional[builtins.str] = None,
|
|
40543
40796
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
40544
40797
|
) -> _Metric_e396a4dc:
|
|
@@ -40552,6 +40805,8 @@ class DatabaseClusterBase(
|
|
|
40552
40805
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
40553
40806
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
40554
40807
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
40808
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
40809
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
40555
40810
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
40556
40811
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
40557
40812
|
'''
|
|
@@ -40562,6 +40817,8 @@ class DatabaseClusterBase(
|
|
|
40562
40817
|
label=label,
|
|
40563
40818
|
period=period,
|
|
40564
40819
|
region=region,
|
|
40820
|
+
stack_account=stack_account,
|
|
40821
|
+
stack_region=stack_region,
|
|
40565
40822
|
statistic=statistic,
|
|
40566
40823
|
unit=unit,
|
|
40567
40824
|
)
|
|
@@ -40578,6 +40835,8 @@ class DatabaseClusterBase(
|
|
|
40578
40835
|
label: typing.Optional[builtins.str] = None,
|
|
40579
40836
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
40580
40837
|
region: typing.Optional[builtins.str] = None,
|
|
40838
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
40839
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
40581
40840
|
statistic: typing.Optional[builtins.str] = None,
|
|
40582
40841
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
40583
40842
|
) -> _Metric_e396a4dc:
|
|
@@ -40591,6 +40850,8 @@ class DatabaseClusterBase(
|
|
|
40591
40850
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
40592
40851
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
40593
40852
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
40853
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
40854
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
40594
40855
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
40595
40856
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
40596
40857
|
'''
|
|
@@ -40601,6 +40862,8 @@ class DatabaseClusterBase(
|
|
|
40601
40862
|
label=label,
|
|
40602
40863
|
period=period,
|
|
40603
40864
|
region=region,
|
|
40865
|
+
stack_account=stack_account,
|
|
40866
|
+
stack_region=stack_region,
|
|
40604
40867
|
statistic=statistic,
|
|
40605
40868
|
unit=unit,
|
|
40606
40869
|
)
|
|
@@ -40617,6 +40880,8 @@ class DatabaseClusterBase(
|
|
|
40617
40880
|
label: typing.Optional[builtins.str] = None,
|
|
40618
40881
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
40619
40882
|
region: typing.Optional[builtins.str] = None,
|
|
40883
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
40884
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
40620
40885
|
statistic: typing.Optional[builtins.str] = None,
|
|
40621
40886
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
40622
40887
|
) -> _Metric_e396a4dc:
|
|
@@ -40630,6 +40895,8 @@ class DatabaseClusterBase(
|
|
|
40630
40895
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
40631
40896
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
40632
40897
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
40898
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
40899
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
40633
40900
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
40634
40901
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
40635
40902
|
'''
|
|
@@ -40640,6 +40907,8 @@ class DatabaseClusterBase(
|
|
|
40640
40907
|
label=label,
|
|
40641
40908
|
period=period,
|
|
40642
40909
|
region=region,
|
|
40910
|
+
stack_account=stack_account,
|
|
40911
|
+
stack_region=stack_region,
|
|
40643
40912
|
statistic=statistic,
|
|
40644
40913
|
unit=unit,
|
|
40645
40914
|
)
|
|
@@ -40656,6 +40925,8 @@ class DatabaseClusterBase(
|
|
|
40656
40925
|
label: typing.Optional[builtins.str] = None,
|
|
40657
40926
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
40658
40927
|
region: typing.Optional[builtins.str] = None,
|
|
40928
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
40929
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
40659
40930
|
statistic: typing.Optional[builtins.str] = None,
|
|
40660
40931
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
40661
40932
|
) -> _Metric_e396a4dc:
|
|
@@ -40669,6 +40940,8 @@ class DatabaseClusterBase(
|
|
|
40669
40940
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
40670
40941
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
40671
40942
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
40943
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
40944
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
40672
40945
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
40673
40946
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
40674
40947
|
'''
|
|
@@ -40679,6 +40952,8 @@ class DatabaseClusterBase(
|
|
|
40679
40952
|
label=label,
|
|
40680
40953
|
period=period,
|
|
40681
40954
|
region=region,
|
|
40955
|
+
stack_account=stack_account,
|
|
40956
|
+
stack_region=stack_region,
|
|
40682
40957
|
statistic=statistic,
|
|
40683
40958
|
unit=unit,
|
|
40684
40959
|
)
|
|
@@ -40695,6 +40970,8 @@ class DatabaseClusterBase(
|
|
|
40695
40970
|
label: typing.Optional[builtins.str] = None,
|
|
40696
40971
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
40697
40972
|
region: typing.Optional[builtins.str] = None,
|
|
40973
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
40974
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
40698
40975
|
statistic: typing.Optional[builtins.str] = None,
|
|
40699
40976
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
40700
40977
|
) -> _Metric_e396a4dc:
|
|
@@ -40708,6 +40985,8 @@ class DatabaseClusterBase(
|
|
|
40708
40985
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
40709
40986
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
40710
40987
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
40988
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
40989
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
40711
40990
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
40712
40991
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
40713
40992
|
'''
|
|
@@ -40718,6 +40997,8 @@ class DatabaseClusterBase(
|
|
|
40718
40997
|
label=label,
|
|
40719
40998
|
period=period,
|
|
40720
40999
|
region=region,
|
|
41000
|
+
stack_account=stack_account,
|
|
41001
|
+
stack_region=stack_region,
|
|
40721
41002
|
statistic=statistic,
|
|
40722
41003
|
unit=unit,
|
|
40723
41004
|
)
|
|
@@ -40734,6 +41015,8 @@ class DatabaseClusterBase(
|
|
|
40734
41015
|
label: typing.Optional[builtins.str] = None,
|
|
40735
41016
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
40736
41017
|
region: typing.Optional[builtins.str] = None,
|
|
41018
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
41019
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
40737
41020
|
statistic: typing.Optional[builtins.str] = None,
|
|
40738
41021
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
40739
41022
|
) -> _Metric_e396a4dc:
|
|
@@ -40747,6 +41030,8 @@ class DatabaseClusterBase(
|
|
|
40747
41030
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
40748
41031
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
40749
41032
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
41033
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
41034
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
40750
41035
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
40751
41036
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
40752
41037
|
'''
|
|
@@ -40757,6 +41042,8 @@ class DatabaseClusterBase(
|
|
|
40757
41042
|
label=label,
|
|
40758
41043
|
period=period,
|
|
40759
41044
|
region=region,
|
|
41045
|
+
stack_account=stack_account,
|
|
41046
|
+
stack_region=stack_region,
|
|
40760
41047
|
statistic=statistic,
|
|
40761
41048
|
unit=unit,
|
|
40762
41049
|
)
|
|
@@ -40773,6 +41060,8 @@ class DatabaseClusterBase(
|
|
|
40773
41060
|
label: typing.Optional[builtins.str] = None,
|
|
40774
41061
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
40775
41062
|
region: typing.Optional[builtins.str] = None,
|
|
41063
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
41064
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
40776
41065
|
statistic: typing.Optional[builtins.str] = None,
|
|
40777
41066
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
40778
41067
|
) -> _Metric_e396a4dc:
|
|
@@ -40786,6 +41075,8 @@ class DatabaseClusterBase(
|
|
|
40786
41075
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
40787
41076
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
40788
41077
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
41078
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
41079
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
40789
41080
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
40790
41081
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
40791
41082
|
'''
|
|
@@ -40796,6 +41087,8 @@ class DatabaseClusterBase(
|
|
|
40796
41087
|
label=label,
|
|
40797
41088
|
period=period,
|
|
40798
41089
|
region=region,
|
|
41090
|
+
stack_account=stack_account,
|
|
41091
|
+
stack_region=stack_region,
|
|
40799
41092
|
statistic=statistic,
|
|
40800
41093
|
unit=unit,
|
|
40801
41094
|
)
|
|
@@ -40812,6 +41105,8 @@ class DatabaseClusterBase(
|
|
|
40812
41105
|
label: typing.Optional[builtins.str] = None,
|
|
40813
41106
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
40814
41107
|
region: typing.Optional[builtins.str] = None,
|
|
41108
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
41109
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
40815
41110
|
statistic: typing.Optional[builtins.str] = None,
|
|
40816
41111
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
40817
41112
|
) -> _Metric_e396a4dc:
|
|
@@ -40825,6 +41120,8 @@ class DatabaseClusterBase(
|
|
|
40825
41120
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
40826
41121
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
40827
41122
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
41123
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
41124
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
40828
41125
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
40829
41126
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
40830
41127
|
'''
|
|
@@ -40835,6 +41132,8 @@ class DatabaseClusterBase(
|
|
|
40835
41132
|
label=label,
|
|
40836
41133
|
period=period,
|
|
40837
41134
|
region=region,
|
|
41135
|
+
stack_account=stack_account,
|
|
41136
|
+
stack_region=stack_region,
|
|
40838
41137
|
statistic=statistic,
|
|
40839
41138
|
unit=unit,
|
|
40840
41139
|
)
|
|
@@ -40851,6 +41150,8 @@ class DatabaseClusterBase(
|
|
|
40851
41150
|
label: typing.Optional[builtins.str] = None,
|
|
40852
41151
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
40853
41152
|
region: typing.Optional[builtins.str] = None,
|
|
41153
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
41154
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
40854
41155
|
statistic: typing.Optional[builtins.str] = None,
|
|
40855
41156
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
40856
41157
|
) -> _Metric_e396a4dc:
|
|
@@ -40864,6 +41165,8 @@ class DatabaseClusterBase(
|
|
|
40864
41165
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
40865
41166
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
40866
41167
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
41168
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
41169
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
40867
41170
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
40868
41171
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
40869
41172
|
'''
|
|
@@ -40874,6 +41177,8 @@ class DatabaseClusterBase(
|
|
|
40874
41177
|
label=label,
|
|
40875
41178
|
period=period,
|
|
40876
41179
|
region=region,
|
|
41180
|
+
stack_account=stack_account,
|
|
41181
|
+
stack_region=stack_region,
|
|
40877
41182
|
statistic=statistic,
|
|
40878
41183
|
unit=unit,
|
|
40879
41184
|
)
|
|
@@ -41325,6 +41630,8 @@ class DatabaseClusterFromSnapshot(
|
|
|
41325
41630
|
label: typing.Optional[builtins.str] = None,
|
|
41326
41631
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
41327
41632
|
region: typing.Optional[builtins.str] = None,
|
|
41633
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
41634
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
41328
41635
|
statistic: typing.Optional[builtins.str] = None,
|
|
41329
41636
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
41330
41637
|
) -> _Metric_e396a4dc:
|
|
@@ -41342,6 +41649,8 @@ class DatabaseClusterFromSnapshot(
|
|
|
41342
41649
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
41343
41650
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
41344
41651
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
41652
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
41653
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
41345
41654
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
41346
41655
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
41347
41656
|
'''
|
|
@@ -41352,6 +41661,8 @@ class DatabaseClusterFromSnapshot(
|
|
|
41352
41661
|
label=label,
|
|
41353
41662
|
period=period,
|
|
41354
41663
|
region=region,
|
|
41664
|
+
stack_account=stack_account,
|
|
41665
|
+
stack_region=stack_region,
|
|
41355
41666
|
statistic=statistic,
|
|
41356
41667
|
unit=unit,
|
|
41357
41668
|
)
|
|
@@ -41368,6 +41679,8 @@ class DatabaseClusterFromSnapshot(
|
|
|
41368
41679
|
label: typing.Optional[builtins.str] = None,
|
|
41369
41680
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
41370
41681
|
region: typing.Optional[builtins.str] = None,
|
|
41682
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
41683
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
41371
41684
|
statistic: typing.Optional[builtins.str] = None,
|
|
41372
41685
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
41373
41686
|
) -> _Metric_e396a4dc:
|
|
@@ -41379,6 +41692,8 @@ class DatabaseClusterFromSnapshot(
|
|
|
41379
41692
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
41380
41693
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
41381
41694
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
41695
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
41696
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
41382
41697
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
41383
41698
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
41384
41699
|
'''
|
|
@@ -41389,6 +41704,8 @@ class DatabaseClusterFromSnapshot(
|
|
|
41389
41704
|
label=label,
|
|
41390
41705
|
period=period,
|
|
41391
41706
|
region=region,
|
|
41707
|
+
stack_account=stack_account,
|
|
41708
|
+
stack_region=stack_region,
|
|
41392
41709
|
statistic=statistic,
|
|
41393
41710
|
unit=unit,
|
|
41394
41711
|
)
|
|
@@ -41768,6 +42085,8 @@ class DatabaseInstanceBase(
|
|
|
41768
42085
|
label: typing.Optional[builtins.str] = None,
|
|
41769
42086
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
41770
42087
|
region: typing.Optional[builtins.str] = None,
|
|
42088
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
42089
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
41771
42090
|
statistic: typing.Optional[builtins.str] = None,
|
|
41772
42091
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
41773
42092
|
) -> _Metric_e396a4dc:
|
|
@@ -41780,6 +42099,8 @@ class DatabaseInstanceBase(
|
|
|
41780
42099
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
41781
42100
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
41782
42101
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
42102
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
42103
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
41783
42104
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
41784
42105
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
41785
42106
|
'''
|
|
@@ -41793,6 +42114,8 @@ class DatabaseInstanceBase(
|
|
|
41793
42114
|
label=label,
|
|
41794
42115
|
period=period,
|
|
41795
42116
|
region=region,
|
|
42117
|
+
stack_account=stack_account,
|
|
42118
|
+
stack_region=stack_region,
|
|
41796
42119
|
statistic=statistic,
|
|
41797
42120
|
unit=unit,
|
|
41798
42121
|
)
|
|
@@ -41809,6 +42132,8 @@ class DatabaseInstanceBase(
|
|
|
41809
42132
|
label: typing.Optional[builtins.str] = None,
|
|
41810
42133
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
41811
42134
|
region: typing.Optional[builtins.str] = None,
|
|
42135
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
42136
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
41812
42137
|
statistic: typing.Optional[builtins.str] = None,
|
|
41813
42138
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
41814
42139
|
) -> _Metric_e396a4dc:
|
|
@@ -41822,6 +42147,8 @@ class DatabaseInstanceBase(
|
|
|
41822
42147
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
41823
42148
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
41824
42149
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
42150
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
42151
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
41825
42152
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
41826
42153
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
41827
42154
|
'''
|
|
@@ -41832,6 +42159,8 @@ class DatabaseInstanceBase(
|
|
|
41832
42159
|
label=label,
|
|
41833
42160
|
period=period,
|
|
41834
42161
|
region=region,
|
|
42162
|
+
stack_account=stack_account,
|
|
42163
|
+
stack_region=stack_region,
|
|
41835
42164
|
statistic=statistic,
|
|
41836
42165
|
unit=unit,
|
|
41837
42166
|
)
|
|
@@ -41848,6 +42177,8 @@ class DatabaseInstanceBase(
|
|
|
41848
42177
|
label: typing.Optional[builtins.str] = None,
|
|
41849
42178
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
41850
42179
|
region: typing.Optional[builtins.str] = None,
|
|
42180
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
42181
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
41851
42182
|
statistic: typing.Optional[builtins.str] = None,
|
|
41852
42183
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
41853
42184
|
) -> _Metric_e396a4dc:
|
|
@@ -41861,6 +42192,8 @@ class DatabaseInstanceBase(
|
|
|
41861
42192
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
41862
42193
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
41863
42194
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
42195
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
42196
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
41864
42197
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
41865
42198
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
41866
42199
|
'''
|
|
@@ -41871,6 +42204,8 @@ class DatabaseInstanceBase(
|
|
|
41871
42204
|
label=label,
|
|
41872
42205
|
period=period,
|
|
41873
42206
|
region=region,
|
|
42207
|
+
stack_account=stack_account,
|
|
42208
|
+
stack_region=stack_region,
|
|
41874
42209
|
statistic=statistic,
|
|
41875
42210
|
unit=unit,
|
|
41876
42211
|
)
|
|
@@ -41887,6 +42222,8 @@ class DatabaseInstanceBase(
|
|
|
41887
42222
|
label: typing.Optional[builtins.str] = None,
|
|
41888
42223
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
41889
42224
|
region: typing.Optional[builtins.str] = None,
|
|
42225
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
42226
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
41890
42227
|
statistic: typing.Optional[builtins.str] = None,
|
|
41891
42228
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
41892
42229
|
) -> _Metric_e396a4dc:
|
|
@@ -41900,6 +42237,8 @@ class DatabaseInstanceBase(
|
|
|
41900
42237
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
41901
42238
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
41902
42239
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
42240
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
42241
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
41903
42242
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
41904
42243
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
41905
42244
|
'''
|
|
@@ -41910,6 +42249,8 @@ class DatabaseInstanceBase(
|
|
|
41910
42249
|
label=label,
|
|
41911
42250
|
period=period,
|
|
41912
42251
|
region=region,
|
|
42252
|
+
stack_account=stack_account,
|
|
42253
|
+
stack_region=stack_region,
|
|
41913
42254
|
statistic=statistic,
|
|
41914
42255
|
unit=unit,
|
|
41915
42256
|
)
|
|
@@ -41926,6 +42267,8 @@ class DatabaseInstanceBase(
|
|
|
41926
42267
|
label: typing.Optional[builtins.str] = None,
|
|
41927
42268
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
41928
42269
|
region: typing.Optional[builtins.str] = None,
|
|
42270
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
42271
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
41929
42272
|
statistic: typing.Optional[builtins.str] = None,
|
|
41930
42273
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
41931
42274
|
) -> _Metric_e396a4dc:
|
|
@@ -41939,6 +42282,8 @@ class DatabaseInstanceBase(
|
|
|
41939
42282
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
41940
42283
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
41941
42284
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
42285
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
42286
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
41942
42287
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
41943
42288
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
41944
42289
|
'''
|
|
@@ -41949,6 +42294,8 @@ class DatabaseInstanceBase(
|
|
|
41949
42294
|
label=label,
|
|
41950
42295
|
period=period,
|
|
41951
42296
|
region=region,
|
|
42297
|
+
stack_account=stack_account,
|
|
42298
|
+
stack_region=stack_region,
|
|
41952
42299
|
statistic=statistic,
|
|
41953
42300
|
unit=unit,
|
|
41954
42301
|
)
|
|
@@ -41965,6 +42312,8 @@ class DatabaseInstanceBase(
|
|
|
41965
42312
|
label: typing.Optional[builtins.str] = None,
|
|
41966
42313
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
41967
42314
|
region: typing.Optional[builtins.str] = None,
|
|
42315
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
42316
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
41968
42317
|
statistic: typing.Optional[builtins.str] = None,
|
|
41969
42318
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
41970
42319
|
) -> _Metric_e396a4dc:
|
|
@@ -41978,6 +42327,8 @@ class DatabaseInstanceBase(
|
|
|
41978
42327
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
41979
42328
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
41980
42329
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
42330
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
42331
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
41981
42332
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
41982
42333
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
41983
42334
|
'''
|
|
@@ -41988,6 +42339,8 @@ class DatabaseInstanceBase(
|
|
|
41988
42339
|
label=label,
|
|
41989
42340
|
period=period,
|
|
41990
42341
|
region=region,
|
|
42342
|
+
stack_account=stack_account,
|
|
42343
|
+
stack_region=stack_region,
|
|
41991
42344
|
statistic=statistic,
|
|
41992
42345
|
unit=unit,
|
|
41993
42346
|
)
|
|
@@ -42004,6 +42357,8 @@ class DatabaseInstanceBase(
|
|
|
42004
42357
|
label: typing.Optional[builtins.str] = None,
|
|
42005
42358
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
42006
42359
|
region: typing.Optional[builtins.str] = None,
|
|
42360
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
42361
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
42007
42362
|
statistic: typing.Optional[builtins.str] = None,
|
|
42008
42363
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
42009
42364
|
) -> _Metric_e396a4dc:
|
|
@@ -42017,6 +42372,8 @@ class DatabaseInstanceBase(
|
|
|
42017
42372
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
42018
42373
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
42019
42374
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
42375
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
42376
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
42020
42377
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
42021
42378
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
42022
42379
|
'''
|
|
@@ -42027,6 +42384,8 @@ class DatabaseInstanceBase(
|
|
|
42027
42384
|
label=label,
|
|
42028
42385
|
period=period,
|
|
42029
42386
|
region=region,
|
|
42387
|
+
stack_account=stack_account,
|
|
42388
|
+
stack_region=stack_region,
|
|
42030
42389
|
statistic=statistic,
|
|
42031
42390
|
unit=unit,
|
|
42032
42391
|
)
|
|
@@ -45412,6 +45771,8 @@ class DatabaseCluster(
|
|
|
45412
45771
|
label: typing.Optional[builtins.str] = None,
|
|
45413
45772
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
45414
45773
|
region: typing.Optional[builtins.str] = None,
|
|
45774
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
45775
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
45415
45776
|
statistic: typing.Optional[builtins.str] = None,
|
|
45416
45777
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
45417
45778
|
) -> _Metric_e396a4dc:
|
|
@@ -45429,6 +45790,8 @@ class DatabaseCluster(
|
|
|
45429
45790
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
45430
45791
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
45431
45792
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
45793
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
45794
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
45432
45795
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
45433
45796
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
45434
45797
|
'''
|
|
@@ -45439,6 +45802,8 @@ class DatabaseCluster(
|
|
|
45439
45802
|
label=label,
|
|
45440
45803
|
period=period,
|
|
45441
45804
|
region=region,
|
|
45805
|
+
stack_account=stack_account,
|
|
45806
|
+
stack_region=stack_region,
|
|
45442
45807
|
statistic=statistic,
|
|
45443
45808
|
unit=unit,
|
|
45444
45809
|
)
|
|
@@ -45455,6 +45820,8 @@ class DatabaseCluster(
|
|
|
45455
45820
|
label: typing.Optional[builtins.str] = None,
|
|
45456
45821
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
45457
45822
|
region: typing.Optional[builtins.str] = None,
|
|
45823
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
45824
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
45458
45825
|
statistic: typing.Optional[builtins.str] = None,
|
|
45459
45826
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
45460
45827
|
) -> _Metric_e396a4dc:
|
|
@@ -45466,6 +45833,8 @@ class DatabaseCluster(
|
|
|
45466
45833
|
:param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
|
|
45467
45834
|
:param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
|
|
45468
45835
|
:param region: Region which this metric comes from. Default: - Deployment region.
|
|
45836
|
+
:param stack_account: Account of the stack this metric is attached to. Default: - Deployment account.
|
|
45837
|
+
:param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
|
|
45469
45838
|
:param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
|
|
45470
45839
|
:param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
|
|
45471
45840
|
'''
|
|
@@ -45476,6 +45845,8 @@ class DatabaseCluster(
|
|
|
45476
45845
|
label=label,
|
|
45477
45846
|
period=period,
|
|
45478
45847
|
region=region,
|
|
45848
|
+
stack_account=stack_account,
|
|
45849
|
+
stack_region=stack_region,
|
|
45479
45850
|
statistic=statistic,
|
|
45480
45851
|
unit=unit,
|
|
45481
45852
|
)
|
|
@@ -49316,6 +49687,8 @@ def _typecheckingstub__cb438e41c5d27e4b968b536ac8e59048e5a810f9216c9316ab7091ead
|
|
|
49316
49687
|
label: typing.Optional[builtins.str] = None,
|
|
49317
49688
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
49318
49689
|
region: typing.Optional[builtins.str] = None,
|
|
49690
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
49691
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
49319
49692
|
statistic: typing.Optional[builtins.str] = None,
|
|
49320
49693
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
49321
49694
|
) -> None:
|
|
@@ -49361,6 +49734,8 @@ def _typecheckingstub__7a74ddedb30a6a3825b0f7fa6abc3a5aa48e031b507410402659ee350
|
|
|
49361
49734
|
label: typing.Optional[builtins.str] = None,
|
|
49362
49735
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
49363
49736
|
region: typing.Optional[builtins.str] = None,
|
|
49737
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
49738
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
49364
49739
|
statistic: typing.Optional[builtins.str] = None,
|
|
49365
49740
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
49366
49741
|
) -> None:
|
|
@@ -50130,6 +50505,8 @@ def _typecheckingstub__4f4ce592b81574a1f6a9ee4b6ab1c756352bb31fa97575b7cf7708b9d
|
|
|
50130
50505
|
label: typing.Optional[builtins.str] = None,
|
|
50131
50506
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
50132
50507
|
region: typing.Optional[builtins.str] = None,
|
|
50508
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
50509
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
50133
50510
|
statistic: typing.Optional[builtins.str] = None,
|
|
50134
50511
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
50135
50512
|
) -> None:
|
|
@@ -50292,6 +50669,8 @@ def _typecheckingstub__d3b875972d333f05c29d29ce0f29c0cd026377583d9fad46eb5cc05f0
|
|
|
50292
50669
|
label: typing.Optional[builtins.str] = None,
|
|
50293
50670
|
period: typing.Optional[_Duration_4839e8c3] = None,
|
|
50294
50671
|
region: typing.Optional[builtins.str] = None,
|
|
50672
|
+
stack_account: typing.Optional[builtins.str] = None,
|
|
50673
|
+
stack_region: typing.Optional[builtins.str] = None,
|
|
50295
50674
|
statistic: typing.Optional[builtins.str] = None,
|
|
50296
50675
|
unit: typing.Optional[_Unit_61bc6f70] = None,
|
|
50297
50676
|
) -> None:
|