aws-cdk-lib 2.203.1__py3-none-any.whl → 2.205.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.

Files changed (62) hide show
  1. aws_cdk/__init__.py +208 -92
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.203.1.jsii.tgz → aws-cdk-lib@2.205.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_aiops/__init__.py +89 -39
  5. aws_cdk/aws_apigateway/__init__.py +164 -0
  6. aws_cdk/aws_apigatewayv2/__init__.py +412 -0
  7. aws_cdk/aws_applicationautoscaling/__init__.py +2 -2
  8. aws_cdk/aws_arczonalshift/__init__.py +4 -1
  9. aws_cdk/aws_b2bi/__init__.py +32 -16
  10. aws_cdk/aws_bedrock/__init__.py +198 -10
  11. aws_cdk/aws_cassandra/__init__.py +156 -0
  12. aws_cdk/aws_certificatemanager/__init__.py +28 -0
  13. aws_cdk/aws_chatbot/__init__.py +28 -0
  14. aws_cdk/aws_cloudformation/__init__.py +74 -72
  15. aws_cdk/aws_cloudfront/__init__.py +1273 -485
  16. aws_cdk/aws_cloudfront/experimental/__init__.py +32 -0
  17. aws_cdk/aws_cloudfront_origins/__init__.py +26 -21
  18. aws_cdk/aws_cloudwatch/__init__.py +278 -23
  19. aws_cdk/aws_codebuild/__init__.py +300 -36
  20. aws_cdk/aws_datasync/__init__.py +2 -2
  21. aws_cdk/aws_docdb/__init__.py +78 -0
  22. aws_cdk/aws_dynamodb/__init__.py +523 -37
  23. aws_cdk/aws_ec2/__init__.py +126 -30
  24. aws_cdk/aws_ecs/__init__.py +64 -19
  25. aws_cdk/aws_elasticloadbalancingv2/__init__.py +724 -0
  26. aws_cdk/aws_elasticsearch/__init__.py +260 -0
  27. aws_cdk/aws_emrserverless/__init__.py +5 -5
  28. aws_cdk/aws_events/__init__.py +58 -3
  29. aws_cdk/aws_events_targets/__init__.py +7 -2
  30. aws_cdk/aws_evs/__init__.py +7 -7
  31. aws_cdk/aws_fsx/__init__.py +138 -78
  32. aws_cdk/aws_gamelift/__init__.py +19 -0
  33. aws_cdk/aws_glue/__init__.py +3 -3
  34. aws_cdk/aws_iot/__init__.py +1 -1
  35. aws_cdk/aws_kinesis/__init__.py +391 -13
  36. aws_cdk/aws_kinesisfirehose/__init__.py +128 -1
  37. aws_cdk/aws_lambda/__init__.py +144 -0
  38. aws_cdk/aws_lex/__init__.py +36 -19
  39. aws_cdk/aws_logs/__init__.py +58 -0
  40. aws_cdk/aws_neptune/__init__.py +12 -12
  41. aws_cdk/aws_odb/__init__.py +4049 -0
  42. aws_cdk/aws_omics/__init__.py +1 -1
  43. aws_cdk/aws_opensearchservice/__init__.py +260 -0
  44. aws_cdk/aws_qbusiness/__init__.py +471 -4
  45. aws_cdk/aws_quicksight/__init__.py +185 -16
  46. aws_cdk/aws_rds/__init__.py +553 -17
  47. aws_cdk/aws_redshiftserverless/__init__.py +72 -45
  48. aws_cdk/aws_route53/__init__.py +41 -19
  49. aws_cdk/aws_s3tables/__init__.py +1005 -0
  50. aws_cdk/aws_sagemaker/__init__.py +20 -0
  51. aws_cdk/aws_scheduler/__init__.py +210 -0
  52. aws_cdk/aws_sns/__init__.py +164 -0
  53. aws_cdk/aws_sqs/__init__.py +164 -0
  54. aws_cdk/aws_stepfunctions/__init__.py +288 -0
  55. aws_cdk/aws_synthetics/__init__.py +159 -37
  56. aws_cdk/aws_transfer/__init__.py +23 -1
  57. {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.205.0.dist-info}/METADATA +2 -2
  58. {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.205.0.dist-info}/RECORD +62 -61
  59. {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.205.0.dist-info}/LICENSE +0 -0
  60. {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.205.0.dist-info}/NOTICE +0 -0
  61. {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.205.0.dist-info}/WHEEL +0 -0
  62. {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.205.0.dist-info}/top_level.txt +0 -0
@@ -1844,6 +1844,26 @@ db_from_lookup = rds.DatabaseInstance.from_lookup(self, "dbFromLookup",
1844
1844
  db_from_lookup.grant_connect(my_user_role, "my-user-id")
1845
1845
  ```
1846
1846
 
1847
+ ## Importing existing DatabaseCluster
1848
+
1849
+ ### Lookup DatabaseCluster by clusterIdentifier
1850
+
1851
+ You can lookup an existing DatabaseCluster by its clusterIdentifier using `DatabaseCluster.fromLookup()`. This method returns an `IDatabaseCluster`.
1852
+
1853
+ Here's how `DatabaseCluster.fromLookup()` can be used:
1854
+
1855
+ ```python
1856
+ # my_user_role: iam.Role
1857
+
1858
+
1859
+ cluster_from_lookup = rds.DatabaseCluster.from_lookup(self, "ClusterFromLookup",
1860
+ cluster_identifier="my-cluster-id"
1861
+ )
1862
+
1863
+ # Grant a connection
1864
+ cluster_from_lookup.grant_connect(my_user_role, "my-user-id")
1865
+ ```
1866
+
1847
1867
  ## Limitless Database Cluster
1848
1868
 
1849
1869
  Amazon Aurora [PostgreSQL Limitless Database](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/limitless.html) provides automated horizontal scaling to process millions of write transactions per second and manages petabytes of data while maintaining the simplicity of operating inside a single database.
@@ -4361,6 +4381,12 @@ class AuroraPostgresEngineVersion(
4361
4381
  '''Version "17.4".'''
4362
4382
  return typing.cast("AuroraPostgresEngineVersion", jsii.sget(cls, "VER_17_4"))
4363
4383
 
4384
+ @jsii.python.classproperty
4385
+ @jsii.member(jsii_name="VER_17_5")
4386
+ def VER_17_5(cls) -> "AuroraPostgresEngineVersion":
4387
+ '''Version "17.5".'''
4388
+ return typing.cast("AuroraPostgresEngineVersion", jsii.sget(cls, "VER_17_5"))
4389
+
4364
4390
  @jsii.python.classproperty
4365
4391
  @jsii.member(jsii_name="VER_9_6_11")
4366
4392
  def VER_9_6_11(cls) -> "AuroraPostgresEngineVersion":
@@ -9093,6 +9119,7 @@ class CfnDBInstance(
9093
9119
  auto_minor_version_upgrade=False,
9094
9120
  availability_zone="availabilityZone",
9095
9121
  backup_retention_period=123,
9122
+ backup_target="backupTarget",
9096
9123
  ca_certificate_identifier="caCertificateIdentifier",
9097
9124
  certificate_rotation_restart=False,
9098
9125
  character_set_name="characterSetName",
@@ -9190,6 +9217,7 @@ class CfnDBInstance(
9190
9217
  auto_minor_version_upgrade: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
9191
9218
  availability_zone: typing.Optional[builtins.str] = None,
9192
9219
  backup_retention_period: typing.Optional[jsii.Number] = None,
9220
+ backup_target: typing.Optional[builtins.str] = None,
9193
9221
  ca_certificate_identifier: typing.Optional[builtins.str] = None,
9194
9222
  certificate_rotation_restart: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
9195
9223
  character_set_name: typing.Optional[builtins.str] = None,
@@ -9274,6 +9302,7 @@ class CfnDBInstance(
9274
9302
  :param auto_minor_version_upgrade: A value that indicates whether minor engine upgrades are applied automatically to the DB instance during the maintenance window. By default, minor engine upgrades are applied automatically.
9275
9303
  :param availability_zone: The Availability Zone (AZ) where the database will be created. For information on AWS Regions and Availability Zones, see `Regions and Availability Zones <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html>`_ . For Amazon Aurora, each Aurora DB cluster hosts copies of its storage in three separate Availability Zones. Specify one of these Availability Zones. Aurora automatically chooses an appropriate Availability Zone if you don't specify one. Default: A random, system-chosen Availability Zone in the endpoint's AWS Region . Constraints: - The ``AvailabilityZone`` parameter can't be specified if the DB instance is a Multi-AZ deployment. - The specified Availability Zone must be in the same AWS Region as the current endpoint. Example: ``us-east-1d``
9276
9304
  :param backup_retention_period: The number of days for which automated backups are retained. Setting this parameter to a positive number enables backups. Setting this parameter to 0 disables automated backups. *Amazon Aurora* Not applicable. The retention period for automated backups is managed by the DB cluster. Default: 1 Constraints: - Must be a value from 0 to 35 - Can't be set to 0 if the DB instance is a source to read replicas
9305
+ :param backup_target:
9277
9306
  :param ca_certificate_identifier: The identifier of the CA certificate for this DB instance. For more information, see `Using SSL/TLS to encrypt a connection to a DB instance <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html>`_ in the *Amazon RDS User Guide* and `Using SSL/TLS to encrypt a connection to a DB cluster <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html>`_ in the *Amazon Aurora User Guide* .
9278
9307
  :param certificate_rotation_restart: Specifies whether the DB instance is restarted when you rotate your SSL/TLS certificate. By default, the DB instance is restarted when you rotate your SSL/TLS certificate. The certificate is not updated until the DB instance is restarted. .. epigraph:: Set this parameter only if you are *not* using SSL/TLS to connect to the DB instance. If you are using SSL/TLS to connect to the DB instance, follow the appropriate instructions for your DB engine to rotate your SSL/TLS certificate: - For more information about rotating your SSL/TLS certificate for RDS DB engines, see `Rotating Your SSL/TLS Certificate. <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL-certificate-rotation.html>`_ in the *Amazon RDS User Guide.* - For more information about rotating your SSL/TLS certificate for Aurora DB engines, see `Rotating Your SSL/TLS Certificate <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL-certificate-rotation.html>`_ in the *Amazon Aurora User Guide* . This setting doesn't apply to RDS Custom DB instances.
9279
9308
  :param character_set_name: For supported engines, indicates that the DB instance should be associated with the specified character set. *Amazon Aurora* Not applicable. The character set is managed by the DB cluster. For more information, see `AWS::RDS::DBCluster <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html>`_ .
@@ -9315,7 +9344,7 @@ class CfnDBInstance(
9315
9344
  :param max_allocated_storage: The upper limit in gibibytes (GiB) to which Amazon RDS can automatically scale the storage of the DB instance. For more information about this setting, including limitations that apply to it, see `Managing capacity automatically with Amazon RDS storage autoscaling <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling>`_ in the *Amazon RDS User Guide* . This setting doesn't apply to the following DB instances: - Amazon Aurora (Storage is managed by the DB cluster.) - RDS Custom
9316
9345
  :param monitoring_interval: The interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB instance. To disable collection of Enhanced Monitoring metrics, specify ``0`` . If ``MonitoringRoleArn`` is specified, then you must set ``MonitoringInterval`` to a value other than ``0`` . This setting doesn't apply to RDS Custom DB instances. Valid Values: ``0 | 1 | 5 | 10 | 15 | 30 | 60`` Default: ``0``
9317
9346
  :param monitoring_role_arn: The ARN for the IAM role that permits RDS to send enhanced monitoring metrics to Amazon CloudWatch Logs. For example, ``arn:aws:iam:123456789012:role/emaccess`` . For information on creating a monitoring role, see `Setting Up and Enabling Enhanced Monitoring <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.OS.html#USER_Monitoring.OS.Enabling>`_ in the *Amazon RDS User Guide* . If ``MonitoringInterval`` is set to a value other than ``0`` , then you must supply a ``MonitoringRoleArn`` value. This setting doesn't apply to RDS Custom DB instances.
9318
- :param multi_az: Specifies whether the DB instance is a Multi-AZ deployment. You can't set the ``AvailabilityZone`` parameter if the DB instance is a Multi-AZ deployment. This setting doesn't apply to the following DB instances: - Amazon Aurora (DB instance Availability Zones (AZs) are managed by the DB cluster.) - RDS Custom
9347
+ :param multi_az: Specifies whether the DB instance is a Multi-AZ deployment. You can't set the ``AvailabilityZone`` parameter if the DB instance is a Multi-AZ deployment. This setting doesn't apply to Amazon Aurora because the DB instance Availability Zones (AZs) are managed by the DB cluster.
9319
9348
  :param nchar_character_set_name: The name of the NCHAR character set for the Oracle DB instance. This setting doesn't apply to RDS Custom DB instances.
9320
9349
  :param network_type: The network type of the DB instance. Valid values: - ``IPV4`` - ``DUAL`` The network type is determined by the ``DBSubnetGroup`` specified for the DB instance. A ``DBSubnetGroup`` can support only the IPv4 protocol or the IPv4 and IPv6 protocols ( ``DUAL`` ). For more information, see `Working with a DB instance in a VPC <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html>`_ in the *Amazon RDS User Guide.*
9321
9350
  :param option_group_name: Indicates that the DB instance should be associated with the specified option group. Permanent options, such as the TDE option for Oracle Advanced Security TDE, can't be removed from an option group. Also, that option group can't be removed from a DB instance once it is associated with a DB instance.
@@ -9360,6 +9389,7 @@ class CfnDBInstance(
9360
9389
  auto_minor_version_upgrade=auto_minor_version_upgrade,
9361
9390
  availability_zone=availability_zone,
9362
9391
  backup_retention_period=backup_retention_period,
9392
+ backup_target=backup_target,
9363
9393
  ca_certificate_identifier=ca_certificate_identifier,
9364
9394
  certificate_rotation_restart=certificate_rotation_restart,
9365
9395
  character_set_name=character_set_name,
@@ -9757,6 +9787,18 @@ class CfnDBInstance(
9757
9787
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
9758
9788
  jsii.set(self, "backupRetentionPeriod", value) # pyright: ignore[reportArgumentType]
9759
9789
 
9790
+ @builtins.property
9791
+ @jsii.member(jsii_name="backupTarget")
9792
+ def backup_target(self) -> typing.Optional[builtins.str]:
9793
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "backupTarget"))
9794
+
9795
+ @backup_target.setter
9796
+ def backup_target(self, value: typing.Optional[builtins.str]) -> None:
9797
+ if __debug__:
9798
+ type_hints = typing.get_type_hints(_typecheckingstub__2d01b6bd3366a70d949ce4b76b7922f17c0009fda45951b31e9665ddfed4729e)
9799
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
9800
+ jsii.set(self, "backupTarget", value) # pyright: ignore[reportArgumentType]
9801
+
9760
9802
  @builtins.property
9761
9803
  @jsii.member(jsii_name="caCertificateIdentifier")
9762
9804
  def ca_certificate_identifier(self) -> typing.Optional[builtins.str]:
@@ -11191,6 +11233,7 @@ class CfnDBInstance(
11191
11233
  "auto_minor_version_upgrade": "autoMinorVersionUpgrade",
11192
11234
  "availability_zone": "availabilityZone",
11193
11235
  "backup_retention_period": "backupRetentionPeriod",
11236
+ "backup_target": "backupTarget",
11194
11237
  "ca_certificate_identifier": "caCertificateIdentifier",
11195
11238
  "certificate_rotation_restart": "certificateRotationRestart",
11196
11239
  "character_set_name": "characterSetName",
@@ -11277,6 +11320,7 @@ class CfnDBInstanceProps:
11277
11320
  auto_minor_version_upgrade: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
11278
11321
  availability_zone: typing.Optional[builtins.str] = None,
11279
11322
  backup_retention_period: typing.Optional[jsii.Number] = None,
11323
+ backup_target: typing.Optional[builtins.str] = None,
11280
11324
  ca_certificate_identifier: typing.Optional[builtins.str] = None,
11281
11325
  certificate_rotation_restart: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
11282
11326
  character_set_name: typing.Optional[builtins.str] = None,
@@ -11360,6 +11404,7 @@ class CfnDBInstanceProps:
11360
11404
  :param auto_minor_version_upgrade: A value that indicates whether minor engine upgrades are applied automatically to the DB instance during the maintenance window. By default, minor engine upgrades are applied automatically.
11361
11405
  :param availability_zone: The Availability Zone (AZ) where the database will be created. For information on AWS Regions and Availability Zones, see `Regions and Availability Zones <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html>`_ . For Amazon Aurora, each Aurora DB cluster hosts copies of its storage in three separate Availability Zones. Specify one of these Availability Zones. Aurora automatically chooses an appropriate Availability Zone if you don't specify one. Default: A random, system-chosen Availability Zone in the endpoint's AWS Region . Constraints: - The ``AvailabilityZone`` parameter can't be specified if the DB instance is a Multi-AZ deployment. - The specified Availability Zone must be in the same AWS Region as the current endpoint. Example: ``us-east-1d``
11362
11406
  :param backup_retention_period: The number of days for which automated backups are retained. Setting this parameter to a positive number enables backups. Setting this parameter to 0 disables automated backups. *Amazon Aurora* Not applicable. The retention period for automated backups is managed by the DB cluster. Default: 1 Constraints: - Must be a value from 0 to 35 - Can't be set to 0 if the DB instance is a source to read replicas
11407
+ :param backup_target:
11363
11408
  :param ca_certificate_identifier: The identifier of the CA certificate for this DB instance. For more information, see `Using SSL/TLS to encrypt a connection to a DB instance <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html>`_ in the *Amazon RDS User Guide* and `Using SSL/TLS to encrypt a connection to a DB cluster <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html>`_ in the *Amazon Aurora User Guide* .
11364
11409
  :param certificate_rotation_restart: Specifies whether the DB instance is restarted when you rotate your SSL/TLS certificate. By default, the DB instance is restarted when you rotate your SSL/TLS certificate. The certificate is not updated until the DB instance is restarted. .. epigraph:: Set this parameter only if you are *not* using SSL/TLS to connect to the DB instance. If you are using SSL/TLS to connect to the DB instance, follow the appropriate instructions for your DB engine to rotate your SSL/TLS certificate: - For more information about rotating your SSL/TLS certificate for RDS DB engines, see `Rotating Your SSL/TLS Certificate. <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL-certificate-rotation.html>`_ in the *Amazon RDS User Guide.* - For more information about rotating your SSL/TLS certificate for Aurora DB engines, see `Rotating Your SSL/TLS Certificate <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL-certificate-rotation.html>`_ in the *Amazon Aurora User Guide* . This setting doesn't apply to RDS Custom DB instances.
11365
11410
  :param character_set_name: For supported engines, indicates that the DB instance should be associated with the specified character set. *Amazon Aurora* Not applicable. The character set is managed by the DB cluster. For more information, see `AWS::RDS::DBCluster <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html>`_ .
@@ -11401,7 +11446,7 @@ class CfnDBInstanceProps:
11401
11446
  :param max_allocated_storage: The upper limit in gibibytes (GiB) to which Amazon RDS can automatically scale the storage of the DB instance. For more information about this setting, including limitations that apply to it, see `Managing capacity automatically with Amazon RDS storage autoscaling <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling>`_ in the *Amazon RDS User Guide* . This setting doesn't apply to the following DB instances: - Amazon Aurora (Storage is managed by the DB cluster.) - RDS Custom
11402
11447
  :param monitoring_interval: The interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB instance. To disable collection of Enhanced Monitoring metrics, specify ``0`` . If ``MonitoringRoleArn`` is specified, then you must set ``MonitoringInterval`` to a value other than ``0`` . This setting doesn't apply to RDS Custom DB instances. Valid Values: ``0 | 1 | 5 | 10 | 15 | 30 | 60`` Default: ``0``
11403
11448
  :param monitoring_role_arn: The ARN for the IAM role that permits RDS to send enhanced monitoring metrics to Amazon CloudWatch Logs. For example, ``arn:aws:iam:123456789012:role/emaccess`` . For information on creating a monitoring role, see `Setting Up and Enabling Enhanced Monitoring <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.OS.html#USER_Monitoring.OS.Enabling>`_ in the *Amazon RDS User Guide* . If ``MonitoringInterval`` is set to a value other than ``0`` , then you must supply a ``MonitoringRoleArn`` value. This setting doesn't apply to RDS Custom DB instances.
11404
- :param multi_az: Specifies whether the DB instance is a Multi-AZ deployment. You can't set the ``AvailabilityZone`` parameter if the DB instance is a Multi-AZ deployment. This setting doesn't apply to the following DB instances: - Amazon Aurora (DB instance Availability Zones (AZs) are managed by the DB cluster.) - RDS Custom
11449
+ :param multi_az: Specifies whether the DB instance is a Multi-AZ deployment. You can't set the ``AvailabilityZone`` parameter if the DB instance is a Multi-AZ deployment. This setting doesn't apply to Amazon Aurora because the DB instance Availability Zones (AZs) are managed by the DB cluster.
11405
11450
  :param nchar_character_set_name: The name of the NCHAR character set for the Oracle DB instance. This setting doesn't apply to RDS Custom DB instances.
11406
11451
  :param network_type: The network type of the DB instance. Valid values: - ``IPV4`` - ``DUAL`` The network type is determined by the ``DBSubnetGroup`` specified for the DB instance. A ``DBSubnetGroup`` can support only the IPv4 protocol or the IPv4 and IPv6 protocols ( ``DUAL`` ). For more information, see `Working with a DB instance in a VPC <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html>`_ in the *Amazon RDS User Guide.*
11407
11452
  :param option_group_name: Indicates that the DB instance should be associated with the specified option group. Permanent options, such as the TDE option for Oracle Advanced Security TDE, can't be removed from an option group. Also, that option group can't be removed from a DB instance once it is associated with a DB instance.
@@ -11454,6 +11499,7 @@ class CfnDBInstanceProps:
11454
11499
  auto_minor_version_upgrade=False,
11455
11500
  availability_zone="availabilityZone",
11456
11501
  backup_retention_period=123,
11502
+ backup_target="backupTarget",
11457
11503
  ca_certificate_identifier="caCertificateIdentifier",
11458
11504
  certificate_rotation_restart=False,
11459
11505
  character_set_name="characterSetName",
@@ -11547,6 +11593,7 @@ class CfnDBInstanceProps:
11547
11593
  check_type(argname="argument auto_minor_version_upgrade", value=auto_minor_version_upgrade, expected_type=type_hints["auto_minor_version_upgrade"])
11548
11594
  check_type(argname="argument availability_zone", value=availability_zone, expected_type=type_hints["availability_zone"])
11549
11595
  check_type(argname="argument backup_retention_period", value=backup_retention_period, expected_type=type_hints["backup_retention_period"])
11596
+ check_type(argname="argument backup_target", value=backup_target, expected_type=type_hints["backup_target"])
11550
11597
  check_type(argname="argument ca_certificate_identifier", value=ca_certificate_identifier, expected_type=type_hints["ca_certificate_identifier"])
11551
11598
  check_type(argname="argument certificate_rotation_restart", value=certificate_rotation_restart, expected_type=type_hints["certificate_rotation_restart"])
11552
11599
  check_type(argname="argument character_set_name", value=character_set_name, expected_type=type_hints["character_set_name"])
@@ -11638,6 +11685,8 @@ class CfnDBInstanceProps:
11638
11685
  self._values["availability_zone"] = availability_zone
11639
11686
  if backup_retention_period is not None:
11640
11687
  self._values["backup_retention_period"] = backup_retention_period
11688
+ if backup_target is not None:
11689
+ self._values["backup_target"] = backup_target
11641
11690
  if ca_certificate_identifier is not None:
11642
11691
  self._values["ca_certificate_identifier"] = ca_certificate_identifier
11643
11692
  if certificate_rotation_restart is not None:
@@ -11988,6 +12037,14 @@ class CfnDBInstanceProps:
11988
12037
  result = self._values.get("backup_retention_period")
11989
12038
  return typing.cast(typing.Optional[jsii.Number], result)
11990
12039
 
12040
+ @builtins.property
12041
+ def backup_target(self) -> typing.Optional[builtins.str]:
12042
+ '''
12043
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbinstance.html#cfn-rds-dbinstance-backuptarget
12044
+ '''
12045
+ result = self._values.get("backup_target")
12046
+ return typing.cast(typing.Optional[builtins.str], result)
12047
+
11991
12048
  @builtins.property
11992
12049
  def ca_certificate_identifier(self) -> typing.Optional[builtins.str]:
11993
12050
  '''The identifier of the CA certificate for this DB instance.
@@ -12890,10 +12947,7 @@ class CfnDBInstanceProps:
12890
12947
 
12891
12948
  You can't set the ``AvailabilityZone`` parameter if the DB instance is a Multi-AZ deployment.
12892
12949
 
12893
- This setting doesn't apply to the following DB instances:
12894
-
12895
- - Amazon Aurora (DB instance Availability Zones (AZs) are managed by the DB cluster.)
12896
- - RDS Custom
12950
+ This setting doesn't apply to Amazon Aurora because the DB instance Availability Zones (AZs) are managed by the DB cluster.
12897
12951
 
12898
12952
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbinstance.html#cfn-rds-dbinstance-multiaz
12899
12953
  '''
@@ -22353,6 +22407,57 @@ class DatabaseClusterFromSnapshotProps:
22353
22407
  )
22354
22408
 
22355
22409
 
22410
+ @jsii.data_type(
22411
+ jsii_type="aws-cdk-lib.aws_rds.DatabaseClusterLookupOptions",
22412
+ jsii_struct_bases=[],
22413
+ name_mapping={"cluster_identifier": "clusterIdentifier"},
22414
+ )
22415
+ class DatabaseClusterLookupOptions:
22416
+ def __init__(self, *, cluster_identifier: builtins.str) -> None:
22417
+ '''Properties for looking up an existing DatabaseCluster.
22418
+
22419
+ :param cluster_identifier: The cluster identifier of the DatabaseCluster.
22420
+
22421
+ :exampleMetadata: infused
22422
+
22423
+ Example::
22424
+
22425
+ # my_user_role: iam.Role
22426
+
22427
+
22428
+ cluster_from_lookup = rds.DatabaseCluster.from_lookup(self, "ClusterFromLookup",
22429
+ cluster_identifier="my-cluster-id"
22430
+ )
22431
+
22432
+ # Grant a connection
22433
+ cluster_from_lookup.grant_connect(my_user_role, "my-user-id")
22434
+ '''
22435
+ if __debug__:
22436
+ type_hints = typing.get_type_hints(_typecheckingstub__87588f52192df76e2f82453b5ba55840986615a954d2a6865cc65bf5b83b9cf0)
22437
+ check_type(argname="argument cluster_identifier", value=cluster_identifier, expected_type=type_hints["cluster_identifier"])
22438
+ self._values: typing.Dict[builtins.str, typing.Any] = {
22439
+ "cluster_identifier": cluster_identifier,
22440
+ }
22441
+
22442
+ @builtins.property
22443
+ def cluster_identifier(self) -> builtins.str:
22444
+ '''The cluster identifier of the DatabaseCluster.'''
22445
+ result = self._values.get("cluster_identifier")
22446
+ assert result is not None, "Required property 'cluster_identifier' is missing"
22447
+ return typing.cast(builtins.str, result)
22448
+
22449
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
22450
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
22451
+
22452
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
22453
+ return not (rhs == self)
22454
+
22455
+ def __repr__(self) -> str:
22456
+ return "DatabaseClusterLookupOptions(%s)" % ", ".join(
22457
+ k + "=" + repr(v) for k, v in self._values.items()
22458
+ )
22459
+
22460
+
22356
22461
  @jsii.data_type(
22357
22462
  jsii_type="aws-cdk-lib.aws_rds.DatabaseClusterProps",
22358
22463
  jsii_struct_bases=[],
@@ -28208,6 +28313,7 @@ class IDatabaseCluster(
28208
28313
  account: typing.Optional[builtins.str] = None,
28209
28314
  color: typing.Optional[builtins.str] = None,
28210
28315
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
28316
+ id: typing.Optional[builtins.str] = None,
28211
28317
  label: typing.Optional[builtins.str] = None,
28212
28318
  period: typing.Optional[_Duration_4839e8c3] = None,
28213
28319
  region: typing.Optional[builtins.str] = None,
@@ -28215,6 +28321,7 @@ class IDatabaseCluster(
28215
28321
  stack_region: typing.Optional[builtins.str] = None,
28216
28322
  statistic: typing.Optional[builtins.str] = None,
28217
28323
  unit: typing.Optional[_Unit_61bc6f70] = None,
28324
+ visible: typing.Optional[builtins.bool] = None,
28218
28325
  ) -> _Metric_e396a4dc:
28219
28326
  '''Return the given named metric for this DBCluster.
28220
28327
 
@@ -28222,6 +28329,7 @@ class IDatabaseCluster(
28222
28329
  :param account: Account which this metric comes from. Default: - Deployment account.
28223
28330
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
28224
28331
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
28332
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
28225
28333
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
28226
28334
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
28227
28335
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -28229,6 +28337,7 @@ class IDatabaseCluster(
28229
28337
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
28230
28338
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
28231
28339
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
28340
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
28232
28341
  '''
28233
28342
  ...
28234
28343
 
@@ -28239,6 +28348,7 @@ class IDatabaseCluster(
28239
28348
  account: typing.Optional[builtins.str] = None,
28240
28349
  color: typing.Optional[builtins.str] = None,
28241
28350
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
28351
+ id: typing.Optional[builtins.str] = None,
28242
28352
  label: typing.Optional[builtins.str] = None,
28243
28353
  period: typing.Optional[_Duration_4839e8c3] = None,
28244
28354
  region: typing.Optional[builtins.str] = None,
@@ -28246,6 +28356,7 @@ class IDatabaseCluster(
28246
28356
  stack_region: typing.Optional[builtins.str] = None,
28247
28357
  statistic: typing.Optional[builtins.str] = None,
28248
28358
  unit: typing.Optional[_Unit_61bc6f70] = None,
28359
+ visible: typing.Optional[builtins.bool] = None,
28249
28360
  ) -> _Metric_e396a4dc:
28250
28361
  '''The percentage of CPU utilization.
28251
28362
 
@@ -28254,6 +28365,7 @@ class IDatabaseCluster(
28254
28365
  :param account: Account which this metric comes from. Default: - Deployment account.
28255
28366
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
28256
28367
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
28368
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
28257
28369
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
28258
28370
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
28259
28371
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -28261,6 +28373,7 @@ class IDatabaseCluster(
28261
28373
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
28262
28374
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
28263
28375
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
28376
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
28264
28377
  '''
28265
28378
  ...
28266
28379
 
@@ -28271,6 +28384,7 @@ class IDatabaseCluster(
28271
28384
  account: typing.Optional[builtins.str] = None,
28272
28385
  color: typing.Optional[builtins.str] = None,
28273
28386
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
28387
+ id: typing.Optional[builtins.str] = None,
28274
28388
  label: typing.Optional[builtins.str] = None,
28275
28389
  period: typing.Optional[_Duration_4839e8c3] = None,
28276
28390
  region: typing.Optional[builtins.str] = None,
@@ -28278,6 +28392,7 @@ class IDatabaseCluster(
28278
28392
  stack_region: typing.Optional[builtins.str] = None,
28279
28393
  statistic: typing.Optional[builtins.str] = None,
28280
28394
  unit: typing.Optional[_Unit_61bc6f70] = None,
28395
+ visible: typing.Optional[builtins.bool] = None,
28281
28396
  ) -> _Metric_e396a4dc:
28282
28397
  '''The number of database connections in use.
28283
28398
 
@@ -28286,6 +28401,7 @@ class IDatabaseCluster(
28286
28401
  :param account: Account which this metric comes from. Default: - Deployment account.
28287
28402
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
28288
28403
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
28404
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
28289
28405
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
28290
28406
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
28291
28407
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -28293,6 +28409,7 @@ class IDatabaseCluster(
28293
28409
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
28294
28410
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
28295
28411
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
28412
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
28296
28413
  '''
28297
28414
  ...
28298
28415
 
@@ -28303,6 +28420,7 @@ class IDatabaseCluster(
28303
28420
  account: typing.Optional[builtins.str] = None,
28304
28421
  color: typing.Optional[builtins.str] = None,
28305
28422
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
28423
+ id: typing.Optional[builtins.str] = None,
28306
28424
  label: typing.Optional[builtins.str] = None,
28307
28425
  period: typing.Optional[_Duration_4839e8c3] = None,
28308
28426
  region: typing.Optional[builtins.str] = None,
@@ -28310,6 +28428,7 @@ class IDatabaseCluster(
28310
28428
  stack_region: typing.Optional[builtins.str] = None,
28311
28429
  statistic: typing.Optional[builtins.str] = None,
28312
28430
  unit: typing.Optional[_Unit_61bc6f70] = None,
28431
+ visible: typing.Optional[builtins.bool] = None,
28313
28432
  ) -> _Metric_e396a4dc:
28314
28433
  '''The average number of deadlocks in the database per second.
28315
28434
 
@@ -28318,6 +28437,7 @@ class IDatabaseCluster(
28318
28437
  :param account: Account which this metric comes from. Default: - Deployment account.
28319
28438
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
28320
28439
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
28440
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
28321
28441
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
28322
28442
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
28323
28443
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -28325,6 +28445,7 @@ class IDatabaseCluster(
28325
28445
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
28326
28446
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
28327
28447
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
28448
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
28328
28449
  '''
28329
28450
  ...
28330
28451
 
@@ -28335,6 +28456,7 @@ class IDatabaseCluster(
28335
28456
  account: typing.Optional[builtins.str] = None,
28336
28457
  color: typing.Optional[builtins.str] = None,
28337
28458
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
28459
+ id: typing.Optional[builtins.str] = None,
28338
28460
  label: typing.Optional[builtins.str] = None,
28339
28461
  period: typing.Optional[_Duration_4839e8c3] = None,
28340
28462
  region: typing.Optional[builtins.str] = None,
@@ -28342,6 +28464,7 @@ class IDatabaseCluster(
28342
28464
  stack_region: typing.Optional[builtins.str] = None,
28343
28465
  statistic: typing.Optional[builtins.str] = None,
28344
28466
  unit: typing.Optional[_Unit_61bc6f70] = None,
28467
+ visible: typing.Optional[builtins.bool] = None,
28345
28468
  ) -> _Metric_e396a4dc:
28346
28469
  '''The amount of time that the instance has been running, in seconds.
28347
28470
 
@@ -28350,6 +28473,7 @@ class IDatabaseCluster(
28350
28473
  :param account: Account which this metric comes from. Default: - Deployment account.
28351
28474
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
28352
28475
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
28476
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
28353
28477
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
28354
28478
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
28355
28479
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -28357,6 +28481,7 @@ class IDatabaseCluster(
28357
28481
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
28358
28482
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
28359
28483
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
28484
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
28360
28485
  '''
28361
28486
  ...
28362
28487
 
@@ -28367,6 +28492,7 @@ class IDatabaseCluster(
28367
28492
  account: typing.Optional[builtins.str] = None,
28368
28493
  color: typing.Optional[builtins.str] = None,
28369
28494
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
28495
+ id: typing.Optional[builtins.str] = None,
28370
28496
  label: typing.Optional[builtins.str] = None,
28371
28497
  period: typing.Optional[_Duration_4839e8c3] = None,
28372
28498
  region: typing.Optional[builtins.str] = None,
@@ -28374,6 +28500,7 @@ class IDatabaseCluster(
28374
28500
  stack_region: typing.Optional[builtins.str] = None,
28375
28501
  statistic: typing.Optional[builtins.str] = None,
28376
28502
  unit: typing.Optional[_Unit_61bc6f70] = None,
28503
+ visible: typing.Optional[builtins.bool] = None,
28377
28504
  ) -> _Metric_e396a4dc:
28378
28505
  '''The amount of available random access memory, in bytes.
28379
28506
 
@@ -28382,6 +28509,7 @@ class IDatabaseCluster(
28382
28509
  :param account: Account which this metric comes from. Default: - Deployment account.
28383
28510
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
28384
28511
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
28512
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
28385
28513
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
28386
28514
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
28387
28515
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -28389,6 +28517,7 @@ class IDatabaseCluster(
28389
28517
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
28390
28518
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
28391
28519
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
28520
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
28392
28521
  '''
28393
28522
  ...
28394
28523
 
@@ -28399,6 +28528,7 @@ class IDatabaseCluster(
28399
28528
  account: typing.Optional[builtins.str] = None,
28400
28529
  color: typing.Optional[builtins.str] = None,
28401
28530
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
28531
+ id: typing.Optional[builtins.str] = None,
28402
28532
  label: typing.Optional[builtins.str] = None,
28403
28533
  period: typing.Optional[_Duration_4839e8c3] = None,
28404
28534
  region: typing.Optional[builtins.str] = None,
@@ -28406,6 +28536,7 @@ class IDatabaseCluster(
28406
28536
  stack_region: typing.Optional[builtins.str] = None,
28407
28537
  statistic: typing.Optional[builtins.str] = None,
28408
28538
  unit: typing.Optional[_Unit_61bc6f70] = None,
28539
+ visible: typing.Optional[builtins.bool] = None,
28409
28540
  ) -> _Metric_e396a4dc:
28410
28541
  '''The amount of local storage available, in bytes.
28411
28542
 
@@ -28414,6 +28545,7 @@ class IDatabaseCluster(
28414
28545
  :param account: Account which this metric comes from. Default: - Deployment account.
28415
28546
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
28416
28547
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
28548
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
28417
28549
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
28418
28550
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
28419
28551
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -28421,6 +28553,7 @@ class IDatabaseCluster(
28421
28553
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
28422
28554
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
28423
28555
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
28556
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
28424
28557
  '''
28425
28558
  ...
28426
28559
 
@@ -28431,6 +28564,7 @@ class IDatabaseCluster(
28431
28564
  account: typing.Optional[builtins.str] = None,
28432
28565
  color: typing.Optional[builtins.str] = None,
28433
28566
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
28567
+ id: typing.Optional[builtins.str] = None,
28434
28568
  label: typing.Optional[builtins.str] = None,
28435
28569
  period: typing.Optional[_Duration_4839e8c3] = None,
28436
28570
  region: typing.Optional[builtins.str] = None,
@@ -28438,6 +28572,7 @@ class IDatabaseCluster(
28438
28572
  stack_region: typing.Optional[builtins.str] = None,
28439
28573
  statistic: typing.Optional[builtins.str] = None,
28440
28574
  unit: typing.Optional[_Unit_61bc6f70] = None,
28575
+ visible: typing.Optional[builtins.bool] = None,
28441
28576
  ) -> _Metric_e396a4dc:
28442
28577
  '''The amount of network throughput received from clients by each instance, in bytes per second.
28443
28578
 
@@ -28446,6 +28581,7 @@ class IDatabaseCluster(
28446
28581
  :param account: Account which this metric comes from. Default: - Deployment account.
28447
28582
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
28448
28583
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
28584
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
28449
28585
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
28450
28586
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
28451
28587
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -28453,6 +28589,7 @@ class IDatabaseCluster(
28453
28589
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
28454
28590
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
28455
28591
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
28592
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
28456
28593
  '''
28457
28594
  ...
28458
28595
 
@@ -28463,6 +28600,7 @@ class IDatabaseCluster(
28463
28600
  account: typing.Optional[builtins.str] = None,
28464
28601
  color: typing.Optional[builtins.str] = None,
28465
28602
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
28603
+ id: typing.Optional[builtins.str] = None,
28466
28604
  label: typing.Optional[builtins.str] = None,
28467
28605
  period: typing.Optional[_Duration_4839e8c3] = None,
28468
28606
  region: typing.Optional[builtins.str] = None,
@@ -28470,6 +28608,7 @@ class IDatabaseCluster(
28470
28608
  stack_region: typing.Optional[builtins.str] = None,
28471
28609
  statistic: typing.Optional[builtins.str] = None,
28472
28610
  unit: typing.Optional[_Unit_61bc6f70] = None,
28611
+ visible: typing.Optional[builtins.bool] = None,
28473
28612
  ) -> _Metric_e396a4dc:
28474
28613
  '''The amount of network throughput both received from and transmitted to clients by each instance, in bytes per second.
28475
28614
 
@@ -28478,6 +28617,7 @@ class IDatabaseCluster(
28478
28617
  :param account: Account which this metric comes from. Default: - Deployment account.
28479
28618
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
28480
28619
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
28620
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
28481
28621
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
28482
28622
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
28483
28623
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -28485,6 +28625,7 @@ class IDatabaseCluster(
28485
28625
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
28486
28626
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
28487
28627
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
28628
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
28488
28629
  '''
28489
28630
  ...
28490
28631
 
@@ -28495,6 +28636,7 @@ class IDatabaseCluster(
28495
28636
  account: typing.Optional[builtins.str] = None,
28496
28637
  color: typing.Optional[builtins.str] = None,
28497
28638
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
28639
+ id: typing.Optional[builtins.str] = None,
28498
28640
  label: typing.Optional[builtins.str] = None,
28499
28641
  period: typing.Optional[_Duration_4839e8c3] = None,
28500
28642
  region: typing.Optional[builtins.str] = None,
@@ -28502,6 +28644,7 @@ class IDatabaseCluster(
28502
28644
  stack_region: typing.Optional[builtins.str] = None,
28503
28645
  statistic: typing.Optional[builtins.str] = None,
28504
28646
  unit: typing.Optional[_Unit_61bc6f70] = None,
28647
+ visible: typing.Optional[builtins.bool] = None,
28505
28648
  ) -> _Metric_e396a4dc:
28506
28649
  '''The amount of network throughput sent to clients by each instance, in bytes per second.
28507
28650
 
@@ -28510,6 +28653,7 @@ class IDatabaseCluster(
28510
28653
  :param account: Account which this metric comes from. Default: - Deployment account.
28511
28654
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
28512
28655
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
28656
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
28513
28657
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
28514
28658
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
28515
28659
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -28517,6 +28661,7 @@ class IDatabaseCluster(
28517
28661
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
28518
28662
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
28519
28663
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
28664
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
28520
28665
  '''
28521
28666
  ...
28522
28667
 
@@ -28527,6 +28672,7 @@ class IDatabaseCluster(
28527
28672
  account: typing.Optional[builtins.str] = None,
28528
28673
  color: typing.Optional[builtins.str] = None,
28529
28674
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
28675
+ id: typing.Optional[builtins.str] = None,
28530
28676
  label: typing.Optional[builtins.str] = None,
28531
28677
  period: typing.Optional[_Duration_4839e8c3] = None,
28532
28678
  region: typing.Optional[builtins.str] = None,
@@ -28534,6 +28680,7 @@ class IDatabaseCluster(
28534
28680
  stack_region: typing.Optional[builtins.str] = None,
28535
28681
  statistic: typing.Optional[builtins.str] = None,
28536
28682
  unit: typing.Optional[_Unit_61bc6f70] = None,
28683
+ visible: typing.Optional[builtins.bool] = None,
28537
28684
  ) -> _Metric_e396a4dc:
28538
28685
  '''The total amount of backup storage in bytes consumed by all Aurora snapshots outside its backup retention window.
28539
28686
 
@@ -28542,6 +28689,7 @@ class IDatabaseCluster(
28542
28689
  :param account: Account which this metric comes from. Default: - Deployment account.
28543
28690
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
28544
28691
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
28692
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
28545
28693
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
28546
28694
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
28547
28695
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -28549,6 +28697,7 @@ class IDatabaseCluster(
28549
28697
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
28550
28698
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
28551
28699
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
28700
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
28552
28701
  '''
28553
28702
  ...
28554
28703
 
@@ -28559,6 +28708,7 @@ class IDatabaseCluster(
28559
28708
  account: typing.Optional[builtins.str] = None,
28560
28709
  color: typing.Optional[builtins.str] = None,
28561
28710
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
28711
+ id: typing.Optional[builtins.str] = None,
28562
28712
  label: typing.Optional[builtins.str] = None,
28563
28713
  period: typing.Optional[_Duration_4839e8c3] = None,
28564
28714
  region: typing.Optional[builtins.str] = None,
@@ -28566,6 +28716,7 @@ class IDatabaseCluster(
28566
28716
  stack_region: typing.Optional[builtins.str] = None,
28567
28717
  statistic: typing.Optional[builtins.str] = None,
28568
28718
  unit: typing.Optional[_Unit_61bc6f70] = None,
28719
+ visible: typing.Optional[builtins.bool] = None,
28569
28720
  ) -> _Metric_e396a4dc:
28570
28721
  '''The total amount of backup storage in bytes for which you are billed.
28571
28722
 
@@ -28574,6 +28725,7 @@ class IDatabaseCluster(
28574
28725
  :param account: Account which this metric comes from. Default: - Deployment account.
28575
28726
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
28576
28727
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
28728
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
28577
28729
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
28578
28730
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
28579
28731
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -28581,6 +28733,7 @@ class IDatabaseCluster(
28581
28733
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
28582
28734
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
28583
28735
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
28736
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
28584
28737
  '''
28585
28738
  ...
28586
28739
 
@@ -28591,6 +28744,7 @@ class IDatabaseCluster(
28591
28744
  account: typing.Optional[builtins.str] = None,
28592
28745
  color: typing.Optional[builtins.str] = None,
28593
28746
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
28747
+ id: typing.Optional[builtins.str] = None,
28594
28748
  label: typing.Optional[builtins.str] = None,
28595
28749
  period: typing.Optional[_Duration_4839e8c3] = None,
28596
28750
  region: typing.Optional[builtins.str] = None,
@@ -28598,6 +28752,7 @@ class IDatabaseCluster(
28598
28752
  stack_region: typing.Optional[builtins.str] = None,
28599
28753
  statistic: typing.Optional[builtins.str] = None,
28600
28754
  unit: typing.Optional[_Unit_61bc6f70] = None,
28755
+ visible: typing.Optional[builtins.bool] = None,
28601
28756
  ) -> _Metric_e396a4dc:
28602
28757
  '''The amount of storage used by your Aurora DB instance, in bytes.
28603
28758
 
@@ -28606,6 +28761,7 @@ class IDatabaseCluster(
28606
28761
  :param account: Account which this metric comes from. Default: - Deployment account.
28607
28762
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
28608
28763
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
28764
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
28609
28765
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
28610
28766
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
28611
28767
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -28613,6 +28769,7 @@ class IDatabaseCluster(
28613
28769
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
28614
28770
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
28615
28771
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
28772
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
28616
28773
  '''
28617
28774
  ...
28618
28775
 
@@ -28623,6 +28780,7 @@ class IDatabaseCluster(
28623
28780
  account: typing.Optional[builtins.str] = None,
28624
28781
  color: typing.Optional[builtins.str] = None,
28625
28782
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
28783
+ id: typing.Optional[builtins.str] = None,
28626
28784
  label: typing.Optional[builtins.str] = None,
28627
28785
  period: typing.Optional[_Duration_4839e8c3] = None,
28628
28786
  region: typing.Optional[builtins.str] = None,
@@ -28630,6 +28788,7 @@ class IDatabaseCluster(
28630
28788
  stack_region: typing.Optional[builtins.str] = None,
28631
28789
  statistic: typing.Optional[builtins.str] = None,
28632
28790
  unit: typing.Optional[_Unit_61bc6f70] = None,
28791
+ visible: typing.Optional[builtins.bool] = None,
28633
28792
  ) -> _Metric_e396a4dc:
28634
28793
  '''The number of billed read I/O operations from a cluster volume, reported at 5-minute intervals.
28635
28794
 
@@ -28638,6 +28797,7 @@ class IDatabaseCluster(
28638
28797
  :param account: Account which this metric comes from. Default: - Deployment account.
28639
28798
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
28640
28799
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
28800
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
28641
28801
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
28642
28802
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
28643
28803
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -28645,6 +28805,7 @@ class IDatabaseCluster(
28645
28805
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
28646
28806
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
28647
28807
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
28808
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
28648
28809
  '''
28649
28810
  ...
28650
28811
 
@@ -28655,6 +28816,7 @@ class IDatabaseCluster(
28655
28816
  account: typing.Optional[builtins.str] = None,
28656
28817
  color: typing.Optional[builtins.str] = None,
28657
28818
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
28819
+ id: typing.Optional[builtins.str] = None,
28658
28820
  label: typing.Optional[builtins.str] = None,
28659
28821
  period: typing.Optional[_Duration_4839e8c3] = None,
28660
28822
  region: typing.Optional[builtins.str] = None,
@@ -28662,6 +28824,7 @@ class IDatabaseCluster(
28662
28824
  stack_region: typing.Optional[builtins.str] = None,
28663
28825
  statistic: typing.Optional[builtins.str] = None,
28664
28826
  unit: typing.Optional[_Unit_61bc6f70] = None,
28827
+ visible: typing.Optional[builtins.bool] = None,
28665
28828
  ) -> _Metric_e396a4dc:
28666
28829
  '''The number of write disk I/O operations to the cluster volume, reported at 5-minute intervals.
28667
28830
 
@@ -28670,6 +28833,7 @@ class IDatabaseCluster(
28670
28833
  :param account: Account which this metric comes from. Default: - Deployment account.
28671
28834
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
28672
28835
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
28836
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
28673
28837
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
28674
28838
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
28675
28839
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -28677,6 +28841,7 @@ class IDatabaseCluster(
28677
28841
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
28678
28842
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
28679
28843
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
28844
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
28680
28845
  '''
28681
28846
  ...
28682
28847
 
@@ -28852,6 +29017,7 @@ class _IDatabaseClusterProxy(
28852
29017
  account: typing.Optional[builtins.str] = None,
28853
29018
  color: typing.Optional[builtins.str] = None,
28854
29019
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
29020
+ id: typing.Optional[builtins.str] = None,
28855
29021
  label: typing.Optional[builtins.str] = None,
28856
29022
  period: typing.Optional[_Duration_4839e8c3] = None,
28857
29023
  region: typing.Optional[builtins.str] = None,
@@ -28859,6 +29025,7 @@ class _IDatabaseClusterProxy(
28859
29025
  stack_region: typing.Optional[builtins.str] = None,
28860
29026
  statistic: typing.Optional[builtins.str] = None,
28861
29027
  unit: typing.Optional[_Unit_61bc6f70] = None,
29028
+ visible: typing.Optional[builtins.bool] = None,
28862
29029
  ) -> _Metric_e396a4dc:
28863
29030
  '''Return the given named metric for this DBCluster.
28864
29031
 
@@ -28866,6 +29033,7 @@ class _IDatabaseClusterProxy(
28866
29033
  :param account: Account which this metric comes from. Default: - Deployment account.
28867
29034
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
28868
29035
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
29036
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
28869
29037
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
28870
29038
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
28871
29039
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -28873,6 +29041,7 @@ class _IDatabaseClusterProxy(
28873
29041
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
28874
29042
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
28875
29043
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
29044
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
28876
29045
  '''
28877
29046
  if __debug__:
28878
29047
  type_hints = typing.get_type_hints(_typecheckingstub__cb438e41c5d27e4b968b536ac8e59048e5a810f9216c9316ab7091ead553a3cd)
@@ -28881,6 +29050,7 @@ class _IDatabaseClusterProxy(
28881
29050
  account=account,
28882
29051
  color=color,
28883
29052
  dimensions_map=dimensions_map,
29053
+ id=id,
28884
29054
  label=label,
28885
29055
  period=period,
28886
29056
  region=region,
@@ -28888,6 +29058,7 @@ class _IDatabaseClusterProxy(
28888
29058
  stack_region=stack_region,
28889
29059
  statistic=statistic,
28890
29060
  unit=unit,
29061
+ visible=visible,
28891
29062
  )
28892
29063
 
28893
29064
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metric", [metric_name, props]))
@@ -28899,6 +29070,7 @@ class _IDatabaseClusterProxy(
28899
29070
  account: typing.Optional[builtins.str] = None,
28900
29071
  color: typing.Optional[builtins.str] = None,
28901
29072
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
29073
+ id: typing.Optional[builtins.str] = None,
28902
29074
  label: typing.Optional[builtins.str] = None,
28903
29075
  period: typing.Optional[_Duration_4839e8c3] = None,
28904
29076
  region: typing.Optional[builtins.str] = None,
@@ -28906,6 +29078,7 @@ class _IDatabaseClusterProxy(
28906
29078
  stack_region: typing.Optional[builtins.str] = None,
28907
29079
  statistic: typing.Optional[builtins.str] = None,
28908
29080
  unit: typing.Optional[_Unit_61bc6f70] = None,
29081
+ visible: typing.Optional[builtins.bool] = None,
28909
29082
  ) -> _Metric_e396a4dc:
28910
29083
  '''The percentage of CPU utilization.
28911
29084
 
@@ -28914,6 +29087,7 @@ class _IDatabaseClusterProxy(
28914
29087
  :param account: Account which this metric comes from. Default: - Deployment account.
28915
29088
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
28916
29089
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
29090
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
28917
29091
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
28918
29092
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
28919
29093
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -28921,11 +29095,13 @@ class _IDatabaseClusterProxy(
28921
29095
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
28922
29096
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
28923
29097
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
29098
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
28924
29099
  '''
28925
29100
  props = _MetricOptions_1788b62f(
28926
29101
  account=account,
28927
29102
  color=color,
28928
29103
  dimensions_map=dimensions_map,
29104
+ id=id,
28929
29105
  label=label,
28930
29106
  period=period,
28931
29107
  region=region,
@@ -28933,6 +29109,7 @@ class _IDatabaseClusterProxy(
28933
29109
  stack_region=stack_region,
28934
29110
  statistic=statistic,
28935
29111
  unit=unit,
29112
+ visible=visible,
28936
29113
  )
28937
29114
 
28938
29115
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricCPUUtilization", [props]))
@@ -28944,6 +29121,7 @@ class _IDatabaseClusterProxy(
28944
29121
  account: typing.Optional[builtins.str] = None,
28945
29122
  color: typing.Optional[builtins.str] = None,
28946
29123
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
29124
+ id: typing.Optional[builtins.str] = None,
28947
29125
  label: typing.Optional[builtins.str] = None,
28948
29126
  period: typing.Optional[_Duration_4839e8c3] = None,
28949
29127
  region: typing.Optional[builtins.str] = None,
@@ -28951,6 +29129,7 @@ class _IDatabaseClusterProxy(
28951
29129
  stack_region: typing.Optional[builtins.str] = None,
28952
29130
  statistic: typing.Optional[builtins.str] = None,
28953
29131
  unit: typing.Optional[_Unit_61bc6f70] = None,
29132
+ visible: typing.Optional[builtins.bool] = None,
28954
29133
  ) -> _Metric_e396a4dc:
28955
29134
  '''The number of database connections in use.
28956
29135
 
@@ -28959,6 +29138,7 @@ class _IDatabaseClusterProxy(
28959
29138
  :param account: Account which this metric comes from. Default: - Deployment account.
28960
29139
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
28961
29140
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
29141
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
28962
29142
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
28963
29143
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
28964
29144
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -28966,11 +29146,13 @@ class _IDatabaseClusterProxy(
28966
29146
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
28967
29147
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
28968
29148
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
29149
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
28969
29150
  '''
28970
29151
  props = _MetricOptions_1788b62f(
28971
29152
  account=account,
28972
29153
  color=color,
28973
29154
  dimensions_map=dimensions_map,
29155
+ id=id,
28974
29156
  label=label,
28975
29157
  period=period,
28976
29158
  region=region,
@@ -28978,6 +29160,7 @@ class _IDatabaseClusterProxy(
28978
29160
  stack_region=stack_region,
28979
29161
  statistic=statistic,
28980
29162
  unit=unit,
29163
+ visible=visible,
28981
29164
  )
28982
29165
 
28983
29166
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricDatabaseConnections", [props]))
@@ -28989,6 +29172,7 @@ class _IDatabaseClusterProxy(
28989
29172
  account: typing.Optional[builtins.str] = None,
28990
29173
  color: typing.Optional[builtins.str] = None,
28991
29174
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
29175
+ id: typing.Optional[builtins.str] = None,
28992
29176
  label: typing.Optional[builtins.str] = None,
28993
29177
  period: typing.Optional[_Duration_4839e8c3] = None,
28994
29178
  region: typing.Optional[builtins.str] = None,
@@ -28996,6 +29180,7 @@ class _IDatabaseClusterProxy(
28996
29180
  stack_region: typing.Optional[builtins.str] = None,
28997
29181
  statistic: typing.Optional[builtins.str] = None,
28998
29182
  unit: typing.Optional[_Unit_61bc6f70] = None,
29183
+ visible: typing.Optional[builtins.bool] = None,
28999
29184
  ) -> _Metric_e396a4dc:
29000
29185
  '''The average number of deadlocks in the database per second.
29001
29186
 
@@ -29004,6 +29189,7 @@ class _IDatabaseClusterProxy(
29004
29189
  :param account: Account which this metric comes from. Default: - Deployment account.
29005
29190
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
29006
29191
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
29192
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
29007
29193
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
29008
29194
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
29009
29195
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -29011,11 +29197,13 @@ class _IDatabaseClusterProxy(
29011
29197
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
29012
29198
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
29013
29199
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
29200
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
29014
29201
  '''
29015
29202
  props = _MetricOptions_1788b62f(
29016
29203
  account=account,
29017
29204
  color=color,
29018
29205
  dimensions_map=dimensions_map,
29206
+ id=id,
29019
29207
  label=label,
29020
29208
  period=period,
29021
29209
  region=region,
@@ -29023,6 +29211,7 @@ class _IDatabaseClusterProxy(
29023
29211
  stack_region=stack_region,
29024
29212
  statistic=statistic,
29025
29213
  unit=unit,
29214
+ visible=visible,
29026
29215
  )
29027
29216
 
29028
29217
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricDeadlocks", [props]))
@@ -29034,6 +29223,7 @@ class _IDatabaseClusterProxy(
29034
29223
  account: typing.Optional[builtins.str] = None,
29035
29224
  color: typing.Optional[builtins.str] = None,
29036
29225
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
29226
+ id: typing.Optional[builtins.str] = None,
29037
29227
  label: typing.Optional[builtins.str] = None,
29038
29228
  period: typing.Optional[_Duration_4839e8c3] = None,
29039
29229
  region: typing.Optional[builtins.str] = None,
@@ -29041,6 +29231,7 @@ class _IDatabaseClusterProxy(
29041
29231
  stack_region: typing.Optional[builtins.str] = None,
29042
29232
  statistic: typing.Optional[builtins.str] = None,
29043
29233
  unit: typing.Optional[_Unit_61bc6f70] = None,
29234
+ visible: typing.Optional[builtins.bool] = None,
29044
29235
  ) -> _Metric_e396a4dc:
29045
29236
  '''The amount of time that the instance has been running, in seconds.
29046
29237
 
@@ -29049,6 +29240,7 @@ class _IDatabaseClusterProxy(
29049
29240
  :param account: Account which this metric comes from. Default: - Deployment account.
29050
29241
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
29051
29242
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
29243
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
29052
29244
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
29053
29245
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
29054
29246
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -29056,11 +29248,13 @@ class _IDatabaseClusterProxy(
29056
29248
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
29057
29249
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
29058
29250
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
29251
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
29059
29252
  '''
29060
29253
  props = _MetricOptions_1788b62f(
29061
29254
  account=account,
29062
29255
  color=color,
29063
29256
  dimensions_map=dimensions_map,
29257
+ id=id,
29064
29258
  label=label,
29065
29259
  period=period,
29066
29260
  region=region,
@@ -29068,6 +29262,7 @@ class _IDatabaseClusterProxy(
29068
29262
  stack_region=stack_region,
29069
29263
  statistic=statistic,
29070
29264
  unit=unit,
29265
+ visible=visible,
29071
29266
  )
29072
29267
 
29073
29268
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricEngineUptime", [props]))
@@ -29079,6 +29274,7 @@ class _IDatabaseClusterProxy(
29079
29274
  account: typing.Optional[builtins.str] = None,
29080
29275
  color: typing.Optional[builtins.str] = None,
29081
29276
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
29277
+ id: typing.Optional[builtins.str] = None,
29082
29278
  label: typing.Optional[builtins.str] = None,
29083
29279
  period: typing.Optional[_Duration_4839e8c3] = None,
29084
29280
  region: typing.Optional[builtins.str] = None,
@@ -29086,6 +29282,7 @@ class _IDatabaseClusterProxy(
29086
29282
  stack_region: typing.Optional[builtins.str] = None,
29087
29283
  statistic: typing.Optional[builtins.str] = None,
29088
29284
  unit: typing.Optional[_Unit_61bc6f70] = None,
29285
+ visible: typing.Optional[builtins.bool] = None,
29089
29286
  ) -> _Metric_e396a4dc:
29090
29287
  '''The amount of available random access memory, in bytes.
29091
29288
 
@@ -29094,6 +29291,7 @@ class _IDatabaseClusterProxy(
29094
29291
  :param account: Account which this metric comes from. Default: - Deployment account.
29095
29292
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
29096
29293
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
29294
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
29097
29295
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
29098
29296
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
29099
29297
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -29101,11 +29299,13 @@ class _IDatabaseClusterProxy(
29101
29299
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
29102
29300
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
29103
29301
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
29302
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
29104
29303
  '''
29105
29304
  props = _MetricOptions_1788b62f(
29106
29305
  account=account,
29107
29306
  color=color,
29108
29307
  dimensions_map=dimensions_map,
29308
+ id=id,
29109
29309
  label=label,
29110
29310
  period=period,
29111
29311
  region=region,
@@ -29113,6 +29313,7 @@ class _IDatabaseClusterProxy(
29113
29313
  stack_region=stack_region,
29114
29314
  statistic=statistic,
29115
29315
  unit=unit,
29316
+ visible=visible,
29116
29317
  )
29117
29318
 
29118
29319
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricFreeableMemory", [props]))
@@ -29124,6 +29325,7 @@ class _IDatabaseClusterProxy(
29124
29325
  account: typing.Optional[builtins.str] = None,
29125
29326
  color: typing.Optional[builtins.str] = None,
29126
29327
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
29328
+ id: typing.Optional[builtins.str] = None,
29127
29329
  label: typing.Optional[builtins.str] = None,
29128
29330
  period: typing.Optional[_Duration_4839e8c3] = None,
29129
29331
  region: typing.Optional[builtins.str] = None,
@@ -29131,6 +29333,7 @@ class _IDatabaseClusterProxy(
29131
29333
  stack_region: typing.Optional[builtins.str] = None,
29132
29334
  statistic: typing.Optional[builtins.str] = None,
29133
29335
  unit: typing.Optional[_Unit_61bc6f70] = None,
29336
+ visible: typing.Optional[builtins.bool] = None,
29134
29337
  ) -> _Metric_e396a4dc:
29135
29338
  '''The amount of local storage available, in bytes.
29136
29339
 
@@ -29139,6 +29342,7 @@ class _IDatabaseClusterProxy(
29139
29342
  :param account: Account which this metric comes from. Default: - Deployment account.
29140
29343
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
29141
29344
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
29345
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
29142
29346
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
29143
29347
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
29144
29348
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -29146,11 +29350,13 @@ class _IDatabaseClusterProxy(
29146
29350
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
29147
29351
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
29148
29352
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
29353
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
29149
29354
  '''
29150
29355
  props = _MetricOptions_1788b62f(
29151
29356
  account=account,
29152
29357
  color=color,
29153
29358
  dimensions_map=dimensions_map,
29359
+ id=id,
29154
29360
  label=label,
29155
29361
  period=period,
29156
29362
  region=region,
@@ -29158,6 +29364,7 @@ class _IDatabaseClusterProxy(
29158
29364
  stack_region=stack_region,
29159
29365
  statistic=statistic,
29160
29366
  unit=unit,
29367
+ visible=visible,
29161
29368
  )
29162
29369
 
29163
29370
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricFreeLocalStorage", [props]))
@@ -29169,6 +29376,7 @@ class _IDatabaseClusterProxy(
29169
29376
  account: typing.Optional[builtins.str] = None,
29170
29377
  color: typing.Optional[builtins.str] = None,
29171
29378
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
29379
+ id: typing.Optional[builtins.str] = None,
29172
29380
  label: typing.Optional[builtins.str] = None,
29173
29381
  period: typing.Optional[_Duration_4839e8c3] = None,
29174
29382
  region: typing.Optional[builtins.str] = None,
@@ -29176,6 +29384,7 @@ class _IDatabaseClusterProxy(
29176
29384
  stack_region: typing.Optional[builtins.str] = None,
29177
29385
  statistic: typing.Optional[builtins.str] = None,
29178
29386
  unit: typing.Optional[_Unit_61bc6f70] = None,
29387
+ visible: typing.Optional[builtins.bool] = None,
29179
29388
  ) -> _Metric_e396a4dc:
29180
29389
  '''The amount of network throughput received from clients by each instance, in bytes per second.
29181
29390
 
@@ -29184,6 +29393,7 @@ class _IDatabaseClusterProxy(
29184
29393
  :param account: Account which this metric comes from. Default: - Deployment account.
29185
29394
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
29186
29395
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
29396
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
29187
29397
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
29188
29398
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
29189
29399
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -29191,11 +29401,13 @@ class _IDatabaseClusterProxy(
29191
29401
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
29192
29402
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
29193
29403
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
29404
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
29194
29405
  '''
29195
29406
  props = _MetricOptions_1788b62f(
29196
29407
  account=account,
29197
29408
  color=color,
29198
29409
  dimensions_map=dimensions_map,
29410
+ id=id,
29199
29411
  label=label,
29200
29412
  period=period,
29201
29413
  region=region,
@@ -29203,6 +29415,7 @@ class _IDatabaseClusterProxy(
29203
29415
  stack_region=stack_region,
29204
29416
  statistic=statistic,
29205
29417
  unit=unit,
29418
+ visible=visible,
29206
29419
  )
29207
29420
 
29208
29421
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricNetworkReceiveThroughput", [props]))
@@ -29214,6 +29427,7 @@ class _IDatabaseClusterProxy(
29214
29427
  account: typing.Optional[builtins.str] = None,
29215
29428
  color: typing.Optional[builtins.str] = None,
29216
29429
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
29430
+ id: typing.Optional[builtins.str] = None,
29217
29431
  label: typing.Optional[builtins.str] = None,
29218
29432
  period: typing.Optional[_Duration_4839e8c3] = None,
29219
29433
  region: typing.Optional[builtins.str] = None,
@@ -29221,6 +29435,7 @@ class _IDatabaseClusterProxy(
29221
29435
  stack_region: typing.Optional[builtins.str] = None,
29222
29436
  statistic: typing.Optional[builtins.str] = None,
29223
29437
  unit: typing.Optional[_Unit_61bc6f70] = None,
29438
+ visible: typing.Optional[builtins.bool] = None,
29224
29439
  ) -> _Metric_e396a4dc:
29225
29440
  '''The amount of network throughput both received from and transmitted to clients by each instance, in bytes per second.
29226
29441
 
@@ -29229,6 +29444,7 @@ class _IDatabaseClusterProxy(
29229
29444
  :param account: Account which this metric comes from. Default: - Deployment account.
29230
29445
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
29231
29446
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
29447
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
29232
29448
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
29233
29449
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
29234
29450
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -29236,11 +29452,13 @@ class _IDatabaseClusterProxy(
29236
29452
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
29237
29453
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
29238
29454
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
29455
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
29239
29456
  '''
29240
29457
  props = _MetricOptions_1788b62f(
29241
29458
  account=account,
29242
29459
  color=color,
29243
29460
  dimensions_map=dimensions_map,
29461
+ id=id,
29244
29462
  label=label,
29245
29463
  period=period,
29246
29464
  region=region,
@@ -29248,6 +29466,7 @@ class _IDatabaseClusterProxy(
29248
29466
  stack_region=stack_region,
29249
29467
  statistic=statistic,
29250
29468
  unit=unit,
29469
+ visible=visible,
29251
29470
  )
29252
29471
 
29253
29472
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricNetworkThroughput", [props]))
@@ -29259,6 +29478,7 @@ class _IDatabaseClusterProxy(
29259
29478
  account: typing.Optional[builtins.str] = None,
29260
29479
  color: typing.Optional[builtins.str] = None,
29261
29480
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
29481
+ id: typing.Optional[builtins.str] = None,
29262
29482
  label: typing.Optional[builtins.str] = None,
29263
29483
  period: typing.Optional[_Duration_4839e8c3] = None,
29264
29484
  region: typing.Optional[builtins.str] = None,
@@ -29266,6 +29486,7 @@ class _IDatabaseClusterProxy(
29266
29486
  stack_region: typing.Optional[builtins.str] = None,
29267
29487
  statistic: typing.Optional[builtins.str] = None,
29268
29488
  unit: typing.Optional[_Unit_61bc6f70] = None,
29489
+ visible: typing.Optional[builtins.bool] = None,
29269
29490
  ) -> _Metric_e396a4dc:
29270
29491
  '''The amount of network throughput sent to clients by each instance, in bytes per second.
29271
29492
 
@@ -29274,6 +29495,7 @@ class _IDatabaseClusterProxy(
29274
29495
  :param account: Account which this metric comes from. Default: - Deployment account.
29275
29496
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
29276
29497
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
29498
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
29277
29499
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
29278
29500
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
29279
29501
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -29281,11 +29503,13 @@ class _IDatabaseClusterProxy(
29281
29503
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
29282
29504
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
29283
29505
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
29506
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
29284
29507
  '''
29285
29508
  props = _MetricOptions_1788b62f(
29286
29509
  account=account,
29287
29510
  color=color,
29288
29511
  dimensions_map=dimensions_map,
29512
+ id=id,
29289
29513
  label=label,
29290
29514
  period=period,
29291
29515
  region=region,
@@ -29293,6 +29517,7 @@ class _IDatabaseClusterProxy(
29293
29517
  stack_region=stack_region,
29294
29518
  statistic=statistic,
29295
29519
  unit=unit,
29520
+ visible=visible,
29296
29521
  )
29297
29522
 
29298
29523
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricNetworkTransmitThroughput", [props]))
@@ -29304,6 +29529,7 @@ class _IDatabaseClusterProxy(
29304
29529
  account: typing.Optional[builtins.str] = None,
29305
29530
  color: typing.Optional[builtins.str] = None,
29306
29531
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
29532
+ id: typing.Optional[builtins.str] = None,
29307
29533
  label: typing.Optional[builtins.str] = None,
29308
29534
  period: typing.Optional[_Duration_4839e8c3] = None,
29309
29535
  region: typing.Optional[builtins.str] = None,
@@ -29311,6 +29537,7 @@ class _IDatabaseClusterProxy(
29311
29537
  stack_region: typing.Optional[builtins.str] = None,
29312
29538
  statistic: typing.Optional[builtins.str] = None,
29313
29539
  unit: typing.Optional[_Unit_61bc6f70] = None,
29540
+ visible: typing.Optional[builtins.bool] = None,
29314
29541
  ) -> _Metric_e396a4dc:
29315
29542
  '''The total amount of backup storage in bytes consumed by all Aurora snapshots outside its backup retention window.
29316
29543
 
@@ -29319,6 +29546,7 @@ class _IDatabaseClusterProxy(
29319
29546
  :param account: Account which this metric comes from. Default: - Deployment account.
29320
29547
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
29321
29548
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
29549
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
29322
29550
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
29323
29551
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
29324
29552
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -29326,11 +29554,13 @@ class _IDatabaseClusterProxy(
29326
29554
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
29327
29555
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
29328
29556
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
29557
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
29329
29558
  '''
29330
29559
  props = _MetricOptions_1788b62f(
29331
29560
  account=account,
29332
29561
  color=color,
29333
29562
  dimensions_map=dimensions_map,
29563
+ id=id,
29334
29564
  label=label,
29335
29565
  period=period,
29336
29566
  region=region,
@@ -29338,6 +29568,7 @@ class _IDatabaseClusterProxy(
29338
29568
  stack_region=stack_region,
29339
29569
  statistic=statistic,
29340
29570
  unit=unit,
29571
+ visible=visible,
29341
29572
  )
29342
29573
 
29343
29574
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricSnapshotStorageUsed", [props]))
@@ -29349,6 +29580,7 @@ class _IDatabaseClusterProxy(
29349
29580
  account: typing.Optional[builtins.str] = None,
29350
29581
  color: typing.Optional[builtins.str] = None,
29351
29582
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
29583
+ id: typing.Optional[builtins.str] = None,
29352
29584
  label: typing.Optional[builtins.str] = None,
29353
29585
  period: typing.Optional[_Duration_4839e8c3] = None,
29354
29586
  region: typing.Optional[builtins.str] = None,
@@ -29356,6 +29588,7 @@ class _IDatabaseClusterProxy(
29356
29588
  stack_region: typing.Optional[builtins.str] = None,
29357
29589
  statistic: typing.Optional[builtins.str] = None,
29358
29590
  unit: typing.Optional[_Unit_61bc6f70] = None,
29591
+ visible: typing.Optional[builtins.bool] = None,
29359
29592
  ) -> _Metric_e396a4dc:
29360
29593
  '''The total amount of backup storage in bytes for which you are billed.
29361
29594
 
@@ -29364,6 +29597,7 @@ class _IDatabaseClusterProxy(
29364
29597
  :param account: Account which this metric comes from. Default: - Deployment account.
29365
29598
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
29366
29599
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
29600
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
29367
29601
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
29368
29602
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
29369
29603
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -29371,11 +29605,13 @@ class _IDatabaseClusterProxy(
29371
29605
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
29372
29606
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
29373
29607
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
29608
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
29374
29609
  '''
29375
29610
  props = _MetricOptions_1788b62f(
29376
29611
  account=account,
29377
29612
  color=color,
29378
29613
  dimensions_map=dimensions_map,
29614
+ id=id,
29379
29615
  label=label,
29380
29616
  period=period,
29381
29617
  region=region,
@@ -29383,6 +29619,7 @@ class _IDatabaseClusterProxy(
29383
29619
  stack_region=stack_region,
29384
29620
  statistic=statistic,
29385
29621
  unit=unit,
29622
+ visible=visible,
29386
29623
  )
29387
29624
 
29388
29625
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricTotalBackupStorageBilled", [props]))
@@ -29394,6 +29631,7 @@ class _IDatabaseClusterProxy(
29394
29631
  account: typing.Optional[builtins.str] = None,
29395
29632
  color: typing.Optional[builtins.str] = None,
29396
29633
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
29634
+ id: typing.Optional[builtins.str] = None,
29397
29635
  label: typing.Optional[builtins.str] = None,
29398
29636
  period: typing.Optional[_Duration_4839e8c3] = None,
29399
29637
  region: typing.Optional[builtins.str] = None,
@@ -29401,6 +29639,7 @@ class _IDatabaseClusterProxy(
29401
29639
  stack_region: typing.Optional[builtins.str] = None,
29402
29640
  statistic: typing.Optional[builtins.str] = None,
29403
29641
  unit: typing.Optional[_Unit_61bc6f70] = None,
29642
+ visible: typing.Optional[builtins.bool] = None,
29404
29643
  ) -> _Metric_e396a4dc:
29405
29644
  '''The amount of storage used by your Aurora DB instance, in bytes.
29406
29645
 
@@ -29409,6 +29648,7 @@ class _IDatabaseClusterProxy(
29409
29648
  :param account: Account which this metric comes from. Default: - Deployment account.
29410
29649
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
29411
29650
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
29651
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
29412
29652
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
29413
29653
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
29414
29654
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -29416,11 +29656,13 @@ class _IDatabaseClusterProxy(
29416
29656
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
29417
29657
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
29418
29658
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
29659
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
29419
29660
  '''
29420
29661
  props = _MetricOptions_1788b62f(
29421
29662
  account=account,
29422
29663
  color=color,
29423
29664
  dimensions_map=dimensions_map,
29665
+ id=id,
29424
29666
  label=label,
29425
29667
  period=period,
29426
29668
  region=region,
@@ -29428,6 +29670,7 @@ class _IDatabaseClusterProxy(
29428
29670
  stack_region=stack_region,
29429
29671
  statistic=statistic,
29430
29672
  unit=unit,
29673
+ visible=visible,
29431
29674
  )
29432
29675
 
29433
29676
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricVolumeBytesUsed", [props]))
@@ -29439,6 +29682,7 @@ class _IDatabaseClusterProxy(
29439
29682
  account: typing.Optional[builtins.str] = None,
29440
29683
  color: typing.Optional[builtins.str] = None,
29441
29684
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
29685
+ id: typing.Optional[builtins.str] = None,
29442
29686
  label: typing.Optional[builtins.str] = None,
29443
29687
  period: typing.Optional[_Duration_4839e8c3] = None,
29444
29688
  region: typing.Optional[builtins.str] = None,
@@ -29446,6 +29690,7 @@ class _IDatabaseClusterProxy(
29446
29690
  stack_region: typing.Optional[builtins.str] = None,
29447
29691
  statistic: typing.Optional[builtins.str] = None,
29448
29692
  unit: typing.Optional[_Unit_61bc6f70] = None,
29693
+ visible: typing.Optional[builtins.bool] = None,
29449
29694
  ) -> _Metric_e396a4dc:
29450
29695
  '''The number of billed read I/O operations from a cluster volume, reported at 5-minute intervals.
29451
29696
 
@@ -29454,6 +29699,7 @@ class _IDatabaseClusterProxy(
29454
29699
  :param account: Account which this metric comes from. Default: - Deployment account.
29455
29700
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
29456
29701
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
29702
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
29457
29703
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
29458
29704
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
29459
29705
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -29461,11 +29707,13 @@ class _IDatabaseClusterProxy(
29461
29707
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
29462
29708
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
29463
29709
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
29710
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
29464
29711
  '''
29465
29712
  props = _MetricOptions_1788b62f(
29466
29713
  account=account,
29467
29714
  color=color,
29468
29715
  dimensions_map=dimensions_map,
29716
+ id=id,
29469
29717
  label=label,
29470
29718
  period=period,
29471
29719
  region=region,
@@ -29473,6 +29721,7 @@ class _IDatabaseClusterProxy(
29473
29721
  stack_region=stack_region,
29474
29722
  statistic=statistic,
29475
29723
  unit=unit,
29724
+ visible=visible,
29476
29725
  )
29477
29726
 
29478
29727
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricVolumeReadIOPs", [props]))
@@ -29484,6 +29733,7 @@ class _IDatabaseClusterProxy(
29484
29733
  account: typing.Optional[builtins.str] = None,
29485
29734
  color: typing.Optional[builtins.str] = None,
29486
29735
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
29736
+ id: typing.Optional[builtins.str] = None,
29487
29737
  label: typing.Optional[builtins.str] = None,
29488
29738
  period: typing.Optional[_Duration_4839e8c3] = None,
29489
29739
  region: typing.Optional[builtins.str] = None,
@@ -29491,6 +29741,7 @@ class _IDatabaseClusterProxy(
29491
29741
  stack_region: typing.Optional[builtins.str] = None,
29492
29742
  statistic: typing.Optional[builtins.str] = None,
29493
29743
  unit: typing.Optional[_Unit_61bc6f70] = None,
29744
+ visible: typing.Optional[builtins.bool] = None,
29494
29745
  ) -> _Metric_e396a4dc:
29495
29746
  '''The number of write disk I/O operations to the cluster volume, reported at 5-minute intervals.
29496
29747
 
@@ -29499,6 +29750,7 @@ class _IDatabaseClusterProxy(
29499
29750
  :param account: Account which this metric comes from. Default: - Deployment account.
29500
29751
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
29501
29752
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
29753
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
29502
29754
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
29503
29755
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
29504
29756
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -29506,11 +29758,13 @@ class _IDatabaseClusterProxy(
29506
29758
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
29507
29759
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
29508
29760
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
29761
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
29509
29762
  '''
29510
29763
  props = _MetricOptions_1788b62f(
29511
29764
  account=account,
29512
29765
  color=color,
29513
29766
  dimensions_map=dimensions_map,
29767
+ id=id,
29514
29768
  label=label,
29515
29769
  period=period,
29516
29770
  region=region,
@@ -29518,6 +29772,7 @@ class _IDatabaseClusterProxy(
29518
29772
  stack_region=stack_region,
29519
29773
  statistic=statistic,
29520
29774
  unit=unit,
29775
+ visible=visible,
29521
29776
  )
29522
29777
 
29523
29778
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricVolumeWriteIOPs", [props]))
@@ -29657,6 +29912,7 @@ class IDatabaseInstance(
29657
29912
  account: typing.Optional[builtins.str] = None,
29658
29913
  color: typing.Optional[builtins.str] = None,
29659
29914
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
29915
+ id: typing.Optional[builtins.str] = None,
29660
29916
  label: typing.Optional[builtins.str] = None,
29661
29917
  period: typing.Optional[_Duration_4839e8c3] = None,
29662
29918
  region: typing.Optional[builtins.str] = None,
@@ -29664,6 +29920,7 @@ class IDatabaseInstance(
29664
29920
  stack_region: typing.Optional[builtins.str] = None,
29665
29921
  statistic: typing.Optional[builtins.str] = None,
29666
29922
  unit: typing.Optional[_Unit_61bc6f70] = None,
29923
+ visible: typing.Optional[builtins.bool] = None,
29667
29924
  ) -> _Metric_e396a4dc:
29668
29925
  '''Return the given named metric for this DBInstance.
29669
29926
 
@@ -29671,6 +29928,7 @@ class IDatabaseInstance(
29671
29928
  :param account: Account which this metric comes from. Default: - Deployment account.
29672
29929
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
29673
29930
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
29931
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
29674
29932
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
29675
29933
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
29676
29934
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -29678,6 +29936,7 @@ class IDatabaseInstance(
29678
29936
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
29679
29937
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
29680
29938
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
29939
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
29681
29940
  '''
29682
29941
  ...
29683
29942
 
@@ -29688,6 +29947,7 @@ class IDatabaseInstance(
29688
29947
  account: typing.Optional[builtins.str] = None,
29689
29948
  color: typing.Optional[builtins.str] = None,
29690
29949
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
29950
+ id: typing.Optional[builtins.str] = None,
29691
29951
  label: typing.Optional[builtins.str] = None,
29692
29952
  period: typing.Optional[_Duration_4839e8c3] = None,
29693
29953
  region: typing.Optional[builtins.str] = None,
@@ -29695,6 +29955,7 @@ class IDatabaseInstance(
29695
29955
  stack_region: typing.Optional[builtins.str] = None,
29696
29956
  statistic: typing.Optional[builtins.str] = None,
29697
29957
  unit: typing.Optional[_Unit_61bc6f70] = None,
29958
+ visible: typing.Optional[builtins.bool] = None,
29698
29959
  ) -> _Metric_e396a4dc:
29699
29960
  '''The percentage of CPU utilization.
29700
29961
 
@@ -29703,6 +29964,7 @@ class IDatabaseInstance(
29703
29964
  :param account: Account which this metric comes from. Default: - Deployment account.
29704
29965
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
29705
29966
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
29967
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
29706
29968
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
29707
29969
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
29708
29970
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -29710,6 +29972,7 @@ class IDatabaseInstance(
29710
29972
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
29711
29973
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
29712
29974
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
29975
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
29713
29976
  '''
29714
29977
  ...
29715
29978
 
@@ -29720,6 +29983,7 @@ class IDatabaseInstance(
29720
29983
  account: typing.Optional[builtins.str] = None,
29721
29984
  color: typing.Optional[builtins.str] = None,
29722
29985
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
29986
+ id: typing.Optional[builtins.str] = None,
29723
29987
  label: typing.Optional[builtins.str] = None,
29724
29988
  period: typing.Optional[_Duration_4839e8c3] = None,
29725
29989
  region: typing.Optional[builtins.str] = None,
@@ -29727,6 +29991,7 @@ class IDatabaseInstance(
29727
29991
  stack_region: typing.Optional[builtins.str] = None,
29728
29992
  statistic: typing.Optional[builtins.str] = None,
29729
29993
  unit: typing.Optional[_Unit_61bc6f70] = None,
29994
+ visible: typing.Optional[builtins.bool] = None,
29730
29995
  ) -> _Metric_e396a4dc:
29731
29996
  '''The number of database connections in use.
29732
29997
 
@@ -29735,6 +30000,7 @@ class IDatabaseInstance(
29735
30000
  :param account: Account which this metric comes from. Default: - Deployment account.
29736
30001
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
29737
30002
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
30003
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
29738
30004
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
29739
30005
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
29740
30006
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -29742,6 +30008,7 @@ class IDatabaseInstance(
29742
30008
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
29743
30009
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
29744
30010
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
30011
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
29745
30012
  '''
29746
30013
  ...
29747
30014
 
@@ -29752,6 +30019,7 @@ class IDatabaseInstance(
29752
30019
  account: typing.Optional[builtins.str] = None,
29753
30020
  color: typing.Optional[builtins.str] = None,
29754
30021
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
30022
+ id: typing.Optional[builtins.str] = None,
29755
30023
  label: typing.Optional[builtins.str] = None,
29756
30024
  period: typing.Optional[_Duration_4839e8c3] = None,
29757
30025
  region: typing.Optional[builtins.str] = None,
@@ -29759,6 +30027,7 @@ class IDatabaseInstance(
29759
30027
  stack_region: typing.Optional[builtins.str] = None,
29760
30028
  statistic: typing.Optional[builtins.str] = None,
29761
30029
  unit: typing.Optional[_Unit_61bc6f70] = None,
30030
+ visible: typing.Optional[builtins.bool] = None,
29762
30031
  ) -> _Metric_e396a4dc:
29763
30032
  '''The amount of available random access memory.
29764
30033
 
@@ -29767,6 +30036,7 @@ class IDatabaseInstance(
29767
30036
  :param account: Account which this metric comes from. Default: - Deployment account.
29768
30037
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
29769
30038
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
30039
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
29770
30040
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
29771
30041
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
29772
30042
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -29774,6 +30044,7 @@ class IDatabaseInstance(
29774
30044
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
29775
30045
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
29776
30046
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
30047
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
29777
30048
  '''
29778
30049
  ...
29779
30050
 
@@ -29784,6 +30055,7 @@ class IDatabaseInstance(
29784
30055
  account: typing.Optional[builtins.str] = None,
29785
30056
  color: typing.Optional[builtins.str] = None,
29786
30057
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
30058
+ id: typing.Optional[builtins.str] = None,
29787
30059
  label: typing.Optional[builtins.str] = None,
29788
30060
  period: typing.Optional[_Duration_4839e8c3] = None,
29789
30061
  region: typing.Optional[builtins.str] = None,
@@ -29791,6 +30063,7 @@ class IDatabaseInstance(
29791
30063
  stack_region: typing.Optional[builtins.str] = None,
29792
30064
  statistic: typing.Optional[builtins.str] = None,
29793
30065
  unit: typing.Optional[_Unit_61bc6f70] = None,
30066
+ visible: typing.Optional[builtins.bool] = None,
29794
30067
  ) -> _Metric_e396a4dc:
29795
30068
  '''The amount of available storage space.
29796
30069
 
@@ -29799,6 +30072,7 @@ class IDatabaseInstance(
29799
30072
  :param account: Account which this metric comes from. Default: - Deployment account.
29800
30073
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
29801
30074
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
30075
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
29802
30076
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
29803
30077
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
29804
30078
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -29806,6 +30080,7 @@ class IDatabaseInstance(
29806
30080
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
29807
30081
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
29808
30082
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
30083
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
29809
30084
  '''
29810
30085
  ...
29811
30086
 
@@ -29816,6 +30091,7 @@ class IDatabaseInstance(
29816
30091
  account: typing.Optional[builtins.str] = None,
29817
30092
  color: typing.Optional[builtins.str] = None,
29818
30093
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
30094
+ id: typing.Optional[builtins.str] = None,
29819
30095
  label: typing.Optional[builtins.str] = None,
29820
30096
  period: typing.Optional[_Duration_4839e8c3] = None,
29821
30097
  region: typing.Optional[builtins.str] = None,
@@ -29823,6 +30099,7 @@ class IDatabaseInstance(
29823
30099
  stack_region: typing.Optional[builtins.str] = None,
29824
30100
  statistic: typing.Optional[builtins.str] = None,
29825
30101
  unit: typing.Optional[_Unit_61bc6f70] = None,
30102
+ visible: typing.Optional[builtins.bool] = None,
29826
30103
  ) -> _Metric_e396a4dc:
29827
30104
  '''The average number of disk write I/O operations per second.
29828
30105
 
@@ -29831,6 +30108,7 @@ class IDatabaseInstance(
29831
30108
  :param account: Account which this metric comes from. Default: - Deployment account.
29832
30109
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
29833
30110
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
30111
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
29834
30112
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
29835
30113
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
29836
30114
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -29838,6 +30116,7 @@ class IDatabaseInstance(
29838
30116
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
29839
30117
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
29840
30118
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
30119
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
29841
30120
  '''
29842
30121
  ...
29843
30122
 
@@ -29848,6 +30127,7 @@ class IDatabaseInstance(
29848
30127
  account: typing.Optional[builtins.str] = None,
29849
30128
  color: typing.Optional[builtins.str] = None,
29850
30129
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
30130
+ id: typing.Optional[builtins.str] = None,
29851
30131
  label: typing.Optional[builtins.str] = None,
29852
30132
  period: typing.Optional[_Duration_4839e8c3] = None,
29853
30133
  region: typing.Optional[builtins.str] = None,
@@ -29855,6 +30135,7 @@ class IDatabaseInstance(
29855
30135
  stack_region: typing.Optional[builtins.str] = None,
29856
30136
  statistic: typing.Optional[builtins.str] = None,
29857
30137
  unit: typing.Optional[_Unit_61bc6f70] = None,
30138
+ visible: typing.Optional[builtins.bool] = None,
29858
30139
  ) -> _Metric_e396a4dc:
29859
30140
  '''The average number of disk read I/O operations per second.
29860
30141
 
@@ -29863,6 +30144,7 @@ class IDatabaseInstance(
29863
30144
  :param account: Account which this metric comes from. Default: - Deployment account.
29864
30145
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
29865
30146
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
30147
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
29866
30148
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
29867
30149
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
29868
30150
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -29870,6 +30152,7 @@ class IDatabaseInstance(
29870
30152
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
29871
30153
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
29872
30154
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
30155
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
29873
30156
  '''
29874
30157
  ...
29875
30158
 
@@ -30056,6 +30339,7 @@ class _IDatabaseInstanceProxy(
30056
30339
  account: typing.Optional[builtins.str] = None,
30057
30340
  color: typing.Optional[builtins.str] = None,
30058
30341
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
30342
+ id: typing.Optional[builtins.str] = None,
30059
30343
  label: typing.Optional[builtins.str] = None,
30060
30344
  period: typing.Optional[_Duration_4839e8c3] = None,
30061
30345
  region: typing.Optional[builtins.str] = None,
@@ -30063,6 +30347,7 @@ class _IDatabaseInstanceProxy(
30063
30347
  stack_region: typing.Optional[builtins.str] = None,
30064
30348
  statistic: typing.Optional[builtins.str] = None,
30065
30349
  unit: typing.Optional[_Unit_61bc6f70] = None,
30350
+ visible: typing.Optional[builtins.bool] = None,
30066
30351
  ) -> _Metric_e396a4dc:
30067
30352
  '''Return the given named metric for this DBInstance.
30068
30353
 
@@ -30070,6 +30355,7 @@ class _IDatabaseInstanceProxy(
30070
30355
  :param account: Account which this metric comes from. Default: - Deployment account.
30071
30356
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
30072
30357
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
30358
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
30073
30359
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
30074
30360
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
30075
30361
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -30077,6 +30363,7 @@ class _IDatabaseInstanceProxy(
30077
30363
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
30078
30364
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
30079
30365
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
30366
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
30080
30367
  '''
30081
30368
  if __debug__:
30082
30369
  type_hints = typing.get_type_hints(_typecheckingstub__7a74ddedb30a6a3825b0f7fa6abc3a5aa48e031b507410402659ee350e197fef)
@@ -30085,6 +30372,7 @@ class _IDatabaseInstanceProxy(
30085
30372
  account=account,
30086
30373
  color=color,
30087
30374
  dimensions_map=dimensions_map,
30375
+ id=id,
30088
30376
  label=label,
30089
30377
  period=period,
30090
30378
  region=region,
@@ -30092,6 +30380,7 @@ class _IDatabaseInstanceProxy(
30092
30380
  stack_region=stack_region,
30093
30381
  statistic=statistic,
30094
30382
  unit=unit,
30383
+ visible=visible,
30095
30384
  )
30096
30385
 
30097
30386
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metric", [metric_name, props]))
@@ -30103,6 +30392,7 @@ class _IDatabaseInstanceProxy(
30103
30392
  account: typing.Optional[builtins.str] = None,
30104
30393
  color: typing.Optional[builtins.str] = None,
30105
30394
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
30395
+ id: typing.Optional[builtins.str] = None,
30106
30396
  label: typing.Optional[builtins.str] = None,
30107
30397
  period: typing.Optional[_Duration_4839e8c3] = None,
30108
30398
  region: typing.Optional[builtins.str] = None,
@@ -30110,6 +30400,7 @@ class _IDatabaseInstanceProxy(
30110
30400
  stack_region: typing.Optional[builtins.str] = None,
30111
30401
  statistic: typing.Optional[builtins.str] = None,
30112
30402
  unit: typing.Optional[_Unit_61bc6f70] = None,
30403
+ visible: typing.Optional[builtins.bool] = None,
30113
30404
  ) -> _Metric_e396a4dc:
30114
30405
  '''The percentage of CPU utilization.
30115
30406
 
@@ -30118,6 +30409,7 @@ class _IDatabaseInstanceProxy(
30118
30409
  :param account: Account which this metric comes from. Default: - Deployment account.
30119
30410
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
30120
30411
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
30412
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
30121
30413
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
30122
30414
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
30123
30415
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -30125,11 +30417,13 @@ class _IDatabaseInstanceProxy(
30125
30417
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
30126
30418
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
30127
30419
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
30420
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
30128
30421
  '''
30129
30422
  props = _MetricOptions_1788b62f(
30130
30423
  account=account,
30131
30424
  color=color,
30132
30425
  dimensions_map=dimensions_map,
30426
+ id=id,
30133
30427
  label=label,
30134
30428
  period=period,
30135
30429
  region=region,
@@ -30137,6 +30431,7 @@ class _IDatabaseInstanceProxy(
30137
30431
  stack_region=stack_region,
30138
30432
  statistic=statistic,
30139
30433
  unit=unit,
30434
+ visible=visible,
30140
30435
  )
30141
30436
 
30142
30437
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricCPUUtilization", [props]))
@@ -30148,6 +30443,7 @@ class _IDatabaseInstanceProxy(
30148
30443
  account: typing.Optional[builtins.str] = None,
30149
30444
  color: typing.Optional[builtins.str] = None,
30150
30445
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
30446
+ id: typing.Optional[builtins.str] = None,
30151
30447
  label: typing.Optional[builtins.str] = None,
30152
30448
  period: typing.Optional[_Duration_4839e8c3] = None,
30153
30449
  region: typing.Optional[builtins.str] = None,
@@ -30155,6 +30451,7 @@ class _IDatabaseInstanceProxy(
30155
30451
  stack_region: typing.Optional[builtins.str] = None,
30156
30452
  statistic: typing.Optional[builtins.str] = None,
30157
30453
  unit: typing.Optional[_Unit_61bc6f70] = None,
30454
+ visible: typing.Optional[builtins.bool] = None,
30158
30455
  ) -> _Metric_e396a4dc:
30159
30456
  '''The number of database connections in use.
30160
30457
 
@@ -30163,6 +30460,7 @@ class _IDatabaseInstanceProxy(
30163
30460
  :param account: Account which this metric comes from. Default: - Deployment account.
30164
30461
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
30165
30462
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
30463
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
30166
30464
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
30167
30465
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
30168
30466
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -30170,11 +30468,13 @@ class _IDatabaseInstanceProxy(
30170
30468
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
30171
30469
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
30172
30470
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
30471
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
30173
30472
  '''
30174
30473
  props = _MetricOptions_1788b62f(
30175
30474
  account=account,
30176
30475
  color=color,
30177
30476
  dimensions_map=dimensions_map,
30477
+ id=id,
30178
30478
  label=label,
30179
30479
  period=period,
30180
30480
  region=region,
@@ -30182,6 +30482,7 @@ class _IDatabaseInstanceProxy(
30182
30482
  stack_region=stack_region,
30183
30483
  statistic=statistic,
30184
30484
  unit=unit,
30485
+ visible=visible,
30185
30486
  )
30186
30487
 
30187
30488
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricDatabaseConnections", [props]))
@@ -30193,6 +30494,7 @@ class _IDatabaseInstanceProxy(
30193
30494
  account: typing.Optional[builtins.str] = None,
30194
30495
  color: typing.Optional[builtins.str] = None,
30195
30496
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
30497
+ id: typing.Optional[builtins.str] = None,
30196
30498
  label: typing.Optional[builtins.str] = None,
30197
30499
  period: typing.Optional[_Duration_4839e8c3] = None,
30198
30500
  region: typing.Optional[builtins.str] = None,
@@ -30200,6 +30502,7 @@ class _IDatabaseInstanceProxy(
30200
30502
  stack_region: typing.Optional[builtins.str] = None,
30201
30503
  statistic: typing.Optional[builtins.str] = None,
30202
30504
  unit: typing.Optional[_Unit_61bc6f70] = None,
30505
+ visible: typing.Optional[builtins.bool] = None,
30203
30506
  ) -> _Metric_e396a4dc:
30204
30507
  '''The amount of available random access memory.
30205
30508
 
@@ -30208,6 +30511,7 @@ class _IDatabaseInstanceProxy(
30208
30511
  :param account: Account which this metric comes from. Default: - Deployment account.
30209
30512
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
30210
30513
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
30514
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
30211
30515
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
30212
30516
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
30213
30517
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -30215,11 +30519,13 @@ class _IDatabaseInstanceProxy(
30215
30519
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
30216
30520
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
30217
30521
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
30522
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
30218
30523
  '''
30219
30524
  props = _MetricOptions_1788b62f(
30220
30525
  account=account,
30221
30526
  color=color,
30222
30527
  dimensions_map=dimensions_map,
30528
+ id=id,
30223
30529
  label=label,
30224
30530
  period=period,
30225
30531
  region=region,
@@ -30227,6 +30533,7 @@ class _IDatabaseInstanceProxy(
30227
30533
  stack_region=stack_region,
30228
30534
  statistic=statistic,
30229
30535
  unit=unit,
30536
+ visible=visible,
30230
30537
  )
30231
30538
 
30232
30539
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricFreeableMemory", [props]))
@@ -30238,6 +30545,7 @@ class _IDatabaseInstanceProxy(
30238
30545
  account: typing.Optional[builtins.str] = None,
30239
30546
  color: typing.Optional[builtins.str] = None,
30240
30547
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
30548
+ id: typing.Optional[builtins.str] = None,
30241
30549
  label: typing.Optional[builtins.str] = None,
30242
30550
  period: typing.Optional[_Duration_4839e8c3] = None,
30243
30551
  region: typing.Optional[builtins.str] = None,
@@ -30245,6 +30553,7 @@ class _IDatabaseInstanceProxy(
30245
30553
  stack_region: typing.Optional[builtins.str] = None,
30246
30554
  statistic: typing.Optional[builtins.str] = None,
30247
30555
  unit: typing.Optional[_Unit_61bc6f70] = None,
30556
+ visible: typing.Optional[builtins.bool] = None,
30248
30557
  ) -> _Metric_e396a4dc:
30249
30558
  '''The amount of available storage space.
30250
30559
 
@@ -30253,6 +30562,7 @@ class _IDatabaseInstanceProxy(
30253
30562
  :param account: Account which this metric comes from. Default: - Deployment account.
30254
30563
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
30255
30564
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
30565
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
30256
30566
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
30257
30567
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
30258
30568
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -30260,11 +30570,13 @@ class _IDatabaseInstanceProxy(
30260
30570
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
30261
30571
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
30262
30572
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
30573
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
30263
30574
  '''
30264
30575
  props = _MetricOptions_1788b62f(
30265
30576
  account=account,
30266
30577
  color=color,
30267
30578
  dimensions_map=dimensions_map,
30579
+ id=id,
30268
30580
  label=label,
30269
30581
  period=period,
30270
30582
  region=region,
@@ -30272,6 +30584,7 @@ class _IDatabaseInstanceProxy(
30272
30584
  stack_region=stack_region,
30273
30585
  statistic=statistic,
30274
30586
  unit=unit,
30587
+ visible=visible,
30275
30588
  )
30276
30589
 
30277
30590
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricFreeStorageSpace", [props]))
@@ -30283,6 +30596,7 @@ class _IDatabaseInstanceProxy(
30283
30596
  account: typing.Optional[builtins.str] = None,
30284
30597
  color: typing.Optional[builtins.str] = None,
30285
30598
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
30599
+ id: typing.Optional[builtins.str] = None,
30286
30600
  label: typing.Optional[builtins.str] = None,
30287
30601
  period: typing.Optional[_Duration_4839e8c3] = None,
30288
30602
  region: typing.Optional[builtins.str] = None,
@@ -30290,6 +30604,7 @@ class _IDatabaseInstanceProxy(
30290
30604
  stack_region: typing.Optional[builtins.str] = None,
30291
30605
  statistic: typing.Optional[builtins.str] = None,
30292
30606
  unit: typing.Optional[_Unit_61bc6f70] = None,
30607
+ visible: typing.Optional[builtins.bool] = None,
30293
30608
  ) -> _Metric_e396a4dc:
30294
30609
  '''The average number of disk write I/O operations per second.
30295
30610
 
@@ -30298,6 +30613,7 @@ class _IDatabaseInstanceProxy(
30298
30613
  :param account: Account which this metric comes from. Default: - Deployment account.
30299
30614
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
30300
30615
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
30616
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
30301
30617
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
30302
30618
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
30303
30619
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -30305,11 +30621,13 @@ class _IDatabaseInstanceProxy(
30305
30621
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
30306
30622
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
30307
30623
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
30624
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
30308
30625
  '''
30309
30626
  props = _MetricOptions_1788b62f(
30310
30627
  account=account,
30311
30628
  color=color,
30312
30629
  dimensions_map=dimensions_map,
30630
+ id=id,
30313
30631
  label=label,
30314
30632
  period=period,
30315
30633
  region=region,
@@ -30317,6 +30635,7 @@ class _IDatabaseInstanceProxy(
30317
30635
  stack_region=stack_region,
30318
30636
  statistic=statistic,
30319
30637
  unit=unit,
30638
+ visible=visible,
30320
30639
  )
30321
30640
 
30322
30641
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricReadIOPS", [props]))
@@ -30328,6 +30647,7 @@ class _IDatabaseInstanceProxy(
30328
30647
  account: typing.Optional[builtins.str] = None,
30329
30648
  color: typing.Optional[builtins.str] = None,
30330
30649
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
30650
+ id: typing.Optional[builtins.str] = None,
30331
30651
  label: typing.Optional[builtins.str] = None,
30332
30652
  period: typing.Optional[_Duration_4839e8c3] = None,
30333
30653
  region: typing.Optional[builtins.str] = None,
@@ -30335,6 +30655,7 @@ class _IDatabaseInstanceProxy(
30335
30655
  stack_region: typing.Optional[builtins.str] = None,
30336
30656
  statistic: typing.Optional[builtins.str] = None,
30337
30657
  unit: typing.Optional[_Unit_61bc6f70] = None,
30658
+ visible: typing.Optional[builtins.bool] = None,
30338
30659
  ) -> _Metric_e396a4dc:
30339
30660
  '''The average number of disk read I/O operations per second.
30340
30661
 
@@ -30343,6 +30664,7 @@ class _IDatabaseInstanceProxy(
30343
30664
  :param account: Account which this metric comes from. Default: - Deployment account.
30344
30665
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
30345
30666
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
30667
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
30346
30668
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
30347
30669
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
30348
30670
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -30350,11 +30672,13 @@ class _IDatabaseInstanceProxy(
30350
30672
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
30351
30673
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
30352
30674
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
30675
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
30353
30676
  '''
30354
30677
  props = _MetricOptions_1788b62f(
30355
30678
  account=account,
30356
30679
  color=color,
30357
30680
  dimensions_map=dimensions_map,
30681
+ id=id,
30358
30682
  label=label,
30359
30683
  period=period,
30360
30684
  region=region,
@@ -30362,6 +30686,7 @@ class _IDatabaseInstanceProxy(
30362
30686
  stack_region=stack_region,
30363
30687
  statistic=statistic,
30364
30688
  unit=unit,
30689
+ visible=visible,
30365
30690
  )
30366
30691
 
30367
30692
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricWriteIOPS", [props]))
@@ -41986,6 +42311,7 @@ class DatabaseClusterBase(
41986
42311
  account: typing.Optional[builtins.str] = None,
41987
42312
  color: typing.Optional[builtins.str] = None,
41988
42313
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
42314
+ id: typing.Optional[builtins.str] = None,
41989
42315
  label: typing.Optional[builtins.str] = None,
41990
42316
  period: typing.Optional[_Duration_4839e8c3] = None,
41991
42317
  region: typing.Optional[builtins.str] = None,
@@ -41993,6 +42319,7 @@ class DatabaseClusterBase(
41993
42319
  stack_region: typing.Optional[builtins.str] = None,
41994
42320
  statistic: typing.Optional[builtins.str] = None,
41995
42321
  unit: typing.Optional[_Unit_61bc6f70] = None,
42322
+ visible: typing.Optional[builtins.bool] = None,
41996
42323
  ) -> _Metric_e396a4dc:
41997
42324
  '''Return the given named metric for this DBCluster.
41998
42325
 
@@ -42000,6 +42327,7 @@ class DatabaseClusterBase(
42000
42327
  :param account: Account which this metric comes from. Default: - Deployment account.
42001
42328
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
42002
42329
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
42330
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
42003
42331
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
42004
42332
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
42005
42333
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -42007,6 +42335,7 @@ class DatabaseClusterBase(
42007
42335
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
42008
42336
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
42009
42337
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
42338
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
42010
42339
  '''
42011
42340
  if __debug__:
42012
42341
  type_hints = typing.get_type_hints(_typecheckingstub__4f4ce592b81574a1f6a9ee4b6ab1c756352bb31fa97575b7cf7708b9d4100962)
@@ -42015,6 +42344,7 @@ class DatabaseClusterBase(
42015
42344
  account=account,
42016
42345
  color=color,
42017
42346
  dimensions_map=dimensions_map,
42347
+ id=id,
42018
42348
  label=label,
42019
42349
  period=period,
42020
42350
  region=region,
@@ -42022,6 +42352,7 @@ class DatabaseClusterBase(
42022
42352
  stack_region=stack_region,
42023
42353
  statistic=statistic,
42024
42354
  unit=unit,
42355
+ visible=visible,
42025
42356
  )
42026
42357
 
42027
42358
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metric", [metric_name, props]))
@@ -42033,6 +42364,7 @@ class DatabaseClusterBase(
42033
42364
  account: typing.Optional[builtins.str] = None,
42034
42365
  color: typing.Optional[builtins.str] = None,
42035
42366
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
42367
+ id: typing.Optional[builtins.str] = None,
42036
42368
  label: typing.Optional[builtins.str] = None,
42037
42369
  period: typing.Optional[_Duration_4839e8c3] = None,
42038
42370
  region: typing.Optional[builtins.str] = None,
@@ -42040,6 +42372,7 @@ class DatabaseClusterBase(
42040
42372
  stack_region: typing.Optional[builtins.str] = None,
42041
42373
  statistic: typing.Optional[builtins.str] = None,
42042
42374
  unit: typing.Optional[_Unit_61bc6f70] = None,
42375
+ visible: typing.Optional[builtins.bool] = None,
42043
42376
  ) -> _Metric_e396a4dc:
42044
42377
  '''The percentage of CPU utilization.
42045
42378
 
@@ -42048,6 +42381,7 @@ class DatabaseClusterBase(
42048
42381
  :param account: Account which this metric comes from. Default: - Deployment account.
42049
42382
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
42050
42383
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
42384
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
42051
42385
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
42052
42386
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
42053
42387
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -42055,11 +42389,13 @@ class DatabaseClusterBase(
42055
42389
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
42056
42390
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
42057
42391
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
42392
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
42058
42393
  '''
42059
42394
  props = _MetricOptions_1788b62f(
42060
42395
  account=account,
42061
42396
  color=color,
42062
42397
  dimensions_map=dimensions_map,
42398
+ id=id,
42063
42399
  label=label,
42064
42400
  period=period,
42065
42401
  region=region,
@@ -42067,6 +42403,7 @@ class DatabaseClusterBase(
42067
42403
  stack_region=stack_region,
42068
42404
  statistic=statistic,
42069
42405
  unit=unit,
42406
+ visible=visible,
42070
42407
  )
42071
42408
 
42072
42409
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricCPUUtilization", [props]))
@@ -42078,6 +42415,7 @@ class DatabaseClusterBase(
42078
42415
  account: typing.Optional[builtins.str] = None,
42079
42416
  color: typing.Optional[builtins.str] = None,
42080
42417
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
42418
+ id: typing.Optional[builtins.str] = None,
42081
42419
  label: typing.Optional[builtins.str] = None,
42082
42420
  period: typing.Optional[_Duration_4839e8c3] = None,
42083
42421
  region: typing.Optional[builtins.str] = None,
@@ -42085,6 +42423,7 @@ class DatabaseClusterBase(
42085
42423
  stack_region: typing.Optional[builtins.str] = None,
42086
42424
  statistic: typing.Optional[builtins.str] = None,
42087
42425
  unit: typing.Optional[_Unit_61bc6f70] = None,
42426
+ visible: typing.Optional[builtins.bool] = None,
42088
42427
  ) -> _Metric_e396a4dc:
42089
42428
  '''The number of database connections in use.
42090
42429
 
@@ -42093,6 +42432,7 @@ class DatabaseClusterBase(
42093
42432
  :param account: Account which this metric comes from. Default: - Deployment account.
42094
42433
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
42095
42434
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
42435
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
42096
42436
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
42097
42437
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
42098
42438
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -42100,11 +42440,13 @@ class DatabaseClusterBase(
42100
42440
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
42101
42441
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
42102
42442
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
42443
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
42103
42444
  '''
42104
42445
  props = _MetricOptions_1788b62f(
42105
42446
  account=account,
42106
42447
  color=color,
42107
42448
  dimensions_map=dimensions_map,
42449
+ id=id,
42108
42450
  label=label,
42109
42451
  period=period,
42110
42452
  region=region,
@@ -42112,6 +42454,7 @@ class DatabaseClusterBase(
42112
42454
  stack_region=stack_region,
42113
42455
  statistic=statistic,
42114
42456
  unit=unit,
42457
+ visible=visible,
42115
42458
  )
42116
42459
 
42117
42460
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricDatabaseConnections", [props]))
@@ -42123,6 +42466,7 @@ class DatabaseClusterBase(
42123
42466
  account: typing.Optional[builtins.str] = None,
42124
42467
  color: typing.Optional[builtins.str] = None,
42125
42468
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
42469
+ id: typing.Optional[builtins.str] = None,
42126
42470
  label: typing.Optional[builtins.str] = None,
42127
42471
  period: typing.Optional[_Duration_4839e8c3] = None,
42128
42472
  region: typing.Optional[builtins.str] = None,
@@ -42130,6 +42474,7 @@ class DatabaseClusterBase(
42130
42474
  stack_region: typing.Optional[builtins.str] = None,
42131
42475
  statistic: typing.Optional[builtins.str] = None,
42132
42476
  unit: typing.Optional[_Unit_61bc6f70] = None,
42477
+ visible: typing.Optional[builtins.bool] = None,
42133
42478
  ) -> _Metric_e396a4dc:
42134
42479
  '''The average number of deadlocks in the database per second.
42135
42480
 
@@ -42138,6 +42483,7 @@ class DatabaseClusterBase(
42138
42483
  :param account: Account which this metric comes from. Default: - Deployment account.
42139
42484
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
42140
42485
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
42486
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
42141
42487
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
42142
42488
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
42143
42489
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -42145,11 +42491,13 @@ class DatabaseClusterBase(
42145
42491
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
42146
42492
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
42147
42493
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
42494
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
42148
42495
  '''
42149
42496
  props = _MetricOptions_1788b62f(
42150
42497
  account=account,
42151
42498
  color=color,
42152
42499
  dimensions_map=dimensions_map,
42500
+ id=id,
42153
42501
  label=label,
42154
42502
  period=period,
42155
42503
  region=region,
@@ -42157,6 +42505,7 @@ class DatabaseClusterBase(
42157
42505
  stack_region=stack_region,
42158
42506
  statistic=statistic,
42159
42507
  unit=unit,
42508
+ visible=visible,
42160
42509
  )
42161
42510
 
42162
42511
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricDeadlocks", [props]))
@@ -42168,6 +42517,7 @@ class DatabaseClusterBase(
42168
42517
  account: typing.Optional[builtins.str] = None,
42169
42518
  color: typing.Optional[builtins.str] = None,
42170
42519
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
42520
+ id: typing.Optional[builtins.str] = None,
42171
42521
  label: typing.Optional[builtins.str] = None,
42172
42522
  period: typing.Optional[_Duration_4839e8c3] = None,
42173
42523
  region: typing.Optional[builtins.str] = None,
@@ -42175,6 +42525,7 @@ class DatabaseClusterBase(
42175
42525
  stack_region: typing.Optional[builtins.str] = None,
42176
42526
  statistic: typing.Optional[builtins.str] = None,
42177
42527
  unit: typing.Optional[_Unit_61bc6f70] = None,
42528
+ visible: typing.Optional[builtins.bool] = None,
42178
42529
  ) -> _Metric_e396a4dc:
42179
42530
  '''The amount of time that the instance has been running, in seconds.
42180
42531
 
@@ -42183,6 +42534,7 @@ class DatabaseClusterBase(
42183
42534
  :param account: Account which this metric comes from. Default: - Deployment account.
42184
42535
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
42185
42536
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
42537
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
42186
42538
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
42187
42539
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
42188
42540
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -42190,11 +42542,13 @@ class DatabaseClusterBase(
42190
42542
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
42191
42543
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
42192
42544
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
42545
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
42193
42546
  '''
42194
42547
  props = _MetricOptions_1788b62f(
42195
42548
  account=account,
42196
42549
  color=color,
42197
42550
  dimensions_map=dimensions_map,
42551
+ id=id,
42198
42552
  label=label,
42199
42553
  period=period,
42200
42554
  region=region,
@@ -42202,6 +42556,7 @@ class DatabaseClusterBase(
42202
42556
  stack_region=stack_region,
42203
42557
  statistic=statistic,
42204
42558
  unit=unit,
42559
+ visible=visible,
42205
42560
  )
42206
42561
 
42207
42562
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricEngineUptime", [props]))
@@ -42213,6 +42568,7 @@ class DatabaseClusterBase(
42213
42568
  account: typing.Optional[builtins.str] = None,
42214
42569
  color: typing.Optional[builtins.str] = None,
42215
42570
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
42571
+ id: typing.Optional[builtins.str] = None,
42216
42572
  label: typing.Optional[builtins.str] = None,
42217
42573
  period: typing.Optional[_Duration_4839e8c3] = None,
42218
42574
  region: typing.Optional[builtins.str] = None,
@@ -42220,6 +42576,7 @@ class DatabaseClusterBase(
42220
42576
  stack_region: typing.Optional[builtins.str] = None,
42221
42577
  statistic: typing.Optional[builtins.str] = None,
42222
42578
  unit: typing.Optional[_Unit_61bc6f70] = None,
42579
+ visible: typing.Optional[builtins.bool] = None,
42223
42580
  ) -> _Metric_e396a4dc:
42224
42581
  '''The amount of available random access memory, in bytes.
42225
42582
 
@@ -42228,6 +42585,7 @@ class DatabaseClusterBase(
42228
42585
  :param account: Account which this metric comes from. Default: - Deployment account.
42229
42586
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
42230
42587
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
42588
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
42231
42589
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
42232
42590
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
42233
42591
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -42235,11 +42593,13 @@ class DatabaseClusterBase(
42235
42593
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
42236
42594
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
42237
42595
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
42596
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
42238
42597
  '''
42239
42598
  props = _MetricOptions_1788b62f(
42240
42599
  account=account,
42241
42600
  color=color,
42242
42601
  dimensions_map=dimensions_map,
42602
+ id=id,
42243
42603
  label=label,
42244
42604
  period=period,
42245
42605
  region=region,
@@ -42247,6 +42607,7 @@ class DatabaseClusterBase(
42247
42607
  stack_region=stack_region,
42248
42608
  statistic=statistic,
42249
42609
  unit=unit,
42610
+ visible=visible,
42250
42611
  )
42251
42612
 
42252
42613
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricFreeableMemory", [props]))
@@ -42258,6 +42619,7 @@ class DatabaseClusterBase(
42258
42619
  account: typing.Optional[builtins.str] = None,
42259
42620
  color: typing.Optional[builtins.str] = None,
42260
42621
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
42622
+ id: typing.Optional[builtins.str] = None,
42261
42623
  label: typing.Optional[builtins.str] = None,
42262
42624
  period: typing.Optional[_Duration_4839e8c3] = None,
42263
42625
  region: typing.Optional[builtins.str] = None,
@@ -42265,6 +42627,7 @@ class DatabaseClusterBase(
42265
42627
  stack_region: typing.Optional[builtins.str] = None,
42266
42628
  statistic: typing.Optional[builtins.str] = None,
42267
42629
  unit: typing.Optional[_Unit_61bc6f70] = None,
42630
+ visible: typing.Optional[builtins.bool] = None,
42268
42631
  ) -> _Metric_e396a4dc:
42269
42632
  '''The amount of local storage available, in bytes.
42270
42633
 
@@ -42273,6 +42636,7 @@ class DatabaseClusterBase(
42273
42636
  :param account: Account which this metric comes from. Default: - Deployment account.
42274
42637
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
42275
42638
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
42639
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
42276
42640
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
42277
42641
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
42278
42642
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -42280,11 +42644,13 @@ class DatabaseClusterBase(
42280
42644
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
42281
42645
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
42282
42646
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
42647
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
42283
42648
  '''
42284
42649
  props = _MetricOptions_1788b62f(
42285
42650
  account=account,
42286
42651
  color=color,
42287
42652
  dimensions_map=dimensions_map,
42653
+ id=id,
42288
42654
  label=label,
42289
42655
  period=period,
42290
42656
  region=region,
@@ -42292,6 +42658,7 @@ class DatabaseClusterBase(
42292
42658
  stack_region=stack_region,
42293
42659
  statistic=statistic,
42294
42660
  unit=unit,
42661
+ visible=visible,
42295
42662
  )
42296
42663
 
42297
42664
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricFreeLocalStorage", [props]))
@@ -42303,6 +42670,7 @@ class DatabaseClusterBase(
42303
42670
  account: typing.Optional[builtins.str] = None,
42304
42671
  color: typing.Optional[builtins.str] = None,
42305
42672
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
42673
+ id: typing.Optional[builtins.str] = None,
42306
42674
  label: typing.Optional[builtins.str] = None,
42307
42675
  period: typing.Optional[_Duration_4839e8c3] = None,
42308
42676
  region: typing.Optional[builtins.str] = None,
@@ -42310,6 +42678,7 @@ class DatabaseClusterBase(
42310
42678
  stack_region: typing.Optional[builtins.str] = None,
42311
42679
  statistic: typing.Optional[builtins.str] = None,
42312
42680
  unit: typing.Optional[_Unit_61bc6f70] = None,
42681
+ visible: typing.Optional[builtins.bool] = None,
42313
42682
  ) -> _Metric_e396a4dc:
42314
42683
  '''The amount of network throughput received from clients by each instance, in bytes per second.
42315
42684
 
@@ -42318,6 +42687,7 @@ class DatabaseClusterBase(
42318
42687
  :param account: Account which this metric comes from. Default: - Deployment account.
42319
42688
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
42320
42689
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
42690
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
42321
42691
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
42322
42692
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
42323
42693
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -42325,11 +42695,13 @@ class DatabaseClusterBase(
42325
42695
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
42326
42696
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
42327
42697
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
42698
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
42328
42699
  '''
42329
42700
  props = _MetricOptions_1788b62f(
42330
42701
  account=account,
42331
42702
  color=color,
42332
42703
  dimensions_map=dimensions_map,
42704
+ id=id,
42333
42705
  label=label,
42334
42706
  period=period,
42335
42707
  region=region,
@@ -42337,6 +42709,7 @@ class DatabaseClusterBase(
42337
42709
  stack_region=stack_region,
42338
42710
  statistic=statistic,
42339
42711
  unit=unit,
42712
+ visible=visible,
42340
42713
  )
42341
42714
 
42342
42715
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricNetworkReceiveThroughput", [props]))
@@ -42348,6 +42721,7 @@ class DatabaseClusterBase(
42348
42721
  account: typing.Optional[builtins.str] = None,
42349
42722
  color: typing.Optional[builtins.str] = None,
42350
42723
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
42724
+ id: typing.Optional[builtins.str] = None,
42351
42725
  label: typing.Optional[builtins.str] = None,
42352
42726
  period: typing.Optional[_Duration_4839e8c3] = None,
42353
42727
  region: typing.Optional[builtins.str] = None,
@@ -42355,6 +42729,7 @@ class DatabaseClusterBase(
42355
42729
  stack_region: typing.Optional[builtins.str] = None,
42356
42730
  statistic: typing.Optional[builtins.str] = None,
42357
42731
  unit: typing.Optional[_Unit_61bc6f70] = None,
42732
+ visible: typing.Optional[builtins.bool] = None,
42358
42733
  ) -> _Metric_e396a4dc:
42359
42734
  '''The amount of network throughput both received from and transmitted to clients by each instance, in bytes per second.
42360
42735
 
@@ -42363,6 +42738,7 @@ class DatabaseClusterBase(
42363
42738
  :param account: Account which this metric comes from. Default: - Deployment account.
42364
42739
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
42365
42740
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
42741
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
42366
42742
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
42367
42743
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
42368
42744
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -42370,11 +42746,13 @@ class DatabaseClusterBase(
42370
42746
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
42371
42747
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
42372
42748
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
42749
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
42373
42750
  '''
42374
42751
  props = _MetricOptions_1788b62f(
42375
42752
  account=account,
42376
42753
  color=color,
42377
42754
  dimensions_map=dimensions_map,
42755
+ id=id,
42378
42756
  label=label,
42379
42757
  period=period,
42380
42758
  region=region,
@@ -42382,6 +42760,7 @@ class DatabaseClusterBase(
42382
42760
  stack_region=stack_region,
42383
42761
  statistic=statistic,
42384
42762
  unit=unit,
42763
+ visible=visible,
42385
42764
  )
42386
42765
 
42387
42766
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricNetworkThroughput", [props]))
@@ -42393,6 +42772,7 @@ class DatabaseClusterBase(
42393
42772
  account: typing.Optional[builtins.str] = None,
42394
42773
  color: typing.Optional[builtins.str] = None,
42395
42774
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
42775
+ id: typing.Optional[builtins.str] = None,
42396
42776
  label: typing.Optional[builtins.str] = None,
42397
42777
  period: typing.Optional[_Duration_4839e8c3] = None,
42398
42778
  region: typing.Optional[builtins.str] = None,
@@ -42400,6 +42780,7 @@ class DatabaseClusterBase(
42400
42780
  stack_region: typing.Optional[builtins.str] = None,
42401
42781
  statistic: typing.Optional[builtins.str] = None,
42402
42782
  unit: typing.Optional[_Unit_61bc6f70] = None,
42783
+ visible: typing.Optional[builtins.bool] = None,
42403
42784
  ) -> _Metric_e396a4dc:
42404
42785
  '''The amount of network throughput sent to clients by each instance, in bytes per second.
42405
42786
 
@@ -42408,6 +42789,7 @@ class DatabaseClusterBase(
42408
42789
  :param account: Account which this metric comes from. Default: - Deployment account.
42409
42790
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
42410
42791
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
42792
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
42411
42793
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
42412
42794
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
42413
42795
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -42415,11 +42797,13 @@ class DatabaseClusterBase(
42415
42797
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
42416
42798
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
42417
42799
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
42800
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
42418
42801
  '''
42419
42802
  props = _MetricOptions_1788b62f(
42420
42803
  account=account,
42421
42804
  color=color,
42422
42805
  dimensions_map=dimensions_map,
42806
+ id=id,
42423
42807
  label=label,
42424
42808
  period=period,
42425
42809
  region=region,
@@ -42427,6 +42811,7 @@ class DatabaseClusterBase(
42427
42811
  stack_region=stack_region,
42428
42812
  statistic=statistic,
42429
42813
  unit=unit,
42814
+ visible=visible,
42430
42815
  )
42431
42816
 
42432
42817
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricNetworkTransmitThroughput", [props]))
@@ -42438,6 +42823,7 @@ class DatabaseClusterBase(
42438
42823
  account: typing.Optional[builtins.str] = None,
42439
42824
  color: typing.Optional[builtins.str] = None,
42440
42825
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
42826
+ id: typing.Optional[builtins.str] = None,
42441
42827
  label: typing.Optional[builtins.str] = None,
42442
42828
  period: typing.Optional[_Duration_4839e8c3] = None,
42443
42829
  region: typing.Optional[builtins.str] = None,
@@ -42445,6 +42831,7 @@ class DatabaseClusterBase(
42445
42831
  stack_region: typing.Optional[builtins.str] = None,
42446
42832
  statistic: typing.Optional[builtins.str] = None,
42447
42833
  unit: typing.Optional[_Unit_61bc6f70] = None,
42834
+ visible: typing.Optional[builtins.bool] = None,
42448
42835
  ) -> _Metric_e396a4dc:
42449
42836
  '''The total amount of backup storage in bytes consumed by all Aurora snapshots outside its backup retention window.
42450
42837
 
@@ -42453,6 +42840,7 @@ class DatabaseClusterBase(
42453
42840
  :param account: Account which this metric comes from. Default: - Deployment account.
42454
42841
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
42455
42842
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
42843
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
42456
42844
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
42457
42845
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
42458
42846
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -42460,11 +42848,13 @@ class DatabaseClusterBase(
42460
42848
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
42461
42849
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
42462
42850
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
42851
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
42463
42852
  '''
42464
42853
  props = _MetricOptions_1788b62f(
42465
42854
  account=account,
42466
42855
  color=color,
42467
42856
  dimensions_map=dimensions_map,
42857
+ id=id,
42468
42858
  label=label,
42469
42859
  period=period,
42470
42860
  region=region,
@@ -42472,6 +42862,7 @@ class DatabaseClusterBase(
42472
42862
  stack_region=stack_region,
42473
42863
  statistic=statistic,
42474
42864
  unit=unit,
42865
+ visible=visible,
42475
42866
  )
42476
42867
 
42477
42868
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricSnapshotStorageUsed", [props]))
@@ -42483,6 +42874,7 @@ class DatabaseClusterBase(
42483
42874
  account: typing.Optional[builtins.str] = None,
42484
42875
  color: typing.Optional[builtins.str] = None,
42485
42876
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
42877
+ id: typing.Optional[builtins.str] = None,
42486
42878
  label: typing.Optional[builtins.str] = None,
42487
42879
  period: typing.Optional[_Duration_4839e8c3] = None,
42488
42880
  region: typing.Optional[builtins.str] = None,
@@ -42490,6 +42882,7 @@ class DatabaseClusterBase(
42490
42882
  stack_region: typing.Optional[builtins.str] = None,
42491
42883
  statistic: typing.Optional[builtins.str] = None,
42492
42884
  unit: typing.Optional[_Unit_61bc6f70] = None,
42885
+ visible: typing.Optional[builtins.bool] = None,
42493
42886
  ) -> _Metric_e396a4dc:
42494
42887
  '''The total amount of backup storage in bytes for which you are billed.
42495
42888
 
@@ -42498,6 +42891,7 @@ class DatabaseClusterBase(
42498
42891
  :param account: Account which this metric comes from. Default: - Deployment account.
42499
42892
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
42500
42893
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
42894
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
42501
42895
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
42502
42896
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
42503
42897
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -42505,11 +42899,13 @@ class DatabaseClusterBase(
42505
42899
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
42506
42900
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
42507
42901
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
42902
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
42508
42903
  '''
42509
42904
  props = _MetricOptions_1788b62f(
42510
42905
  account=account,
42511
42906
  color=color,
42512
42907
  dimensions_map=dimensions_map,
42908
+ id=id,
42513
42909
  label=label,
42514
42910
  period=period,
42515
42911
  region=region,
@@ -42517,6 +42913,7 @@ class DatabaseClusterBase(
42517
42913
  stack_region=stack_region,
42518
42914
  statistic=statistic,
42519
42915
  unit=unit,
42916
+ visible=visible,
42520
42917
  )
42521
42918
 
42522
42919
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricTotalBackupStorageBilled", [props]))
@@ -42528,6 +42925,7 @@ class DatabaseClusterBase(
42528
42925
  account: typing.Optional[builtins.str] = None,
42529
42926
  color: typing.Optional[builtins.str] = None,
42530
42927
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
42928
+ id: typing.Optional[builtins.str] = None,
42531
42929
  label: typing.Optional[builtins.str] = None,
42532
42930
  period: typing.Optional[_Duration_4839e8c3] = None,
42533
42931
  region: typing.Optional[builtins.str] = None,
@@ -42535,6 +42933,7 @@ class DatabaseClusterBase(
42535
42933
  stack_region: typing.Optional[builtins.str] = None,
42536
42934
  statistic: typing.Optional[builtins.str] = None,
42537
42935
  unit: typing.Optional[_Unit_61bc6f70] = None,
42936
+ visible: typing.Optional[builtins.bool] = None,
42538
42937
  ) -> _Metric_e396a4dc:
42539
42938
  '''The amount of storage used by your Aurora DB instance, in bytes.
42540
42939
 
@@ -42543,6 +42942,7 @@ class DatabaseClusterBase(
42543
42942
  :param account: Account which this metric comes from. Default: - Deployment account.
42544
42943
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
42545
42944
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
42945
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
42546
42946
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
42547
42947
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
42548
42948
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -42550,11 +42950,13 @@ class DatabaseClusterBase(
42550
42950
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
42551
42951
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
42552
42952
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
42953
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
42553
42954
  '''
42554
42955
  props = _MetricOptions_1788b62f(
42555
42956
  account=account,
42556
42957
  color=color,
42557
42958
  dimensions_map=dimensions_map,
42959
+ id=id,
42558
42960
  label=label,
42559
42961
  period=period,
42560
42962
  region=region,
@@ -42562,6 +42964,7 @@ class DatabaseClusterBase(
42562
42964
  stack_region=stack_region,
42563
42965
  statistic=statistic,
42564
42966
  unit=unit,
42967
+ visible=visible,
42565
42968
  )
42566
42969
 
42567
42970
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricVolumeBytesUsed", [props]))
@@ -42573,6 +42976,7 @@ class DatabaseClusterBase(
42573
42976
  account: typing.Optional[builtins.str] = None,
42574
42977
  color: typing.Optional[builtins.str] = None,
42575
42978
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
42979
+ id: typing.Optional[builtins.str] = None,
42576
42980
  label: typing.Optional[builtins.str] = None,
42577
42981
  period: typing.Optional[_Duration_4839e8c3] = None,
42578
42982
  region: typing.Optional[builtins.str] = None,
@@ -42580,6 +42984,7 @@ class DatabaseClusterBase(
42580
42984
  stack_region: typing.Optional[builtins.str] = None,
42581
42985
  statistic: typing.Optional[builtins.str] = None,
42582
42986
  unit: typing.Optional[_Unit_61bc6f70] = None,
42987
+ visible: typing.Optional[builtins.bool] = None,
42583
42988
  ) -> _Metric_e396a4dc:
42584
42989
  '''The number of billed read I/O operations from a cluster volume, reported at 5-minute intervals.
42585
42990
 
@@ -42588,6 +42993,7 @@ class DatabaseClusterBase(
42588
42993
  :param account: Account which this metric comes from. Default: - Deployment account.
42589
42994
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
42590
42995
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
42996
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
42591
42997
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
42592
42998
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
42593
42999
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -42595,11 +43001,13 @@ class DatabaseClusterBase(
42595
43001
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
42596
43002
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
42597
43003
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
43004
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
42598
43005
  '''
42599
43006
  props = _MetricOptions_1788b62f(
42600
43007
  account=account,
42601
43008
  color=color,
42602
43009
  dimensions_map=dimensions_map,
43010
+ id=id,
42603
43011
  label=label,
42604
43012
  period=period,
42605
43013
  region=region,
@@ -42607,6 +43015,7 @@ class DatabaseClusterBase(
42607
43015
  stack_region=stack_region,
42608
43016
  statistic=statistic,
42609
43017
  unit=unit,
43018
+ visible=visible,
42610
43019
  )
42611
43020
 
42612
43021
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricVolumeReadIOPs", [props]))
@@ -42618,6 +43027,7 @@ class DatabaseClusterBase(
42618
43027
  account: typing.Optional[builtins.str] = None,
42619
43028
  color: typing.Optional[builtins.str] = None,
42620
43029
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
43030
+ id: typing.Optional[builtins.str] = None,
42621
43031
  label: typing.Optional[builtins.str] = None,
42622
43032
  period: typing.Optional[_Duration_4839e8c3] = None,
42623
43033
  region: typing.Optional[builtins.str] = None,
@@ -42625,6 +43035,7 @@ class DatabaseClusterBase(
42625
43035
  stack_region: typing.Optional[builtins.str] = None,
42626
43036
  statistic: typing.Optional[builtins.str] = None,
42627
43037
  unit: typing.Optional[_Unit_61bc6f70] = None,
43038
+ visible: typing.Optional[builtins.bool] = None,
42628
43039
  ) -> _Metric_e396a4dc:
42629
43040
  '''The number of write disk I/O operations to the cluster volume, reported at 5-minute intervals.
42630
43041
 
@@ -42633,6 +43044,7 @@ class DatabaseClusterBase(
42633
43044
  :param account: Account which this metric comes from. Default: - Deployment account.
42634
43045
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
42635
43046
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
43047
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
42636
43048
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
42637
43049
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
42638
43050
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -42640,11 +43052,13 @@ class DatabaseClusterBase(
42640
43052
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
42641
43053
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
42642
43054
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
43055
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
42643
43056
  '''
42644
43057
  props = _MetricOptions_1788b62f(
42645
43058
  account=account,
42646
43059
  color=color,
42647
43060
  dimensions_map=dimensions_map,
43061
+ id=id,
42648
43062
  label=label,
42649
43063
  period=period,
42650
43064
  region=region,
@@ -42652,6 +43066,7 @@ class DatabaseClusterBase(
42652
43066
  stack_region=stack_region,
42653
43067
  statistic=statistic,
42654
43068
  unit=unit,
43069
+ visible=visible,
42655
43070
  )
42656
43071
 
42657
43072
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricVolumeWriteIOPs", [props]))
@@ -43110,6 +43525,7 @@ class DatabaseClusterFromSnapshot(
43110
43525
  account: typing.Optional[builtins.str] = None,
43111
43526
  color: typing.Optional[builtins.str] = None,
43112
43527
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
43528
+ id: typing.Optional[builtins.str] = None,
43113
43529
  label: typing.Optional[builtins.str] = None,
43114
43530
  period: typing.Optional[_Duration_4839e8c3] = None,
43115
43531
  region: typing.Optional[builtins.str] = None,
@@ -43117,6 +43533,7 @@ class DatabaseClusterFromSnapshot(
43117
43533
  stack_region: typing.Optional[builtins.str] = None,
43118
43534
  statistic: typing.Optional[builtins.str] = None,
43119
43535
  unit: typing.Optional[_Unit_61bc6f70] = None,
43536
+ visible: typing.Optional[builtins.bool] = None,
43120
43537
  ) -> _Metric_e396a4dc:
43121
43538
  '''This value is represented as a percentage.
43122
43539
 
@@ -43129,6 +43546,7 @@ class DatabaseClusterFromSnapshot(
43129
43546
  :param account: Account which this metric comes from. Default: - Deployment account.
43130
43547
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
43131
43548
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
43549
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
43132
43550
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
43133
43551
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
43134
43552
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -43136,11 +43554,13 @@ class DatabaseClusterFromSnapshot(
43136
43554
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
43137
43555
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
43138
43556
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
43557
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
43139
43558
  '''
43140
43559
  props = _MetricOptions_1788b62f(
43141
43560
  account=account,
43142
43561
  color=color,
43143
43562
  dimensions_map=dimensions_map,
43563
+ id=id,
43144
43564
  label=label,
43145
43565
  period=period,
43146
43566
  region=region,
@@ -43148,6 +43568,7 @@ class DatabaseClusterFromSnapshot(
43148
43568
  stack_region=stack_region,
43149
43569
  statistic=statistic,
43150
43570
  unit=unit,
43571
+ visible=visible,
43151
43572
  )
43152
43573
 
43153
43574
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricACUUtilization", [props]))
@@ -43159,6 +43580,7 @@ class DatabaseClusterFromSnapshot(
43159
43580
  account: typing.Optional[builtins.str] = None,
43160
43581
  color: typing.Optional[builtins.str] = None,
43161
43582
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
43583
+ id: typing.Optional[builtins.str] = None,
43162
43584
  label: typing.Optional[builtins.str] = None,
43163
43585
  period: typing.Optional[_Duration_4839e8c3] = None,
43164
43586
  region: typing.Optional[builtins.str] = None,
@@ -43166,12 +43588,14 @@ class DatabaseClusterFromSnapshot(
43166
43588
  stack_region: typing.Optional[builtins.str] = None,
43167
43589
  statistic: typing.Optional[builtins.str] = None,
43168
43590
  unit: typing.Optional[_Unit_61bc6f70] = None,
43591
+ visible: typing.Optional[builtins.bool] = None,
43169
43592
  ) -> _Metric_e396a4dc:
43170
43593
  '''As a cluster-level metric, it represents the average of the ServerlessDatabaseCapacity values of all the Aurora Serverless v2 DB instances in the cluster.
43171
43594
 
43172
43595
  :param account: Account which this metric comes from. Default: - Deployment account.
43173
43596
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
43174
43597
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
43598
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
43175
43599
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
43176
43600
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
43177
43601
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -43179,11 +43603,13 @@ class DatabaseClusterFromSnapshot(
43179
43603
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
43180
43604
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
43181
43605
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
43606
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
43182
43607
  '''
43183
43608
  props = _MetricOptions_1788b62f(
43184
43609
  account=account,
43185
43610
  color=color,
43186
43611
  dimensions_map=dimensions_map,
43612
+ id=id,
43187
43613
  label=label,
43188
43614
  period=period,
43189
43615
  region=region,
@@ -43191,6 +43617,7 @@ class DatabaseClusterFromSnapshot(
43191
43617
  stack_region=stack_region,
43192
43618
  statistic=statistic,
43193
43619
  unit=unit,
43620
+ visible=visible,
43194
43621
  )
43195
43622
 
43196
43623
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricServerlessDatabaseCapacity", [props]))
@@ -43607,6 +44034,7 @@ class DatabaseInstanceBase(
43607
44034
  account: typing.Optional[builtins.str] = None,
43608
44035
  color: typing.Optional[builtins.str] = None,
43609
44036
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
44037
+ id: typing.Optional[builtins.str] = None,
43610
44038
  label: typing.Optional[builtins.str] = None,
43611
44039
  period: typing.Optional[_Duration_4839e8c3] = None,
43612
44040
  region: typing.Optional[builtins.str] = None,
@@ -43614,6 +44042,7 @@ class DatabaseInstanceBase(
43614
44042
  stack_region: typing.Optional[builtins.str] = None,
43615
44043
  statistic: typing.Optional[builtins.str] = None,
43616
44044
  unit: typing.Optional[_Unit_61bc6f70] = None,
44045
+ visible: typing.Optional[builtins.bool] = None,
43617
44046
  ) -> _Metric_e396a4dc:
43618
44047
  '''Return the given named metric for this DBInstance.
43619
44048
 
@@ -43621,6 +44050,7 @@ class DatabaseInstanceBase(
43621
44050
  :param account: Account which this metric comes from. Default: - Deployment account.
43622
44051
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
43623
44052
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
44053
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
43624
44054
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
43625
44055
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
43626
44056
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -43628,6 +44058,7 @@ class DatabaseInstanceBase(
43628
44058
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
43629
44059
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
43630
44060
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
44061
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
43631
44062
  '''
43632
44063
  if __debug__:
43633
44064
  type_hints = typing.get_type_hints(_typecheckingstub__d3b875972d333f05c29d29ce0f29c0cd026377583d9fad46eb5cc05f031ef7f2)
@@ -43636,6 +44067,7 @@ class DatabaseInstanceBase(
43636
44067
  account=account,
43637
44068
  color=color,
43638
44069
  dimensions_map=dimensions_map,
44070
+ id=id,
43639
44071
  label=label,
43640
44072
  period=period,
43641
44073
  region=region,
@@ -43643,6 +44075,7 @@ class DatabaseInstanceBase(
43643
44075
  stack_region=stack_region,
43644
44076
  statistic=statistic,
43645
44077
  unit=unit,
44078
+ visible=visible,
43646
44079
  )
43647
44080
 
43648
44081
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metric", [metric_name, props]))
@@ -43654,6 +44087,7 @@ class DatabaseInstanceBase(
43654
44087
  account: typing.Optional[builtins.str] = None,
43655
44088
  color: typing.Optional[builtins.str] = None,
43656
44089
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
44090
+ id: typing.Optional[builtins.str] = None,
43657
44091
  label: typing.Optional[builtins.str] = None,
43658
44092
  period: typing.Optional[_Duration_4839e8c3] = None,
43659
44093
  region: typing.Optional[builtins.str] = None,
@@ -43661,6 +44095,7 @@ class DatabaseInstanceBase(
43661
44095
  stack_region: typing.Optional[builtins.str] = None,
43662
44096
  statistic: typing.Optional[builtins.str] = None,
43663
44097
  unit: typing.Optional[_Unit_61bc6f70] = None,
44098
+ visible: typing.Optional[builtins.bool] = None,
43664
44099
  ) -> _Metric_e396a4dc:
43665
44100
  '''The percentage of CPU utilization.
43666
44101
 
@@ -43669,6 +44104,7 @@ class DatabaseInstanceBase(
43669
44104
  :param account: Account which this metric comes from. Default: - Deployment account.
43670
44105
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
43671
44106
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
44107
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
43672
44108
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
43673
44109
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
43674
44110
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -43676,11 +44112,13 @@ class DatabaseInstanceBase(
43676
44112
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
43677
44113
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
43678
44114
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
44115
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
43679
44116
  '''
43680
44117
  props = _MetricOptions_1788b62f(
43681
44118
  account=account,
43682
44119
  color=color,
43683
44120
  dimensions_map=dimensions_map,
44121
+ id=id,
43684
44122
  label=label,
43685
44123
  period=period,
43686
44124
  region=region,
@@ -43688,6 +44126,7 @@ class DatabaseInstanceBase(
43688
44126
  stack_region=stack_region,
43689
44127
  statistic=statistic,
43690
44128
  unit=unit,
44129
+ visible=visible,
43691
44130
  )
43692
44131
 
43693
44132
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricCPUUtilization", [props]))
@@ -43699,6 +44138,7 @@ class DatabaseInstanceBase(
43699
44138
  account: typing.Optional[builtins.str] = None,
43700
44139
  color: typing.Optional[builtins.str] = None,
43701
44140
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
44141
+ id: typing.Optional[builtins.str] = None,
43702
44142
  label: typing.Optional[builtins.str] = None,
43703
44143
  period: typing.Optional[_Duration_4839e8c3] = None,
43704
44144
  region: typing.Optional[builtins.str] = None,
@@ -43706,6 +44146,7 @@ class DatabaseInstanceBase(
43706
44146
  stack_region: typing.Optional[builtins.str] = None,
43707
44147
  statistic: typing.Optional[builtins.str] = None,
43708
44148
  unit: typing.Optional[_Unit_61bc6f70] = None,
44149
+ visible: typing.Optional[builtins.bool] = None,
43709
44150
  ) -> _Metric_e396a4dc:
43710
44151
  '''The number of database connections in use.
43711
44152
 
@@ -43714,6 +44155,7 @@ class DatabaseInstanceBase(
43714
44155
  :param account: Account which this metric comes from. Default: - Deployment account.
43715
44156
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
43716
44157
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
44158
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
43717
44159
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
43718
44160
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
43719
44161
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -43721,11 +44163,13 @@ class DatabaseInstanceBase(
43721
44163
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
43722
44164
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
43723
44165
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
44166
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
43724
44167
  '''
43725
44168
  props = _MetricOptions_1788b62f(
43726
44169
  account=account,
43727
44170
  color=color,
43728
44171
  dimensions_map=dimensions_map,
44172
+ id=id,
43729
44173
  label=label,
43730
44174
  period=period,
43731
44175
  region=region,
@@ -43733,6 +44177,7 @@ class DatabaseInstanceBase(
43733
44177
  stack_region=stack_region,
43734
44178
  statistic=statistic,
43735
44179
  unit=unit,
44180
+ visible=visible,
43736
44181
  )
43737
44182
 
43738
44183
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricDatabaseConnections", [props]))
@@ -43744,6 +44189,7 @@ class DatabaseInstanceBase(
43744
44189
  account: typing.Optional[builtins.str] = None,
43745
44190
  color: typing.Optional[builtins.str] = None,
43746
44191
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
44192
+ id: typing.Optional[builtins.str] = None,
43747
44193
  label: typing.Optional[builtins.str] = None,
43748
44194
  period: typing.Optional[_Duration_4839e8c3] = None,
43749
44195
  region: typing.Optional[builtins.str] = None,
@@ -43751,6 +44197,7 @@ class DatabaseInstanceBase(
43751
44197
  stack_region: typing.Optional[builtins.str] = None,
43752
44198
  statistic: typing.Optional[builtins.str] = None,
43753
44199
  unit: typing.Optional[_Unit_61bc6f70] = None,
44200
+ visible: typing.Optional[builtins.bool] = None,
43754
44201
  ) -> _Metric_e396a4dc:
43755
44202
  '''The amount of available random access memory.
43756
44203
 
@@ -43759,6 +44206,7 @@ class DatabaseInstanceBase(
43759
44206
  :param account: Account which this metric comes from. Default: - Deployment account.
43760
44207
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
43761
44208
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
44209
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
43762
44210
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
43763
44211
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
43764
44212
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -43766,11 +44214,13 @@ class DatabaseInstanceBase(
43766
44214
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
43767
44215
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
43768
44216
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
44217
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
43769
44218
  '''
43770
44219
  props = _MetricOptions_1788b62f(
43771
44220
  account=account,
43772
44221
  color=color,
43773
44222
  dimensions_map=dimensions_map,
44223
+ id=id,
43774
44224
  label=label,
43775
44225
  period=period,
43776
44226
  region=region,
@@ -43778,6 +44228,7 @@ class DatabaseInstanceBase(
43778
44228
  stack_region=stack_region,
43779
44229
  statistic=statistic,
43780
44230
  unit=unit,
44231
+ visible=visible,
43781
44232
  )
43782
44233
 
43783
44234
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricFreeableMemory", [props]))
@@ -43789,6 +44240,7 @@ class DatabaseInstanceBase(
43789
44240
  account: typing.Optional[builtins.str] = None,
43790
44241
  color: typing.Optional[builtins.str] = None,
43791
44242
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
44243
+ id: typing.Optional[builtins.str] = None,
43792
44244
  label: typing.Optional[builtins.str] = None,
43793
44245
  period: typing.Optional[_Duration_4839e8c3] = None,
43794
44246
  region: typing.Optional[builtins.str] = None,
@@ -43796,6 +44248,7 @@ class DatabaseInstanceBase(
43796
44248
  stack_region: typing.Optional[builtins.str] = None,
43797
44249
  statistic: typing.Optional[builtins.str] = None,
43798
44250
  unit: typing.Optional[_Unit_61bc6f70] = None,
44251
+ visible: typing.Optional[builtins.bool] = None,
43799
44252
  ) -> _Metric_e396a4dc:
43800
44253
  '''The amount of available storage space.
43801
44254
 
@@ -43804,6 +44257,7 @@ class DatabaseInstanceBase(
43804
44257
  :param account: Account which this metric comes from. Default: - Deployment account.
43805
44258
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
43806
44259
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
44260
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
43807
44261
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
43808
44262
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
43809
44263
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -43811,11 +44265,13 @@ class DatabaseInstanceBase(
43811
44265
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
43812
44266
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
43813
44267
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
44268
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
43814
44269
  '''
43815
44270
  props = _MetricOptions_1788b62f(
43816
44271
  account=account,
43817
44272
  color=color,
43818
44273
  dimensions_map=dimensions_map,
44274
+ id=id,
43819
44275
  label=label,
43820
44276
  period=period,
43821
44277
  region=region,
@@ -43823,6 +44279,7 @@ class DatabaseInstanceBase(
43823
44279
  stack_region=stack_region,
43824
44280
  statistic=statistic,
43825
44281
  unit=unit,
44282
+ visible=visible,
43826
44283
  )
43827
44284
 
43828
44285
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricFreeStorageSpace", [props]))
@@ -43834,6 +44291,7 @@ class DatabaseInstanceBase(
43834
44291
  account: typing.Optional[builtins.str] = None,
43835
44292
  color: typing.Optional[builtins.str] = None,
43836
44293
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
44294
+ id: typing.Optional[builtins.str] = None,
43837
44295
  label: typing.Optional[builtins.str] = None,
43838
44296
  period: typing.Optional[_Duration_4839e8c3] = None,
43839
44297
  region: typing.Optional[builtins.str] = None,
@@ -43841,6 +44299,7 @@ class DatabaseInstanceBase(
43841
44299
  stack_region: typing.Optional[builtins.str] = None,
43842
44300
  statistic: typing.Optional[builtins.str] = None,
43843
44301
  unit: typing.Optional[_Unit_61bc6f70] = None,
44302
+ visible: typing.Optional[builtins.bool] = None,
43844
44303
  ) -> _Metric_e396a4dc:
43845
44304
  '''The average number of disk write I/O operations per second.
43846
44305
 
@@ -43849,6 +44308,7 @@ class DatabaseInstanceBase(
43849
44308
  :param account: Account which this metric comes from. Default: - Deployment account.
43850
44309
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
43851
44310
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
44311
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
43852
44312
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
43853
44313
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
43854
44314
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -43856,11 +44316,13 @@ class DatabaseInstanceBase(
43856
44316
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
43857
44317
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
43858
44318
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
44319
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
43859
44320
  '''
43860
44321
  props = _MetricOptions_1788b62f(
43861
44322
  account=account,
43862
44323
  color=color,
43863
44324
  dimensions_map=dimensions_map,
44325
+ id=id,
43864
44326
  label=label,
43865
44327
  period=period,
43866
44328
  region=region,
@@ -43868,6 +44330,7 @@ class DatabaseInstanceBase(
43868
44330
  stack_region=stack_region,
43869
44331
  statistic=statistic,
43870
44332
  unit=unit,
44333
+ visible=visible,
43871
44334
  )
43872
44335
 
43873
44336
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricReadIOPS", [props]))
@@ -43879,6 +44342,7 @@ class DatabaseInstanceBase(
43879
44342
  account: typing.Optional[builtins.str] = None,
43880
44343
  color: typing.Optional[builtins.str] = None,
43881
44344
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
44345
+ id: typing.Optional[builtins.str] = None,
43882
44346
  label: typing.Optional[builtins.str] = None,
43883
44347
  period: typing.Optional[_Duration_4839e8c3] = None,
43884
44348
  region: typing.Optional[builtins.str] = None,
@@ -43886,6 +44350,7 @@ class DatabaseInstanceBase(
43886
44350
  stack_region: typing.Optional[builtins.str] = None,
43887
44351
  statistic: typing.Optional[builtins.str] = None,
43888
44352
  unit: typing.Optional[_Unit_61bc6f70] = None,
44353
+ visible: typing.Optional[builtins.bool] = None,
43889
44354
  ) -> _Metric_e396a4dc:
43890
44355
  '''The average number of disk read I/O operations per second.
43891
44356
 
@@ -43894,6 +44359,7 @@ class DatabaseInstanceBase(
43894
44359
  :param account: Account which this metric comes from. Default: - Deployment account.
43895
44360
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
43896
44361
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
44362
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
43897
44363
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
43898
44364
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
43899
44365
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -43901,11 +44367,13 @@ class DatabaseInstanceBase(
43901
44367
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
43902
44368
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
43903
44369
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
44370
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
43904
44371
  '''
43905
44372
  props = _MetricOptions_1788b62f(
43906
44373
  account=account,
43907
44374
  color=color,
43908
44375
  dimensions_map=dimensions_map,
44376
+ id=id,
43909
44377
  label=label,
43910
44378
  period=period,
43911
44379
  region=region,
@@ -43913,6 +44381,7 @@ class DatabaseInstanceBase(
43913
44381
  stack_region=stack_region,
43914
44382
  statistic=statistic,
43915
44383
  unit=unit,
44384
+ visible=visible,
43916
44385
  )
43917
44386
 
43918
44387
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricWriteIOPS", [props]))
@@ -47124,20 +47593,19 @@ class DatabaseCluster(
47124
47593
  # vpc: ec2.Vpc
47125
47594
 
47126
47595
  cluster = rds.DatabaseCluster(self, "Database",
47127
- engine=rds.DatabaseClusterEngine.aurora_mysql(version=rds.AuroraMysqlEngineVersion.VER_3_01_0),
47128
- credentials=rds.Credentials.from_generated_secret("clusteradmin"), # Optional - will default to 'admin' username and generated password
47129
- writer=rds.ClusterInstance.provisioned("writer",
47130
- publicly_accessible=False
47131
- ),
47132
- readers=[
47133
- rds.ClusterInstance.provisioned("reader1", promotion_tier=1),
47134
- rds.ClusterInstance.serverless_v2("reader2")
47135
- ],
47136
- vpc_subnets=ec2.SubnetSelection(
47137
- subnet_type=ec2.SubnetType.PRIVATE_WITH_EGRESS
47596
+ engine=rds.DatabaseClusterEngine.aurora_mysql(
47597
+ version=rds.AuroraMysqlEngineVersion.VER_3_03_0
47138
47598
  ),
47599
+ writer=rds.ClusterInstance.provisioned("writer"),
47139
47600
  vpc=vpc
47140
47601
  )
47602
+
47603
+ proxy = rds.DatabaseProxy(self, "Proxy",
47604
+ proxy_target=rds.ProxyTarget.from_cluster(cluster),
47605
+ secrets=[cluster.secret],
47606
+ vpc=vpc,
47607
+ client_password_auth_type=rds.ClientPasswordAuthType.MYSQL_NATIVE_PASSWORD
47608
+ )
47141
47609
  '''
47142
47610
 
47143
47611
  def __init__(
@@ -47376,6 +47844,29 @@ class DatabaseCluster(
47376
47844
 
47377
47845
  return typing.cast(IDatabaseCluster, jsii.sinvoke(cls, "fromDatabaseClusterAttributes", [scope, id, attrs]))
47378
47846
 
47847
+ @jsii.member(jsii_name="fromLookup")
47848
+ @builtins.classmethod
47849
+ def from_lookup(
47850
+ cls,
47851
+ scope: _constructs_77d1e7e8.Construct,
47852
+ id: builtins.str,
47853
+ *,
47854
+ cluster_identifier: builtins.str,
47855
+ ) -> IDatabaseCluster:
47856
+ '''Lookup an existing DatabaseCluster using clusterIdentifier.
47857
+
47858
+ :param scope: -
47859
+ :param id: -
47860
+ :param cluster_identifier: The cluster identifier of the DatabaseCluster.
47861
+ '''
47862
+ if __debug__:
47863
+ type_hints = typing.get_type_hints(_typecheckingstub__6aab9826e2a2cfbf0083d7663ae5f4bed5c3539c635512cbafd5e42752054c11)
47864
+ check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
47865
+ check_type(argname="argument id", value=id, expected_type=type_hints["id"])
47866
+ options = DatabaseClusterLookupOptions(cluster_identifier=cluster_identifier)
47867
+
47868
+ return typing.cast(IDatabaseCluster, jsii.sinvoke(cls, "fromLookup", [scope, id, options]))
47869
+
47379
47870
  @jsii.member(jsii_name="addRotationMultiUser")
47380
47871
  def add_rotation_multi_user(
47381
47872
  self,
@@ -47457,6 +47948,7 @@ class DatabaseCluster(
47457
47948
  account: typing.Optional[builtins.str] = None,
47458
47949
  color: typing.Optional[builtins.str] = None,
47459
47950
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
47951
+ id: typing.Optional[builtins.str] = None,
47460
47952
  label: typing.Optional[builtins.str] = None,
47461
47953
  period: typing.Optional[_Duration_4839e8c3] = None,
47462
47954
  region: typing.Optional[builtins.str] = None,
@@ -47464,6 +47956,7 @@ class DatabaseCluster(
47464
47956
  stack_region: typing.Optional[builtins.str] = None,
47465
47957
  statistic: typing.Optional[builtins.str] = None,
47466
47958
  unit: typing.Optional[_Unit_61bc6f70] = None,
47959
+ visible: typing.Optional[builtins.bool] = None,
47467
47960
  ) -> _Metric_e396a4dc:
47468
47961
  '''This value is represented as a percentage.
47469
47962
 
@@ -47476,6 +47969,7 @@ class DatabaseCluster(
47476
47969
  :param account: Account which this metric comes from. Default: - Deployment account.
47477
47970
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
47478
47971
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
47972
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
47479
47973
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
47480
47974
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
47481
47975
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -47483,11 +47977,13 @@ class DatabaseCluster(
47483
47977
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
47484
47978
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
47485
47979
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
47980
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
47486
47981
  '''
47487
47982
  props = _MetricOptions_1788b62f(
47488
47983
  account=account,
47489
47984
  color=color,
47490
47985
  dimensions_map=dimensions_map,
47986
+ id=id,
47491
47987
  label=label,
47492
47988
  period=period,
47493
47989
  region=region,
@@ -47495,6 +47991,7 @@ class DatabaseCluster(
47495
47991
  stack_region=stack_region,
47496
47992
  statistic=statistic,
47497
47993
  unit=unit,
47994
+ visible=visible,
47498
47995
  )
47499
47996
 
47500
47997
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricACUUtilization", [props]))
@@ -47506,6 +48003,7 @@ class DatabaseCluster(
47506
48003
  account: typing.Optional[builtins.str] = None,
47507
48004
  color: typing.Optional[builtins.str] = None,
47508
48005
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
48006
+ id: typing.Optional[builtins.str] = None,
47509
48007
  label: typing.Optional[builtins.str] = None,
47510
48008
  period: typing.Optional[_Duration_4839e8c3] = None,
47511
48009
  region: typing.Optional[builtins.str] = None,
@@ -47513,12 +48011,14 @@ class DatabaseCluster(
47513
48011
  stack_region: typing.Optional[builtins.str] = None,
47514
48012
  statistic: typing.Optional[builtins.str] = None,
47515
48013
  unit: typing.Optional[_Unit_61bc6f70] = None,
48014
+ visible: typing.Optional[builtins.bool] = None,
47516
48015
  ) -> _Metric_e396a4dc:
47517
48016
  '''As a cluster-level metric, it represents the average of the ServerlessDatabaseCapacity values of all the Aurora Serverless v2 DB instances in the cluster.
47518
48017
 
47519
48018
  :param account: Account which this metric comes from. Default: - Deployment account.
47520
48019
  :param color: The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The ``Color`` class has a set of standard colors that can be used here. Default: - Automatic color
47521
48020
  :param dimensions_map: Dimensions of the metric. Default: - No dimensions.
48021
+ :param id: Unique identifier for this metric when used in dashboard widgets. The id can be used as a variable to represent this metric in math expressions. Valid characters are letters, numbers, and underscore. The first character must be a lowercase letter. Default: - No ID
47522
48022
  :param label: Label for this metric when added to a Graph in a Dashboard. You can use `dynamic labels <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html>`_ to show summary information about the entire displayed time series in the legend. For example, if you use:: [max: ${MAX}] MyMetric As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend. Default: - No label
47523
48023
  :param period: The period over which the specified statistic is applied. Default: Duration.minutes(5)
47524
48024
  :param region: Region which this metric comes from. Default: - Deployment region.
@@ -47526,11 +48026,13 @@ class DatabaseCluster(
47526
48026
  :param stack_region: Region of the stack this metric is attached to. Default: - Deployment region.
47527
48027
  :param statistic: What function to use for aggregating. Use the ``aws_cloudwatch.Stats`` helper class to construct valid input strings. Can be one of the following: - "Minimum" | "min" - "Maximum" | "max" - "Average" | "avg" - "Sum" | "sum" - "SampleCount | "n" - "pNN.NN" - "tmNN.NN" | "tm(NN.NN%:NN.NN%)" - "iqm" - "wmNN.NN" | "wm(NN.NN%:NN.NN%)" - "tcNN.NN" | "tc(NN.NN%:NN.NN%)" - "tsNN.NN" | "ts(NN.NN%:NN.NN%)" Default: Average
47528
48028
  :param unit: Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units. The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases. CloudWatch does not honor this property for graphs. Default: - All metric datums in the given metric stream
48029
+ :param visible: Whether this metric should be visible in dashboard graphs. Setting this to false is useful when you want to hide raw metrics that are used in math expressions, and show only the expression results. Default: true
47529
48030
  '''
47530
48031
  props = _MetricOptions_1788b62f(
47531
48032
  account=account,
47532
48033
  color=color,
47533
48034
  dimensions_map=dimensions_map,
48035
+ id=id,
47534
48036
  label=label,
47535
48037
  period=period,
47536
48038
  region=region,
@@ -47538,6 +48040,7 @@ class DatabaseCluster(
47538
48040
  stack_region=stack_region,
47539
48041
  statistic=statistic,
47540
48042
  unit=unit,
48043
+ visible=visible,
47541
48044
  )
47542
48045
 
47543
48046
  return typing.cast(_Metric_e396a4dc, jsii.invoke(self, "metricServerlessDatabaseCapacity", [props]))
@@ -48213,6 +48716,7 @@ __all__ = [
48213
48716
  "DatabaseClusterEngine",
48214
48717
  "DatabaseClusterFromSnapshot",
48215
48718
  "DatabaseClusterFromSnapshotProps",
48719
+ "DatabaseClusterLookupOptions",
48216
48720
  "DatabaseClusterProps",
48217
48721
  "DatabaseInsightsMode",
48218
48722
  "DatabaseInstance",
@@ -49120,6 +49624,7 @@ def _typecheckingstub__255b0779ca741853674876540bf77279f6293bea05de2cd18724d2b92
49120
49624
  auto_minor_version_upgrade: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
49121
49625
  availability_zone: typing.Optional[builtins.str] = None,
49122
49626
  backup_retention_period: typing.Optional[jsii.Number] = None,
49627
+ backup_target: typing.Optional[builtins.str] = None,
49123
49628
  ca_certificate_identifier: typing.Optional[builtins.str] = None,
49124
49629
  certificate_rotation_restart: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
49125
49630
  character_set_name: typing.Optional[builtins.str] = None,
@@ -49266,6 +49771,12 @@ def _typecheckingstub__fd3e9f688b875610637e10e82f5815bcffe370acaf10d2173ec8c9703
49266
49771
  """Type checking stubs"""
49267
49772
  pass
49268
49773
 
49774
+ def _typecheckingstub__2d01b6bd3366a70d949ce4b76b7922f17c0009fda45951b31e9665ddfed4729e(
49775
+ value: typing.Optional[builtins.str],
49776
+ ) -> None:
49777
+ """Type checking stubs"""
49778
+ pass
49779
+
49269
49780
  def _typecheckingstub__62ccd61fdb1bb7842d321fcd1476ed686baf586bf907671076cafd6ba9e2c776(
49270
49781
  value: typing.Optional[builtins.str],
49271
49782
  ) -> None:
@@ -49739,6 +50250,7 @@ def _typecheckingstub__3bddb1be0bd1f1699e3a084c5859d94d8879ff15011f2f2eaac29ec16
49739
50250
  auto_minor_version_upgrade: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
49740
50251
  availability_zone: typing.Optional[builtins.str] = None,
49741
50252
  backup_retention_period: typing.Optional[jsii.Number] = None,
50253
+ backup_target: typing.Optional[builtins.str] = None,
49742
50254
  ca_certificate_identifier: typing.Optional[builtins.str] = None,
49743
50255
  certificate_rotation_restart: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
49744
50256
  character_set_name: typing.Optional[builtins.str] = None,
@@ -51041,6 +51553,13 @@ def _typecheckingstub__1e44b5aef872ca17869a17181382f06cd0166bdbe07e2c33701d3bf1e
51041
51553
  """Type checking stubs"""
51042
51554
  pass
51043
51555
 
51556
+ def _typecheckingstub__87588f52192df76e2f82453b5ba55840986615a954d2a6865cc65bf5b83b9cf0(
51557
+ *,
51558
+ cluster_identifier: builtins.str,
51559
+ ) -> None:
51560
+ """Type checking stubs"""
51561
+ pass
51562
+
51044
51563
  def _typecheckingstub__a32e21c90ab65d3cfdb3b7ef2a0d741ba1528ec8824cd1817d1e485b427eeca4(
51045
51564
  *,
51046
51565
  engine: IClusterEngine,
@@ -51435,6 +51954,7 @@ def _typecheckingstub__cb438e41c5d27e4b968b536ac8e59048e5a810f9216c9316ab7091ead
51435
51954
  account: typing.Optional[builtins.str] = None,
51436
51955
  color: typing.Optional[builtins.str] = None,
51437
51956
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
51957
+ id: typing.Optional[builtins.str] = None,
51438
51958
  label: typing.Optional[builtins.str] = None,
51439
51959
  period: typing.Optional[_Duration_4839e8c3] = None,
51440
51960
  region: typing.Optional[builtins.str] = None,
@@ -51442,6 +51962,7 @@ def _typecheckingstub__cb438e41c5d27e4b968b536ac8e59048e5a810f9216c9316ab7091ead
51442
51962
  stack_region: typing.Optional[builtins.str] = None,
51443
51963
  statistic: typing.Optional[builtins.str] = None,
51444
51964
  unit: typing.Optional[_Unit_61bc6f70] = None,
51965
+ visible: typing.Optional[builtins.bool] = None,
51445
51966
  ) -> None:
51446
51967
  """Type checking stubs"""
51447
51968
  pass
@@ -51482,6 +52003,7 @@ def _typecheckingstub__7a74ddedb30a6a3825b0f7fa6abc3a5aa48e031b507410402659ee350
51482
52003
  account: typing.Optional[builtins.str] = None,
51483
52004
  color: typing.Optional[builtins.str] = None,
51484
52005
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
52006
+ id: typing.Optional[builtins.str] = None,
51485
52007
  label: typing.Optional[builtins.str] = None,
51486
52008
  period: typing.Optional[_Duration_4839e8c3] = None,
51487
52009
  region: typing.Optional[builtins.str] = None,
@@ -51489,6 +52011,7 @@ def _typecheckingstub__7a74ddedb30a6a3825b0f7fa6abc3a5aa48e031b507410402659ee350
51489
52011
  stack_region: typing.Optional[builtins.str] = None,
51490
52012
  statistic: typing.Optional[builtins.str] = None,
51491
52013
  unit: typing.Optional[_Unit_61bc6f70] = None,
52014
+ visible: typing.Optional[builtins.bool] = None,
51492
52015
  ) -> None:
51493
52016
  """Type checking stubs"""
51494
52017
  pass
@@ -52261,6 +52784,7 @@ def _typecheckingstub__4f4ce592b81574a1f6a9ee4b6ab1c756352bb31fa97575b7cf7708b9d
52261
52784
  account: typing.Optional[builtins.str] = None,
52262
52785
  color: typing.Optional[builtins.str] = None,
52263
52786
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
52787
+ id: typing.Optional[builtins.str] = None,
52264
52788
  label: typing.Optional[builtins.str] = None,
52265
52789
  period: typing.Optional[_Duration_4839e8c3] = None,
52266
52790
  region: typing.Optional[builtins.str] = None,
@@ -52268,6 +52792,7 @@ def _typecheckingstub__4f4ce592b81574a1f6a9ee4b6ab1c756352bb31fa97575b7cf7708b9d
52268
52792
  stack_region: typing.Optional[builtins.str] = None,
52269
52793
  statistic: typing.Optional[builtins.str] = None,
52270
52794
  unit: typing.Optional[_Unit_61bc6f70] = None,
52795
+ visible: typing.Optional[builtins.bool] = None,
52271
52796
  ) -> None:
52272
52797
  """Type checking stubs"""
52273
52798
  pass
@@ -52438,6 +52963,7 @@ def _typecheckingstub__d3b875972d333f05c29d29ce0f29c0cd026377583d9fad46eb5cc05f0
52438
52963
  account: typing.Optional[builtins.str] = None,
52439
52964
  color: typing.Optional[builtins.str] = None,
52440
52965
  dimensions_map: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
52966
+ id: typing.Optional[builtins.str] = None,
52441
52967
  label: typing.Optional[builtins.str] = None,
52442
52968
  period: typing.Optional[_Duration_4839e8c3] = None,
52443
52969
  region: typing.Optional[builtins.str] = None,
@@ -52445,6 +52971,7 @@ def _typecheckingstub__d3b875972d333f05c29d29ce0f29c0cd026377583d9fad46eb5cc05f0
52445
52971
  stack_region: typing.Optional[builtins.str] = None,
52446
52972
  statistic: typing.Optional[builtins.str] = None,
52447
52973
  unit: typing.Optional[_Unit_61bc6f70] = None,
52974
+ visible: typing.Optional[builtins.bool] = None,
52448
52975
  ) -> None:
52449
52976
  """Type checking stubs"""
52450
52977
  pass
@@ -52874,6 +53401,15 @@ def _typecheckingstub__d7cb0d9ec8799a7f25049acfbf2838c0699426663debfac03fac47054
52874
53401
  """Type checking stubs"""
52875
53402
  pass
52876
53403
 
53404
+ def _typecheckingstub__6aab9826e2a2cfbf0083d7663ae5f4bed5c3539c635512cbafd5e42752054c11(
53405
+ scope: _constructs_77d1e7e8.Construct,
53406
+ id: builtins.str,
53407
+ *,
53408
+ cluster_identifier: builtins.str,
53409
+ ) -> None:
53410
+ """Type checking stubs"""
53411
+ pass
53412
+
52877
53413
  def _typecheckingstub__ad0046a8afbf99af323d7c44377c74d563a781f7a5854b98860dd1e08070d210(
52878
53414
  id: builtins.str,
52879
53415
  *,