aws-cdk-lib 2.182.0__py3-none-any.whl → 2.183.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 (43) hide show
  1. aws_cdk/__init__.py +459 -33
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.182.0.jsii.tgz → aws-cdk-lib@2.183.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_batch/__init__.py +15 -9
  5. aws_cdk/aws_bedrock/__init__.py +5804 -2325
  6. aws_cdk/aws_ce/__init__.py +141 -3
  7. aws_cdk/aws_cloudformation/__init__.py +26 -33
  8. aws_cdk/aws_cloudtrail/__init__.py +4 -4
  9. aws_cdk/aws_codebuild/__init__.py +4 -10
  10. aws_cdk/aws_cognito/__init__.py +3 -3
  11. aws_cdk/aws_dms/__init__.py +350 -0
  12. aws_cdk/aws_ec2/__init__.py +63 -5
  13. aws_cdk/aws_elasticache/__init__.py +3 -3
  14. aws_cdk/aws_emr/__init__.py +9 -3
  15. aws_cdk/aws_gameliftstreams/__init__.py +1205 -0
  16. aws_cdk/aws_iam/__init__.py +290 -35
  17. aws_cdk/aws_inspector/__init__.py +13 -10
  18. aws_cdk/aws_iot/__init__.py +616 -22
  19. aws_cdk/aws_iotfleetwise/__init__.py +72 -10
  20. aws_cdk/aws_iotsitewise/__init__.py +12 -8
  21. aws_cdk/aws_kafkaconnect/__init__.py +4 -2
  22. aws_cdk/aws_lambda/__init__.py +9 -0
  23. aws_cdk/aws_logs/__init__.py +133 -0
  24. aws_cdk/aws_medialive/__init__.py +86 -86
  25. aws_cdk/aws_msk/__init__.py +236 -128
  26. aws_cdk/aws_neptunegraph/__init__.py +3 -3
  27. aws_cdk/aws_opensearchserverless/__init__.py +1031 -0
  28. aws_cdk/aws_quicksight/__init__.py +6511 -20331
  29. aws_cdk/aws_rds/__init__.py +124 -17
  30. aws_cdk/aws_redshift/__init__.py +8 -8
  31. aws_cdk/aws_sagemaker/__init__.py +12 -5
  32. aws_cdk/aws_securitylake/__init__.py +3 -0
  33. aws_cdk/aws_synthetics/__init__.py +2 -0
  34. aws_cdk/aws_transfer/__init__.py +241 -40
  35. aws_cdk/aws_wafv2/__init__.py +118 -30
  36. aws_cdk/aws_xray/__init__.py +195 -0
  37. aws_cdk/custom_resources/__init__.py +65 -8
  38. {aws_cdk_lib-2.182.0.dist-info → aws_cdk_lib-2.183.0.dist-info}/METADATA +1 -1
  39. {aws_cdk_lib-2.182.0.dist-info → aws_cdk_lib-2.183.0.dist-info}/RECORD +43 -42
  40. {aws_cdk_lib-2.182.0.dist-info → aws_cdk_lib-2.183.0.dist-info}/LICENSE +0 -0
  41. {aws_cdk_lib-2.182.0.dist-info → aws_cdk_lib-2.183.0.dist-info}/NOTICE +0 -0
  42. {aws_cdk_lib-2.182.0.dist-info → aws_cdk_lib-2.183.0.dist-info}/WHEEL +0 -0
  43. {aws_cdk_lib-2.182.0.dist-info → aws_cdk_lib-2.183.0.dist-info}/top_level.txt +0 -0
@@ -8970,7 +8970,7 @@ class CfnDBInstance(
8970
8970
  :param db_parameter_group_name: The name of an existing DB parameter group or a reference to an `AWS::RDS::DBParameterGroup <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html>`_ resource created in the template. To list all of the available DB parameter group names, use the following command: ``aws rds describe-db-parameter-groups --query "DBParameterGroups[].DBParameterGroupName" --output text`` .. epigraph:: If any of the data members of the referenced parameter group are changed during an update, the DB instance might need to be restarted, which causes some interruption. If the parameter group contains static parameters, whether they were changed or not, an update triggers a reboot. If you don't specify a value for ``DBParameterGroupName`` property, the default DB parameter group for the specified engine and engine version is used.
8971
8971
  :param db_security_groups: A list of the DB security groups to assign to the DB instance. The list can include both the name of existing DB security groups or references to AWS::RDS::DBSecurityGroup resources created in the template. If you set DBSecurityGroups, you must not set VPCSecurityGroups, and vice versa. Also, note that the DBSecurityGroups property exists only for backwards compatibility with older regions and is no longer recommended for providing security information to an RDS DB instance. Instead, use VPCSecurityGroups. .. epigraph:: If you specify this property, AWS CloudFormation sends only the following properties (if specified) to Amazon RDS during create operations: - ``AllocatedStorage`` - ``AutoMinorVersionUpgrade`` - ``AvailabilityZone`` - ``BackupRetentionPeriod`` - ``CharacterSetName`` - ``DBInstanceClass`` - ``DBName`` - ``DBParameterGroupName`` - ``DBSecurityGroups`` - ``DBSubnetGroupName`` - ``Engine`` - ``EngineVersion`` - ``Iops`` - ``LicenseModel`` - ``MasterUsername`` - ``MasterUserPassword`` - ``MultiAZ`` - ``OptionGroupName`` - ``PreferredBackupWindow`` - ``PreferredMaintenanceWindow`` All other properties are ignored. Specify a virtual private cloud (VPC) security group if you want to submit other properties, such as ``StorageType`` , ``StorageEncrypted`` , or ``KmsKeyId`` . If you're already using the ``DBSecurityGroups`` property, you can't use these other properties by updating your DB instance to use a VPC security group. You must recreate the DB instance.
8972
8972
  :param db_snapshot_identifier: The name or Amazon Resource Name (ARN) of the DB snapshot that's used to restore the DB instance. If you're restoring from a shared manual DB snapshot, you must specify the ARN of the snapshot. By specifying this property, you can create a DB instance from the specified DB snapshot. If the ``DBSnapshotIdentifier`` property is an empty string or the ``AWS::RDS::DBInstance`` declaration has no ``DBSnapshotIdentifier`` property, AWS CloudFormation creates a new database. If the property contains a value (other than an empty string), AWS CloudFormation creates a database from the specified snapshot. If a snapshot with the specified name doesn't exist, AWS CloudFormation can't create the database and it rolls back the stack. Some DB instance properties aren't valid when you restore from a snapshot, such as the ``MasterUsername`` and ``MasterUserPassword`` properties, and the point-in-time recovery properties ``RestoreTime`` and ``UseLatestRestorableTime`` . For information about the properties that you can specify, see the ```RestoreDBInstanceFromDBSnapshot`` <https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_RestoreDBInstanceFromDBSnapshot.html>`_ action in the *Amazon RDS API Reference* . After you restore a DB instance with a ``DBSnapshotIdentifier`` property, you must specify the same ``DBSnapshotIdentifier`` property for any future updates to the DB instance. When you specify this property for an update, the DB instance is not restored from the DB snapshot again, and the data in the database is not changed. However, if you don't specify the ``DBSnapshotIdentifier`` property, an empty DB instance is created, and the original DB instance is deleted. If you specify a property that is different from the previous snapshot restore property, a new DB instance is restored from the specified ``DBSnapshotIdentifier`` property, and the original DB instance is deleted. If you specify the ``DBSnapshotIdentifier`` property to restore a DB instance (as opposed to specifying it for DB instance updates), then don't specify the following properties: - ``CharacterSetName`` - ``DBClusterIdentifier`` - ``DBName`` - ``KmsKeyId`` - ``MasterUsername`` - ``MasterUserPassword`` - ``PromotionTier`` - ``SourceDBInstanceIdentifier`` - ``SourceRegion`` - ``StorageEncrypted`` (for an unencrypted snapshot) - ``Timezone`` *Amazon Aurora* Not applicable. Snapshot restore is managed by the DB cluster.
8973
- :param db_subnet_group_name: A DB subnet group to associate with the DB instance. If you update this value, the new subnet group must be a subnet group in a new VPC. If there's no DB subnet group, then the DB instance isn't a VPC DB instance. For more information about using Amazon RDS in a VPC, see `Amazon VPC and Amazon RDS <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.html>`_ in the *Amazon RDS User Guide* . This setting doesn't apply to Amazon Aurora DB instances. The DB subnet group is managed by the DB cluster. If specified, the setting must match the DB cluster setting.
8973
+ :param db_subnet_group_name: A DB subnet group to associate with the DB instance. If you update this value, the new subnet group must be a subnet group in a new VPC. If you don't specify a DB subnet group, RDS uses the default DB subnet group if one exists. If a default DB subnet group does not exist, and you don't specify a ``DBSubnetGroupName`` , the DB instance fails to launch. For more information about using Amazon RDS in a VPC, see `Amazon VPC and Amazon RDS <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.html>`_ in the *Amazon RDS User Guide* . This setting doesn't apply to Amazon Aurora DB instances. The DB subnet group is managed by the DB cluster. If specified, the setting must match the DB cluster setting.
8974
8974
  :param db_system_id: The Oracle system identifier (SID), which is the name of the Oracle database instance that manages your database files. In this context, the term "Oracle database instance" refers exclusively to the system global area (SGA) and Oracle background processes. If you don't specify a SID, the value defaults to ``RDSCDB`` . The Oracle SID is also the name of your CDB.
8975
8975
  :param dedicated_log_volume: Indicates whether the DB instance has a dedicated log volume (DLV) enabled.
8976
8976
  :param delete_automated_backups: A value that indicates whether to remove automated backups immediately after the DB instance is deleted. This parameter isn't case-sensitive. The default is to remove automated backups immediately after the DB instance is deleted. *Amazon Aurora* Not applicable. When you delete a DB cluster, all automated backups for that DB cluster are deleted and can't be recovered. Manual DB cluster snapshots of the DB cluster are not deleted.
@@ -11042,7 +11042,7 @@ class CfnDBInstanceProps:
11042
11042
  :param db_parameter_group_name: The name of an existing DB parameter group or a reference to an `AWS::RDS::DBParameterGroup <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html>`_ resource created in the template. To list all of the available DB parameter group names, use the following command: ``aws rds describe-db-parameter-groups --query "DBParameterGroups[].DBParameterGroupName" --output text`` .. epigraph:: If any of the data members of the referenced parameter group are changed during an update, the DB instance might need to be restarted, which causes some interruption. If the parameter group contains static parameters, whether they were changed or not, an update triggers a reboot. If you don't specify a value for ``DBParameterGroupName`` property, the default DB parameter group for the specified engine and engine version is used.
11043
11043
  :param db_security_groups: A list of the DB security groups to assign to the DB instance. The list can include both the name of existing DB security groups or references to AWS::RDS::DBSecurityGroup resources created in the template. If you set DBSecurityGroups, you must not set VPCSecurityGroups, and vice versa. Also, note that the DBSecurityGroups property exists only for backwards compatibility with older regions and is no longer recommended for providing security information to an RDS DB instance. Instead, use VPCSecurityGroups. .. epigraph:: If you specify this property, AWS CloudFormation sends only the following properties (if specified) to Amazon RDS during create operations: - ``AllocatedStorage`` - ``AutoMinorVersionUpgrade`` - ``AvailabilityZone`` - ``BackupRetentionPeriod`` - ``CharacterSetName`` - ``DBInstanceClass`` - ``DBName`` - ``DBParameterGroupName`` - ``DBSecurityGroups`` - ``DBSubnetGroupName`` - ``Engine`` - ``EngineVersion`` - ``Iops`` - ``LicenseModel`` - ``MasterUsername`` - ``MasterUserPassword`` - ``MultiAZ`` - ``OptionGroupName`` - ``PreferredBackupWindow`` - ``PreferredMaintenanceWindow`` All other properties are ignored. Specify a virtual private cloud (VPC) security group if you want to submit other properties, such as ``StorageType`` , ``StorageEncrypted`` , or ``KmsKeyId`` . If you're already using the ``DBSecurityGroups`` property, you can't use these other properties by updating your DB instance to use a VPC security group. You must recreate the DB instance.
11044
11044
  :param db_snapshot_identifier: The name or Amazon Resource Name (ARN) of the DB snapshot that's used to restore the DB instance. If you're restoring from a shared manual DB snapshot, you must specify the ARN of the snapshot. By specifying this property, you can create a DB instance from the specified DB snapshot. If the ``DBSnapshotIdentifier`` property is an empty string or the ``AWS::RDS::DBInstance`` declaration has no ``DBSnapshotIdentifier`` property, AWS CloudFormation creates a new database. If the property contains a value (other than an empty string), AWS CloudFormation creates a database from the specified snapshot. If a snapshot with the specified name doesn't exist, AWS CloudFormation can't create the database and it rolls back the stack. Some DB instance properties aren't valid when you restore from a snapshot, such as the ``MasterUsername`` and ``MasterUserPassword`` properties, and the point-in-time recovery properties ``RestoreTime`` and ``UseLatestRestorableTime`` . For information about the properties that you can specify, see the ```RestoreDBInstanceFromDBSnapshot`` <https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_RestoreDBInstanceFromDBSnapshot.html>`_ action in the *Amazon RDS API Reference* . After you restore a DB instance with a ``DBSnapshotIdentifier`` property, you must specify the same ``DBSnapshotIdentifier`` property for any future updates to the DB instance. When you specify this property for an update, the DB instance is not restored from the DB snapshot again, and the data in the database is not changed. However, if you don't specify the ``DBSnapshotIdentifier`` property, an empty DB instance is created, and the original DB instance is deleted. If you specify a property that is different from the previous snapshot restore property, a new DB instance is restored from the specified ``DBSnapshotIdentifier`` property, and the original DB instance is deleted. If you specify the ``DBSnapshotIdentifier`` property to restore a DB instance (as opposed to specifying it for DB instance updates), then don't specify the following properties: - ``CharacterSetName`` - ``DBClusterIdentifier`` - ``DBName`` - ``KmsKeyId`` - ``MasterUsername`` - ``MasterUserPassword`` - ``PromotionTier`` - ``SourceDBInstanceIdentifier`` - ``SourceRegion`` - ``StorageEncrypted`` (for an unencrypted snapshot) - ``Timezone`` *Amazon Aurora* Not applicable. Snapshot restore is managed by the DB cluster.
11045
- :param db_subnet_group_name: A DB subnet group to associate with the DB instance. If you update this value, the new subnet group must be a subnet group in a new VPC. If there's no DB subnet group, then the DB instance isn't a VPC DB instance. For more information about using Amazon RDS in a VPC, see `Amazon VPC and Amazon RDS <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.html>`_ in the *Amazon RDS User Guide* . This setting doesn't apply to Amazon Aurora DB instances. The DB subnet group is managed by the DB cluster. If specified, the setting must match the DB cluster setting.
11045
+ :param db_subnet_group_name: A DB subnet group to associate with the DB instance. If you update this value, the new subnet group must be a subnet group in a new VPC. If you don't specify a DB subnet group, RDS uses the default DB subnet group if one exists. If a default DB subnet group does not exist, and you don't specify a ``DBSubnetGroupName`` , the DB instance fails to launch. For more information about using Amazon RDS in a VPC, see `Amazon VPC and Amazon RDS <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.html>`_ in the *Amazon RDS User Guide* . This setting doesn't apply to Amazon Aurora DB instances. The DB subnet group is managed by the DB cluster. If specified, the setting must match the DB cluster setting.
11046
11046
  :param db_system_id: The Oracle system identifier (SID), which is the name of the Oracle database instance that manages your database files. In this context, the term "Oracle database instance" refers exclusively to the system global area (SGA) and Oracle background processes. If you don't specify a SID, the value defaults to ``RDSCDB`` . The Oracle SID is also the name of your CDB.
11047
11047
  :param dedicated_log_volume: Indicates whether the DB instance has a dedicated log volume (DLV) enabled.
11048
11048
  :param delete_automated_backups: A value that indicates whether to remove automated backups immediately after the DB instance is deleted. This parameter isn't case-sensitive. The default is to remove automated backups immediately after the DB instance is deleted. *Amazon Aurora* Not applicable. When you delete a DB cluster, all automated backups for that DB cluster are deleted and can't be recovered. Manual DB cluster snapshots of the DB cluster are not deleted.
@@ -11963,7 +11963,7 @@ class CfnDBInstanceProps:
11963
11963
 
11964
11964
  If you update this value, the new subnet group must be a subnet group in a new VPC.
11965
11965
 
11966
- If there's no DB subnet group, then the DB instance isn't a VPC DB instance.
11966
+ If you don't specify a DB subnet group, RDS uses the default DB subnet group if one exists. If a default DB subnet group does not exist, and you don't specify a ``DBSubnetGroupName`` , the DB instance fails to launch.
11967
11967
 
11968
11968
  For more information about using Amazon RDS in a VPC, see `Amazon VPC and Amazon RDS <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.html>`_ in the *Amazon RDS User Guide* .
11969
11969
 
@@ -14861,7 +14861,7 @@ class CfnDBProxyTargetGroup(
14861
14861
  '''Specifies the settings that control the size and behavior of the connection pool associated with a ``DBProxyTargetGroup`` .
14862
14862
 
14863
14863
  :param connection_borrow_timeout: The number of seconds for a proxy to wait for a connection to become available in the connection pool. This setting only applies when the proxy has opened its maximum number of connections and all connections are busy with client sessions. Default: ``120`` Constraints: - Must be between 0 and 3600.
14864
- :param init_query: One or more SQL statements for the proxy to run when opening each new database connection. Typically used with ``SET`` statements to make sure that each connection has identical settings such as time zone and character set. For multiple statements, use semicolons as the separator. You can also include multiple variables in a single ``SET`` statement, such as ``SET x=1, y=2`` . Default: no initialization query
14864
+ :param init_query: Add an initialization query, or modify the current one. You can specify one or more SQL statements for the proxy to run when opening each new database connection. The setting is typically used with ``SET`` statements to make sure that each connection has identical settings. Make sure that the query you add is valid. To include multiple variables in a single ``SET`` statement, use comma separators. For example: ``SET variable1=value1, variable2=value2`` For multiple statements, use semicolons as the separator. Default: no initialization query
14865
14865
  :param max_connections_percent: The maximum size of the connection pool for each target in a target group. The value is expressed as a percentage of the ``max_connections`` setting for the RDS DB instance or Aurora DB cluster used by the target group. If you specify ``MaxIdleConnectionsPercent`` , then you must also include a value for this parameter. Default: ``10`` for RDS for Microsoft SQL Server, and ``100`` for all other engines Constraints: - Must be between 1 and 100.
14866
14866
  :param max_idle_connections_percent: A value that controls how actively the proxy closes idle database connections in the connection pool. The value is expressed as a percentage of the ``max_connections`` setting for the RDS DB instance or Aurora DB cluster used by the target group. With a high value, the proxy leaves a high percentage of idle database connections open. A low value causes the proxy to close more idle connections and return them to the database. If you specify this parameter, then you must also include a value for ``MaxConnectionsPercent`` . Default: The default value is half of the value of ``MaxConnectionsPercent`` . For example, if ``MaxConnectionsPercent`` is 80, then the default value of ``MaxIdleConnectionsPercent`` is 40. If the value of ``MaxConnectionsPercent`` isn't specified, then for SQL Server, ``MaxIdleConnectionsPercent`` is ``5`` , and for all other engines, the default is ``50`` . Constraints: - Must be between 0 and the value of ``MaxConnectionsPercent`` .
14867
14867
  :param session_pinning_filters: Each item in the list represents a class of SQL operations that normally cause all later statements in a session using a proxy to be pinned to the same underlying database connection. Including an item in the list exempts that class of SQL operations from the pinning behavior. Default: no session pinning filters
@@ -14921,9 +14921,13 @@ class CfnDBProxyTargetGroup(
14921
14921
 
14922
14922
  @builtins.property
14923
14923
  def init_query(self) -> typing.Optional[builtins.str]:
14924
- '''One or more SQL statements for the proxy to run when opening each new database connection.
14924
+ '''Add an initialization query, or modify the current one.
14925
14925
 
14926
- Typically used with ``SET`` statements to make sure that each connection has identical settings such as time zone and character set. For multiple statements, use semicolons as the separator. You can also include multiple variables in a single ``SET`` statement, such as ``SET x=1, y=2`` .
14926
+ You can specify one or more SQL statements for the proxy to run when opening each new database connection. The setting is typically used with ``SET`` statements to make sure that each connection has identical settings. Make sure that the query you add is valid. To include multiple variables in a single ``SET`` statement, use comma separators.
14927
+
14928
+ For example: ``SET variable1=value1, variable2=value2``
14929
+
14930
+ For multiple statements, use semicolons as the separator.
14927
14931
 
14928
14932
  Default: no initialization query
14929
14933
 
@@ -31204,6 +31208,12 @@ class MariaDbEngineVersion(
31204
31208
  '''Version "10.11.10".'''
31205
31209
  return typing.cast("MariaDbEngineVersion", jsii.sget(cls, "VER_10_11_10"))
31206
31210
 
31211
+ @jsii.python.classproperty
31212
+ @jsii.member(jsii_name="VER_10_11_11")
31213
+ def VER_10_11_11(cls) -> "MariaDbEngineVersion":
31214
+ '''Version "10.11.11".'''
31215
+ return typing.cast("MariaDbEngineVersion", jsii.sget(cls, "VER_10_11_11"))
31216
+
31207
31217
  @jsii.python.classproperty
31208
31218
  @jsii.member(jsii_name="VER_10_11_4")
31209
31219
  def VER_10_11_4(cls) -> "MariaDbEngineVersion":
@@ -31809,6 +31819,12 @@ class MariaDbEngineVersion(
31809
31819
  '''Version "10.5.27".'''
31810
31820
  return typing.cast("MariaDbEngineVersion", jsii.sget(cls, "VER_10_5_27"))
31811
31821
 
31822
+ @jsii.python.classproperty
31823
+ @jsii.member(jsii_name="VER_10_5_28")
31824
+ def VER_10_5_28(cls) -> "MariaDbEngineVersion":
31825
+ '''Version "10.5.28".'''
31826
+ return typing.cast("MariaDbEngineVersion", jsii.sget(cls, "VER_10_5_28"))
31827
+
31812
31828
  @jsii.python.classproperty
31813
31829
  @jsii.member(jsii_name="VER_10_5_8")
31814
31830
  def VER_10_5_8(cls) -> "MariaDbEngineVersion":
@@ -31918,6 +31934,12 @@ class MariaDbEngineVersion(
31918
31934
  '''Version "10.6.20".'''
31919
31935
  return typing.cast("MariaDbEngineVersion", jsii.sget(cls, "VER_10_6_20"))
31920
31936
 
31937
+ @jsii.python.classproperty
31938
+ @jsii.member(jsii_name="VER_10_6_21")
31939
+ def VER_10_6_21(cls) -> "MariaDbEngineVersion":
31940
+ '''Version "10.6.21".'''
31941
+ return typing.cast("MariaDbEngineVersion", jsii.sget(cls, "VER_10_6_21"))
31942
+
31921
31943
  @jsii.python.classproperty
31922
31944
  @jsii.member(jsii_name="VER_10_6_5")
31923
31945
  def VER_10_6_5(cls) -> "MariaDbEngineVersion":
@@ -31963,6 +31985,12 @@ class MariaDbEngineVersion(
31963
31985
  '''Version "11.4.4".'''
31964
31986
  return typing.cast("MariaDbEngineVersion", jsii.sget(cls, "VER_11_4_4"))
31965
31987
 
31988
+ @jsii.python.classproperty
31989
+ @jsii.member(jsii_name="VER_11_4_5")
31990
+ def VER_11_4_5(cls) -> "MariaDbEngineVersion":
31991
+ '''Version "11.4.5".'''
31992
+ return typing.cast("MariaDbEngineVersion", jsii.sget(cls, "VER_11_4_5"))
31993
+
31966
31994
  @builtins.property
31967
31995
  @jsii.member(jsii_name="mariaDbFullVersion")
31968
31996
  def maria_db_full_version(self) -> builtins.str:
@@ -32419,6 +32447,18 @@ class MysqlEngineVersion(
32419
32447
  '''Version "5.7.44-rds.20240808".'''
32420
32448
  return typing.cast("MysqlEngineVersion", jsii.sget(cls, "VER_5_7_44_RDS_20240808"))
32421
32449
 
32450
+ @jsii.python.classproperty
32451
+ @jsii.member(jsii_name="VER_5_7_44_RDS_20250103")
32452
+ def VER_5_7_44_RDS_20250103(cls) -> "MysqlEngineVersion":
32453
+ '''Version "5.7.44-rds.20250103".'''
32454
+ return typing.cast("MysqlEngineVersion", jsii.sget(cls, "VER_5_7_44_RDS_20250103"))
32455
+
32456
+ @jsii.python.classproperty
32457
+ @jsii.member(jsii_name="VER_5_7_44_RDS_20250213")
32458
+ def VER_5_7_44_RDS_20250213(cls) -> "MysqlEngineVersion":
32459
+ '''Version "5.7.44-rds.20250213".'''
32460
+ return typing.cast("MysqlEngineVersion", jsii.sget(cls, "VER_5_7_44_RDS_20250213"))
32461
+
32422
32462
  @jsii.python.classproperty
32423
32463
  @jsii.member(jsii_name="VER_8_0")
32424
32464
  def VER_8_0(cls) -> "MysqlEngineVersion":
@@ -32649,12 +32689,24 @@ class MysqlEngineVersion(
32649
32689
  '''Version "8.0.40".'''
32650
32690
  return typing.cast("MysqlEngineVersion", jsii.sget(cls, "VER_8_0_40"))
32651
32691
 
32692
+ @jsii.python.classproperty
32693
+ @jsii.member(jsii_name="VER_8_0_41")
32694
+ def VER_8_0_41(cls) -> "MysqlEngineVersion":
32695
+ '''Version "8.0.41".'''
32696
+ return typing.cast("MysqlEngineVersion", jsii.sget(cls, "VER_8_0_41"))
32697
+
32652
32698
  @jsii.python.classproperty
32653
32699
  @jsii.member(jsii_name="VER_8_4_3")
32654
32700
  def VER_8_4_3(cls) -> "MysqlEngineVersion":
32655
32701
  '''Version "8.4.3".'''
32656
32702
  return typing.cast("MysqlEngineVersion", jsii.sget(cls, "VER_8_4_3"))
32657
32703
 
32704
+ @jsii.python.classproperty
32705
+ @jsii.member(jsii_name="VER_8_4_4")
32706
+ def VER_8_4_4(cls) -> "MysqlEngineVersion":
32707
+ '''Version "8.4.4".'''
32708
+ return typing.cast("MysqlEngineVersion", jsii.sget(cls, "VER_8_4_4"))
32709
+
32658
32710
  @builtins.property
32659
32711
  @jsii.member(jsii_name="mysqlFullVersion")
32660
32712
  def mysql_full_version(self) -> builtins.str:
@@ -35677,19 +35729,34 @@ class PostgresEngineVersion(
35677
35729
  @jsii.python.classproperty
35678
35730
  @jsii.member(jsii_name="VER_13_11")
35679
35731
  def VER_13_11(cls) -> "PostgresEngineVersion":
35680
- '''Version "13.11".'''
35732
+ '''(deprecated) Version "13.11".
35733
+
35734
+ :deprecated: PostgreSQL 13.11 is no longer supported by Amazon RDS.
35735
+
35736
+ :stability: deprecated
35737
+ '''
35681
35738
  return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_13_11"))
35682
35739
 
35683
35740
  @jsii.python.classproperty
35684
35741
  @jsii.member(jsii_name="VER_13_12")
35685
35742
  def VER_13_12(cls) -> "PostgresEngineVersion":
35686
- '''Version "13.12".'''
35743
+ '''(deprecated) Version "13.12".
35744
+
35745
+ :deprecated: PostgreSQL 13.12 is no longer supported by Amazon RDS.
35746
+
35747
+ :stability: deprecated
35748
+ '''
35687
35749
  return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_13_12"))
35688
35750
 
35689
35751
  @jsii.python.classproperty
35690
35752
  @jsii.member(jsii_name="VER_13_13")
35691
35753
  def VER_13_13(cls) -> "PostgresEngineVersion":
35692
- '''Version "13.13".'''
35754
+ '''(deprecated) Version "13.13".
35755
+
35756
+ :deprecated: PostgreSQL 13.13 is no longer supported by Amazon RDS.
35757
+
35758
+ :stability: deprecated
35759
+ '''
35693
35760
  return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_13_13"))
35694
35761
 
35695
35762
  @jsii.python.classproperty
@@ -35842,13 +35909,23 @@ class PostgresEngineVersion(
35842
35909
  @jsii.python.classproperty
35843
35910
  @jsii.member(jsii_name="VER_14_10")
35844
35911
  def VER_14_10(cls) -> "PostgresEngineVersion":
35845
- '''Version "14.10".'''
35912
+ '''(deprecated) Version "14.10".
35913
+
35914
+ :deprecated: PostgreSQL 14.10 is no longer supported by Amazon RDS.
35915
+
35916
+ :stability: deprecated
35917
+ '''
35846
35918
  return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_14_10"))
35847
35919
 
35848
35920
  @jsii.python.classproperty
35849
35921
  @jsii.member(jsii_name="VER_14_11")
35850
35922
  def VER_14_11(cls) -> "PostgresEngineVersion":
35851
- '''Version "14.11".'''
35923
+ '''(deprecated) Version "14.11".
35924
+
35925
+ :deprecated: PostgreSQL 14.11 is no longer supported by Amazon RDS.
35926
+
35927
+ :stability: deprecated
35928
+ '''
35852
35929
  return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_14_11"))
35853
35930
 
35854
35931
  @jsii.python.classproperty
@@ -35967,7 +36044,12 @@ class PostgresEngineVersion(
35967
36044
  @jsii.python.classproperty
35968
36045
  @jsii.member(jsii_name="VER_14_9")
35969
36046
  def VER_14_9(cls) -> "PostgresEngineVersion":
35970
- '''Version "14.9".'''
36047
+ '''(deprecated) Version "14.9".
36048
+
36049
+ :deprecated: PostgreSQL 14.9 is no longer supported by Amazon RDS.
36050
+
36051
+ :stability: deprecated
36052
+ '''
35971
36053
  return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_14_9"))
35972
36054
 
35973
36055
  @jsii.python.classproperty
@@ -36019,19 +36101,34 @@ class PostgresEngineVersion(
36019
36101
  @jsii.python.classproperty
36020
36102
  @jsii.member(jsii_name="VER_15_4")
36021
36103
  def VER_15_4(cls) -> "PostgresEngineVersion":
36022
- '''Version "15.4".'''
36104
+ '''(deprecated) Version "15.4".
36105
+
36106
+ :deprecated: PostgreSQL 15.4 is no longer supported by Amazon RDS.
36107
+
36108
+ :stability: deprecated
36109
+ '''
36023
36110
  return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_15_4"))
36024
36111
 
36025
36112
  @jsii.python.classproperty
36026
36113
  @jsii.member(jsii_name="VER_15_5")
36027
36114
  def VER_15_5(cls) -> "PostgresEngineVersion":
36028
- '''Version "15.5".'''
36115
+ '''(deprecated) Version "15.5".
36116
+
36117
+ :deprecated: PostgreSQL 15.5 is no longer supported by Amazon RDS
36118
+
36119
+ :stability: deprecated
36120
+ '''
36029
36121
  return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_15_5"))
36030
36122
 
36031
36123
  @jsii.python.classproperty
36032
36124
  @jsii.member(jsii_name="VER_15_6")
36033
36125
  def VER_15_6(cls) -> "PostgresEngineVersion":
36034
- '''Version "15.6".'''
36126
+ '''(deprecated) Version "15.6".
36127
+
36128
+ :deprecated: PostgreSQL 15.6 is no longer supported by Amazon RDS
36129
+
36130
+ :stability: deprecated
36131
+ '''
36035
36132
  return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_15_6"))
36036
36133
 
36037
36134
  @jsii.python.classproperty
@@ -36061,13 +36158,23 @@ class PostgresEngineVersion(
36061
36158
  @jsii.python.classproperty
36062
36159
  @jsii.member(jsii_name="VER_16_1")
36063
36160
  def VER_16_1(cls) -> "PostgresEngineVersion":
36064
- '''Version "16.1".'''
36161
+ '''(deprecated) Version "16.1".
36162
+
36163
+ :deprecated: PostgreSQL 16.1 is no longer supported by Amazon RDS
36164
+
36165
+ :stability: deprecated
36166
+ '''
36065
36167
  return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_16_1"))
36066
36168
 
36067
36169
  @jsii.python.classproperty
36068
36170
  @jsii.member(jsii_name="VER_16_2")
36069
36171
  def VER_16_2(cls) -> "PostgresEngineVersion":
36070
- '''Version "16.2".'''
36172
+ '''(deprecated) Version "16.2".
36173
+
36174
+ :deprecated: PostgreSQL 16.2 is no longer supported by Amazon RDS
36175
+
36176
+ :stability: deprecated
36177
+ '''
36071
36178
  return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_16_2"))
36072
36179
 
36073
36180
  @jsii.python.classproperty
@@ -5122,7 +5122,7 @@ class CfnIntegration(
5122
5122
  metaclass=jsii.JSIIMeta,
5123
5123
  jsii_type="aws-cdk-lib.aws_redshift.CfnIntegration",
5124
5124
  ):
5125
- '''Describes a zero-ETL integration.
5125
+ '''Describes a zero-ETL or S3 integration.
5126
5126
 
5127
5127
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-integration.html
5128
5128
  :cloudformationResource: AWS::Redshift::Integration
@@ -5168,9 +5168,9 @@ class CfnIntegration(
5168
5168
  :param id: Construct identifier for this resource (unique in its scope).
5169
5169
  :param source_arn: The Amazon Resource Name (ARN) of the database used as the source for replication.
5170
5170
  :param target_arn: The Amazon Resource Name (ARN) of the Amazon Redshift data warehouse to use as the target for replication.
5171
- :param additional_encryption_context: The encryption context for the integration. For more information, see `Encryption context <https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context>`_ in the *AWS Key Management Service Developer Guide* .
5171
+ :param additional_encryption_context: The encryption context for the integration. For more information, see `Encryption context <https://docs.aws.amazon.com/>`_ in the *AWS Key Management Service Developer Guide* .
5172
5172
  :param integration_name: The name of the integration.
5173
- :param kms_key_id: The AWS Key Management Service ( AWS KMS ) key identifier for the key used to encrypt the integration.
5173
+ :param kms_key_id: The AWS Key Management Service ( AWS KMS) key identifier for the key used to encrypt the integration.
5174
5174
  :param tags: The list of tags associated with the integration.
5175
5175
  '''
5176
5176
  if __debug__:
@@ -5307,7 +5307,7 @@ class CfnIntegration(
5307
5307
  @builtins.property
5308
5308
  @jsii.member(jsii_name="kmsKeyId")
5309
5309
  def kms_key_id(self) -> typing.Optional[builtins.str]:
5310
- '''The AWS Key Management Service ( AWS KMS ) key identifier for the key used to encrypt the integration.'''
5310
+ '''The AWS Key Management Service ( AWS KMS) key identifier for the key used to encrypt the integration.'''
5311
5311
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "kmsKeyId"))
5312
5312
 
5313
5313
  @kms_key_id.setter
@@ -5358,9 +5358,9 @@ class CfnIntegrationProps:
5358
5358
 
5359
5359
  :param source_arn: The Amazon Resource Name (ARN) of the database used as the source for replication.
5360
5360
  :param target_arn: The Amazon Resource Name (ARN) of the Amazon Redshift data warehouse to use as the target for replication.
5361
- :param additional_encryption_context: The encryption context for the integration. For more information, see `Encryption context <https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context>`_ in the *AWS Key Management Service Developer Guide* .
5361
+ :param additional_encryption_context: The encryption context for the integration. For more information, see `Encryption context <https://docs.aws.amazon.com/>`_ in the *AWS Key Management Service Developer Guide* .
5362
5362
  :param integration_name: The name of the integration.
5363
- :param kms_key_id: The AWS Key Management Service ( AWS KMS ) key identifier for the key used to encrypt the integration.
5363
+ :param kms_key_id: The AWS Key Management Service ( AWS KMS) key identifier for the key used to encrypt the integration.
5364
5364
  :param tags: The list of tags associated with the integration.
5365
5365
 
5366
5366
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-integration.html
@@ -5435,7 +5435,7 @@ class CfnIntegrationProps:
5435
5435
  ) -> typing.Optional[typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b]]:
5436
5436
  '''The encryption context for the integration.
5437
5437
 
5438
- For more information, see `Encryption context <https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context>`_ in the *AWS Key Management Service Developer Guide* .
5438
+ For more information, see `Encryption context <https://docs.aws.amazon.com/>`_ in the *AWS Key Management Service Developer Guide* .
5439
5439
 
5440
5440
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-integration.html#cfn-redshift-integration-additionalencryptioncontext
5441
5441
  '''
@@ -5453,7 +5453,7 @@ class CfnIntegrationProps:
5453
5453
 
5454
5454
  @builtins.property
5455
5455
  def kms_key_id(self) -> typing.Optional[builtins.str]:
5456
- '''The AWS Key Management Service ( AWS KMS ) key identifier for the key used to encrypt the integration.
5456
+ '''The AWS Key Management Service ( AWS KMS) key identifier for the key used to encrypt the integration.
5457
5457
 
5458
5458
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-integration.html#cfn-redshift-integration-kmskeyid
5459
5459
  '''
@@ -19913,8 +19913,11 @@ class CfnModel(
19913
19913
  )
19914
19914
  class HubAccessConfigProperty:
19915
19915
  def __init__(self, *, hub_content_arn: builtins.str) -> None:
19916
- '''
19917
- :param hub_content_arn:
19916
+ '''The configuration for a private hub model reference that points to a public SageMaker JumpStart model.
19917
+
19918
+ For more information about private hubs, see `Private curated hubs for foundation model access control in JumpStart <https://docs.aws.amazon.com/sagemaker/latest/dg/jumpstart-curated-hubs.html>`_ .
19919
+
19920
+ :param hub_content_arn: The ARN of your private model hub content. This should be a ``ModelReference`` resource type that points to a SageMaker JumpStart public hub model.
19918
19921
 
19919
19922
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-hubaccessconfig.html
19920
19923
  :exampleMetadata: fixture=_generated
@@ -19938,7 +19941,10 @@ class CfnModel(
19938
19941
 
19939
19942
  @builtins.property
19940
19943
  def hub_content_arn(self) -> builtins.str:
19941
- '''
19944
+ '''The ARN of your private model hub content.
19945
+
19946
+ This should be a ``ModelReference`` resource type that points to a SageMaker JumpStart public hub model.
19947
+
19942
19948
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-hubaccessconfig.html#cfn-sagemaker-model-hubaccessconfig-hubcontentarn
19943
19949
  '''
19944
19950
  result = self._values.get("hub_content_arn")
@@ -20378,7 +20384,7 @@ class CfnModel(
20378
20384
  :param compression_type:
20379
20385
  :param s3_data_type: If you choose ``S3Prefix`` , ``S3Uri`` identifies a key name prefix. SageMaker uses all objects that match the specified key name prefix for model training. If you choose ``ManifestFile`` , ``S3Uri`` identifies an object that is a manifest file containing a list of object keys that you want SageMaker to use for model training. If you choose ``AugmentedManifestFile`` , ``S3Uri`` identifies an object that is an augmented manifest file in JSON lines format. This file contains the data you want to use for model training. ``AugmentedManifestFile`` can only be used if the Channel's input mode is ``Pipe`` .
20380
20386
  :param s3_uri: Depending on the value specified for the ``S3DataType`` , identifies either a key name prefix or a manifest. For example: - A key name prefix might look like this: ``s3://bucketname/exampleprefix/`` - A manifest might look like this: ``s3://bucketname/example.manifest`` A manifest is an S3 object which is a JSON file consisting of an array of elements. The first element is a prefix which is followed by one or more suffixes. SageMaker appends the suffix elements to the prefix to get a full set of ``S3Uri`` . Note that the prefix must be a valid non-empty ``S3Uri`` that precludes users from specifying a manifest whose individual ``S3Uri`` is sourced from different S3 buckets. The following code example shows a valid manifest format: ``[ {"prefix": "s3://customer_bucket/some/prefix/"},`` ``"relative/path/to/custdata-1",`` ``"relative/path/custdata-2",`` ``...`` ``"relative/path/custdata-N"`` ``]`` This JSON is equivalent to the following ``S3Uri`` list: ``s3://customer_bucket/some/prefix/relative/path/to/custdata-1`` ``s3://customer_bucket/some/prefix/relative/path/custdata-2`` ``...`` ``s3://customer_bucket/some/prefix/relative/path/custdata-N`` The complete set of ``S3Uri`` in this manifest is the input data for the channel for this data source. The object that each ``S3Uri`` points to must be readable by the IAM role that SageMaker uses to perform tasks on your behalf. Your input bucket must be located in same AWS region as your training job.
20381
- :param hub_access_config:
20387
+ :param hub_access_config: The configuration for a private hub model reference that points to a SageMaker JumpStart public hub model.
20382
20388
  :param model_access_config:
20383
20389
 
20384
20390
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-s3datasource.html
@@ -20495,7 +20501,8 @@ class CfnModel(
20495
20501
  def hub_access_config(
20496
20502
  self,
20497
20503
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnModel.HubAccessConfigProperty"]]:
20498
- '''
20504
+ '''The configuration for a private hub model reference that points to a SageMaker JumpStart public hub model.
20505
+
20499
20506
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-s3datasource.html#cfn-sagemaker-model-s3datasource-hubaccessconfig
20500
20507
  '''
20501
20508
  result = self._values.get("hub_access_config")
@@ -355,6 +355,9 @@ class CfnDataLake(
355
355
  You can enable Security Lake in AWS Regions with customized settings before enabling log collection in Regions. To specify particular Regions, configure these Regions using the ``configurations`` parameter. If you have already enabled Security Lake in a Region when you call this command, the command will update the Region if you provide new configuration parameters. If you have not already enabled Security Lake in the Region when you call this API, it will set up the data lake in the Region with the specified configurations.
356
356
 
357
357
  When you enable Security Lake , it starts ingesting security data after the ``CreateAwsLogSource`` call. This includes ingesting security data from sources, storing data, and making data accessible to subscribers. Security Lake also enables all the existing settings and resources that it stores or maintains for your AWS account in the current Region, including security log and event data. For more information, see the `Amazon Security Lake User Guide <https://docs.aws.amazon.com//security-lake/latest/userguide/what-is-security-lake.html>`_ .
358
+ .. epigraph::
359
+
360
+ If you use this template to create multiple data lakes in different AWS Regions , and more than one of your data lakes include an `AWS::SecurityLake::AwsLogSource <https://docs.aws.amazon.com//AWSCloudFormation/latest/UserGuide/aws-resource-securitylake-awslogsource.html>`_ resource, then you must deploy these data lakes sequentially. This is required because data lakes operate globally, and ``AwsLogSource`` resources must be deployed one at a time.
358
361
 
359
362
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securitylake-datalake.html
360
363
  :cloudformationResource: AWS::SecurityLake::DataLake
@@ -1296,6 +1296,8 @@ class CfnCanary(
1296
1296
 
1297
1297
  Canaries are scripts that monitor your endpoints and APIs from the outside-in. Canaries help you check the availability and latency of your web services and troubleshoot anomalies by investigating load time data, screenshots of the UI, logs, and metrics. You can set up a canary to run continuously or just once.
1298
1298
 
1299
+ Canaries are automated scripts that run at specified intervals against an endpoint. They include Python or Node.js code to create a Lambda function. This code needs to be packaged in a certain way, depending on the language. For more information, see `Writing a canary script <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Canaries_WritingCanary.html>`_ .
1300
+
1299
1301
  To create canaries, you must have the ``CloudWatchSyntheticsFullAccess`` policy. If you are creating a new IAM role for the canary, you also need the the ``iam:CreateRole`` , ``iam:CreatePolicy`` and ``iam:AttachRolePolicy`` permissions. For more information, see `Necessary Roles and Permissions <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Canaries_Roles>`_ .
1300
1302
 
1301
1303
  Do not include secrets or proprietary information in your canary names. The canary name makes up part of the Amazon Resource Name (ARN) for the canary, and the ARN is included in outbound calls over the internet. For more information, see `Security Considerations for Synthetics Canaries <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/servicelens_canaries_security.html>`_ .