aws-cdk-lib 2.204.0__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 (48) hide show
  1. aws_cdk/__init__.py +170 -92
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.204.0.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_applicationautoscaling/__init__.py +2 -2
  6. aws_cdk/aws_arczonalshift/__init__.py +4 -1
  7. aws_cdk/aws_b2bi/__init__.py +32 -16
  8. aws_cdk/aws_bedrock/__init__.py +198 -10
  9. aws_cdk/aws_cassandra/__init__.py +156 -0
  10. aws_cdk/aws_cloudformation/__init__.py +74 -72
  11. aws_cdk/aws_cloudfront/__init__.py +1181 -485
  12. aws_cdk/aws_cloudfront_origins/__init__.py +26 -21
  13. aws_cdk/aws_cloudwatch/__init__.py +61 -0
  14. aws_cdk/aws_codebuild/__init__.py +216 -36
  15. aws_cdk/aws_datasync/__init__.py +2 -2
  16. aws_cdk/aws_docdb/__init__.py +78 -0
  17. aws_cdk/aws_dynamodb/__init__.py +207 -35
  18. aws_cdk/aws_ec2/__init__.py +32 -30
  19. aws_cdk/aws_ecs/__init__.py +12 -19
  20. aws_cdk/aws_emrserverless/__init__.py +5 -5
  21. aws_cdk/aws_events/__init__.py +58 -3
  22. aws_cdk/aws_events_targets/__init__.py +7 -2
  23. aws_cdk/aws_evs/__init__.py +7 -7
  24. aws_cdk/aws_fsx/__init__.py +138 -78
  25. aws_cdk/aws_gamelift/__init__.py +19 -0
  26. aws_cdk/aws_glue/__init__.py +3 -3
  27. aws_cdk/aws_iot/__init__.py +1 -1
  28. aws_cdk/aws_kinesis/__init__.py +67 -13
  29. aws_cdk/aws_kinesisfirehose/__init__.py +28 -1
  30. aws_cdk/aws_lex/__init__.py +36 -19
  31. aws_cdk/aws_neptune/__init__.py +12 -12
  32. aws_cdk/aws_odb/__init__.py +4049 -0
  33. aws_cdk/aws_omics/__init__.py +1 -1
  34. aws_cdk/aws_qbusiness/__init__.py +471 -4
  35. aws_cdk/aws_quicksight/__init__.py +185 -16
  36. aws_cdk/aws_rds/__init__.py +169 -17
  37. aws_cdk/aws_redshiftserverless/__init__.py +72 -45
  38. aws_cdk/aws_route53/__init__.py +41 -19
  39. aws_cdk/aws_s3tables/__init__.py +1005 -0
  40. aws_cdk/aws_sagemaker/__init__.py +20 -0
  41. aws_cdk/aws_synthetics/__init__.py +141 -37
  42. aws_cdk/aws_transfer/__init__.py +23 -1
  43. {aws_cdk_lib-2.204.0.dist-info → aws_cdk_lib-2.205.0.dist-info}/METADATA +1 -1
  44. {aws_cdk_lib-2.204.0.dist-info → aws_cdk_lib-2.205.0.dist-info}/RECORD +48 -47
  45. {aws_cdk_lib-2.204.0.dist-info → aws_cdk_lib-2.205.0.dist-info}/LICENSE +0 -0
  46. {aws_cdk_lib-2.204.0.dist-info → aws_cdk_lib-2.205.0.dist-info}/NOTICE +0 -0
  47. {aws_cdk_lib-2.204.0.dist-info → aws_cdk_lib-2.205.0.dist-info}/WHEEL +0 -0
  48. {aws_cdk_lib-2.204.0.dist-info → aws_cdk_lib-2.205.0.dist-info}/top_level.txt +0 -0
@@ -566,11 +566,13 @@ class CfnDBCluster(
566
566
  deletion_protection=False,
567
567
  enable_cloudwatch_logs_exports=["enableCloudwatchLogsExports"],
568
568
  engine_version="engineVersion",
569
+ global_cluster_identifier="globalClusterIdentifier",
569
570
  kms_key_id="kmsKeyId",
570
571
  manage_master_user_password=False,
571
572
  master_username="masterUsername",
572
573
  master_user_password="masterUserPassword",
573
574
  master_user_secret_kms_key_id="masterUserSecretKmsKeyId",
575
+ network_type="networkType",
574
576
  port=123,
575
577
  preferred_backup_window="preferredBackupWindow",
576
578
  preferred_maintenance_window="preferredMaintenanceWindow",
@@ -608,11 +610,13 @@ class CfnDBCluster(
608
610
  deletion_protection: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
609
611
  enable_cloudwatch_logs_exports: typing.Optional[typing.Sequence[builtins.str]] = None,
610
612
  engine_version: typing.Optional[builtins.str] = None,
613
+ global_cluster_identifier: typing.Optional[builtins.str] = None,
611
614
  kms_key_id: typing.Optional[builtins.str] = None,
612
615
  manage_master_user_password: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
613
616
  master_username: typing.Optional[builtins.str] = None,
614
617
  master_user_password: typing.Optional[builtins.str] = None,
615
618
  master_user_secret_kms_key_id: typing.Optional[builtins.str] = None,
619
+ network_type: typing.Optional[builtins.str] = None,
616
620
  port: typing.Optional[jsii.Number] = None,
617
621
  preferred_backup_window: typing.Optional[builtins.str] = None,
618
622
  preferred_maintenance_window: typing.Optional[builtins.str] = None,
@@ -640,11 +644,13 @@ class CfnDBCluster(
640
644
  :param deletion_protection: Protects clusters from being accidentally deleted. If enabled, the cluster cannot be deleted unless it is modified and ``DeletionProtection`` is disabled.
641
645
  :param enable_cloudwatch_logs_exports: The list of log types that need to be enabled for exporting to Amazon CloudWatch Logs. You can enable audit logs or profiler logs. For more information, see `Auditing Amazon DocumentDB Events <https://docs.aws.amazon.com/documentdb/latest/developerguide/event-auditing.html>`_ and `Profiling Amazon DocumentDB Operations <https://docs.aws.amazon.com/documentdb/latest/developerguide/profiling.html>`_ .
642
646
  :param engine_version: The version number of the database engine to use. The ``--engine-version`` will default to the latest major engine version. For production workloads, we recommend explicitly declaring this parameter with the intended major engine version. If you intend to trigger an in-place upgrade, please refer to `Amazon DocumentDB in-place major version upgrade <https://docs.aws.amazon.com/documentdb/latest/developerguide/docdb-mvu.html>`_ . Note that for an in-place engine version upgrade, you need to remove other cluster properties changes (e.g. SecurityGroupId) from the CFN template.
647
+ :param global_cluster_identifier:
643
648
  :param kms_key_id: The AWS KMS key identifier for an encrypted cluster. The AWS KMS key identifier is the Amazon Resource Name (ARN) for the AWS KMS encryption key. If you are creating a cluster using the same AWS account that owns the AWS KMS encryption key that is used to encrypt the new cluster, you can use the AWS KMS key alias instead of the ARN for the AWS KMS encryption key. If an encryption key is not specified in ``KmsKeyId`` : - If the ``StorageEncrypted`` parameter is ``true`` , Amazon DocumentDB uses your default encryption key. AWS KMS creates the default encryption key for your AWS account . Your AWS account has a different default encryption key for each AWS Regions .
644
649
  :param manage_master_user_password: Specifies whether to manage the master user password with Amazon Web Services Secrets Manager. Constraint: You can't manage the master user password with Amazon Web Services Secrets Manager if ``MasterUserPassword`` is specified.
645
650
  :param master_username: The name of the master user for the cluster. Constraints: - Must be from 1 to 63 letters or numbers. - The first character must be a letter. - Cannot be a reserved word for the chosen database engine.
646
651
  :param master_user_password: The password for the master database user. This password can contain any printable ASCII character except forward slash (/), double quote ("), or the "at" symbol (@). Constraints: Must contain from 8 to 100 characters.
647
652
  :param master_user_secret_kms_key_id: The Amazon Web Services KMS key identifier to encrypt a secret that is automatically generated and managed in Amazon Web Services Secrets Manager. This setting is valid only if the master user password is managed by Amazon DocumentDB in Amazon Web Services Secrets Manager for the DB cluster. The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN. If you don't specify ``MasterUserSecretKmsKeyId`` , then the ``aws/secretsmanager`` KMS key is used to encrypt the secret. If the secret is in a different Amazon Web Services account, then you can't use the ``aws/secretsmanager`` KMS key to encrypt the secret, and you must use a customer managed KMS key. There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.
653
+ :param network_type:
648
654
  :param port: Specifies the port that the database engine is listening on.
649
655
  :param preferred_backup_window: The daily time range during which automated backups are created if automated backups are enabled using the ``BackupRetentionPeriod`` parameter. The default is a 30-minute window selected at random from an 8-hour block of time for each AWS Region . Constraints: - Must be in the format ``hh24:mi-hh24:mi`` . - Must be in Universal Coordinated Time (UTC). - Must not conflict with the preferred maintenance window. - Must be at least 30 minutes.
650
656
  :param preferred_maintenance_window: The weekly time range during which system maintenance can occur, in Universal Coordinated Time (UTC). Format: ``ddd:hh24:mi-ddd:hh24:mi`` The default is a 30-minute window selected at random from an 8-hour block of time for each AWS Region , occurring on a random day of the week. Valid days: Mon, Tue, Wed, Thu, Fri, Sat, Sun Constraints: Minimum 30-minute window.
@@ -674,11 +680,13 @@ class CfnDBCluster(
674
680
  deletion_protection=deletion_protection,
675
681
  enable_cloudwatch_logs_exports=enable_cloudwatch_logs_exports,
676
682
  engine_version=engine_version,
683
+ global_cluster_identifier=global_cluster_identifier,
677
684
  kms_key_id=kms_key_id,
678
685
  manage_master_user_password=manage_master_user_password,
679
686
  master_username=master_username,
680
687
  master_user_password=master_user_password,
681
688
  master_user_secret_kms_key_id=master_user_secret_kms_key_id,
689
+ network_type=network_type,
682
690
  port=port,
683
691
  preferred_backup_window=preferred_backup_window,
684
692
  preferred_maintenance_window=preferred_maintenance_window,
@@ -932,6 +940,18 @@ class CfnDBCluster(
932
940
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
933
941
  jsii.set(self, "engineVersion", value) # pyright: ignore[reportArgumentType]
934
942
 
943
+ @builtins.property
944
+ @jsii.member(jsii_name="globalClusterIdentifier")
945
+ def global_cluster_identifier(self) -> typing.Optional[builtins.str]:
946
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "globalClusterIdentifier"))
947
+
948
+ @global_cluster_identifier.setter
949
+ def global_cluster_identifier(self, value: typing.Optional[builtins.str]) -> None:
950
+ if __debug__:
951
+ type_hints = typing.get_type_hints(_typecheckingstub__1df18874740f7d79670e3866720fac8967c1b52aced5a089132ee06a94fd72d2)
952
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
953
+ jsii.set(self, "globalClusterIdentifier", value) # pyright: ignore[reportArgumentType]
954
+
935
955
  @builtins.property
936
956
  @jsii.member(jsii_name="kmsKeyId")
937
957
  def kms_key_id(self) -> typing.Optional[builtins.str]:
@@ -1005,6 +1025,18 @@ class CfnDBCluster(
1005
1025
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1006
1026
  jsii.set(self, "masterUserSecretKmsKeyId", value) # pyright: ignore[reportArgumentType]
1007
1027
 
1028
+ @builtins.property
1029
+ @jsii.member(jsii_name="networkType")
1030
+ def network_type(self) -> typing.Optional[builtins.str]:
1031
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "networkType"))
1032
+
1033
+ @network_type.setter
1034
+ def network_type(self, value: typing.Optional[builtins.str]) -> None:
1035
+ if __debug__:
1036
+ type_hints = typing.get_type_hints(_typecheckingstub__79c741f6d8f922d19130884d7c02ab03431fc05781cc91b8ec5ac23e2ecd06e2)
1037
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1038
+ jsii.set(self, "networkType", value) # pyright: ignore[reportArgumentType]
1039
+
1008
1040
  @builtins.property
1009
1041
  @jsii.member(jsii_name="port")
1010
1042
  def port(self) -> typing.Optional[jsii.Number]:
@@ -1630,11 +1662,13 @@ class CfnDBClusterParameterGroupProps:
1630
1662
  "deletion_protection": "deletionProtection",
1631
1663
  "enable_cloudwatch_logs_exports": "enableCloudwatchLogsExports",
1632
1664
  "engine_version": "engineVersion",
1665
+ "global_cluster_identifier": "globalClusterIdentifier",
1633
1666
  "kms_key_id": "kmsKeyId",
1634
1667
  "manage_master_user_password": "manageMasterUserPassword",
1635
1668
  "master_username": "masterUsername",
1636
1669
  "master_user_password": "masterUserPassword",
1637
1670
  "master_user_secret_kms_key_id": "masterUserSecretKmsKeyId",
1671
+ "network_type": "networkType",
1638
1672
  "port": "port",
1639
1673
  "preferred_backup_window": "preferredBackupWindow",
1640
1674
  "preferred_maintenance_window": "preferredMaintenanceWindow",
@@ -1664,11 +1698,13 @@ class CfnDBClusterProps:
1664
1698
  deletion_protection: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
1665
1699
  enable_cloudwatch_logs_exports: typing.Optional[typing.Sequence[builtins.str]] = None,
1666
1700
  engine_version: typing.Optional[builtins.str] = None,
1701
+ global_cluster_identifier: typing.Optional[builtins.str] = None,
1667
1702
  kms_key_id: typing.Optional[builtins.str] = None,
1668
1703
  manage_master_user_password: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
1669
1704
  master_username: typing.Optional[builtins.str] = None,
1670
1705
  master_user_password: typing.Optional[builtins.str] = None,
1671
1706
  master_user_secret_kms_key_id: typing.Optional[builtins.str] = None,
1707
+ network_type: typing.Optional[builtins.str] = None,
1672
1708
  port: typing.Optional[jsii.Number] = None,
1673
1709
  preferred_backup_window: typing.Optional[builtins.str] = None,
1674
1710
  preferred_maintenance_window: typing.Optional[builtins.str] = None,
@@ -1695,11 +1731,13 @@ class CfnDBClusterProps:
1695
1731
  :param deletion_protection: Protects clusters from being accidentally deleted. If enabled, the cluster cannot be deleted unless it is modified and ``DeletionProtection`` is disabled.
1696
1732
  :param enable_cloudwatch_logs_exports: The list of log types that need to be enabled for exporting to Amazon CloudWatch Logs. You can enable audit logs or profiler logs. For more information, see `Auditing Amazon DocumentDB Events <https://docs.aws.amazon.com/documentdb/latest/developerguide/event-auditing.html>`_ and `Profiling Amazon DocumentDB Operations <https://docs.aws.amazon.com/documentdb/latest/developerguide/profiling.html>`_ .
1697
1733
  :param engine_version: The version number of the database engine to use. The ``--engine-version`` will default to the latest major engine version. For production workloads, we recommend explicitly declaring this parameter with the intended major engine version. If you intend to trigger an in-place upgrade, please refer to `Amazon DocumentDB in-place major version upgrade <https://docs.aws.amazon.com/documentdb/latest/developerguide/docdb-mvu.html>`_ . Note that for an in-place engine version upgrade, you need to remove other cluster properties changes (e.g. SecurityGroupId) from the CFN template.
1734
+ :param global_cluster_identifier:
1698
1735
  :param kms_key_id: The AWS KMS key identifier for an encrypted cluster. The AWS KMS key identifier is the Amazon Resource Name (ARN) for the AWS KMS encryption key. If you are creating a cluster using the same AWS account that owns the AWS KMS encryption key that is used to encrypt the new cluster, you can use the AWS KMS key alias instead of the ARN for the AWS KMS encryption key. If an encryption key is not specified in ``KmsKeyId`` : - If the ``StorageEncrypted`` parameter is ``true`` , Amazon DocumentDB uses your default encryption key. AWS KMS creates the default encryption key for your AWS account . Your AWS account has a different default encryption key for each AWS Regions .
1699
1736
  :param manage_master_user_password: Specifies whether to manage the master user password with Amazon Web Services Secrets Manager. Constraint: You can't manage the master user password with Amazon Web Services Secrets Manager if ``MasterUserPassword`` is specified.
1700
1737
  :param master_username: The name of the master user for the cluster. Constraints: - Must be from 1 to 63 letters or numbers. - The first character must be a letter. - Cannot be a reserved word for the chosen database engine.
1701
1738
  :param master_user_password: The password for the master database user. This password can contain any printable ASCII character except forward slash (/), double quote ("), or the "at" symbol (@). Constraints: Must contain from 8 to 100 characters.
1702
1739
  :param master_user_secret_kms_key_id: The Amazon Web Services KMS key identifier to encrypt a secret that is automatically generated and managed in Amazon Web Services Secrets Manager. This setting is valid only if the master user password is managed by Amazon DocumentDB in Amazon Web Services Secrets Manager for the DB cluster. The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN. If you don't specify ``MasterUserSecretKmsKeyId`` , then the ``aws/secretsmanager`` KMS key is used to encrypt the secret. If the secret is in a different Amazon Web Services account, then you can't use the ``aws/secretsmanager`` KMS key to encrypt the secret, and you must use a customer managed KMS key. There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.
1740
+ :param network_type:
1703
1741
  :param port: Specifies the port that the database engine is listening on.
1704
1742
  :param preferred_backup_window: The daily time range during which automated backups are created if automated backups are enabled using the ``BackupRetentionPeriod`` parameter. The default is a 30-minute window selected at random from an 8-hour block of time for each AWS Region . Constraints: - Must be in the format ``hh24:mi-hh24:mi`` . - Must be in Universal Coordinated Time (UTC). - Must not conflict with the preferred maintenance window. - Must be at least 30 minutes.
1705
1743
  :param preferred_maintenance_window: The weekly time range during which system maintenance can occur, in Universal Coordinated Time (UTC). Format: ``ddd:hh24:mi-ddd:hh24:mi`` The default is a 30-minute window selected at random from an 8-hour block of time for each AWS Region , occurring on a random day of the week. Valid days: Mon, Tue, Wed, Thu, Fri, Sat, Sun Constraints: Minimum 30-minute window.
@@ -1734,11 +1772,13 @@ class CfnDBClusterProps:
1734
1772
  deletion_protection=False,
1735
1773
  enable_cloudwatch_logs_exports=["enableCloudwatchLogsExports"],
1736
1774
  engine_version="engineVersion",
1775
+ global_cluster_identifier="globalClusterIdentifier",
1737
1776
  kms_key_id="kmsKeyId",
1738
1777
  manage_master_user_password=False,
1739
1778
  master_username="masterUsername",
1740
1779
  master_user_password="masterUserPassword",
1741
1780
  master_user_secret_kms_key_id="masterUserSecretKmsKeyId",
1781
+ network_type="networkType",
1742
1782
  port=123,
1743
1783
  preferred_backup_window="preferredBackupWindow",
1744
1784
  preferred_maintenance_window="preferredMaintenanceWindow",
@@ -1772,11 +1812,13 @@ class CfnDBClusterProps:
1772
1812
  check_type(argname="argument deletion_protection", value=deletion_protection, expected_type=type_hints["deletion_protection"])
1773
1813
  check_type(argname="argument enable_cloudwatch_logs_exports", value=enable_cloudwatch_logs_exports, expected_type=type_hints["enable_cloudwatch_logs_exports"])
1774
1814
  check_type(argname="argument engine_version", value=engine_version, expected_type=type_hints["engine_version"])
1815
+ check_type(argname="argument global_cluster_identifier", value=global_cluster_identifier, expected_type=type_hints["global_cluster_identifier"])
1775
1816
  check_type(argname="argument kms_key_id", value=kms_key_id, expected_type=type_hints["kms_key_id"])
1776
1817
  check_type(argname="argument manage_master_user_password", value=manage_master_user_password, expected_type=type_hints["manage_master_user_password"])
1777
1818
  check_type(argname="argument master_username", value=master_username, expected_type=type_hints["master_username"])
1778
1819
  check_type(argname="argument master_user_password", value=master_user_password, expected_type=type_hints["master_user_password"])
1779
1820
  check_type(argname="argument master_user_secret_kms_key_id", value=master_user_secret_kms_key_id, expected_type=type_hints["master_user_secret_kms_key_id"])
1821
+ check_type(argname="argument network_type", value=network_type, expected_type=type_hints["network_type"])
1780
1822
  check_type(argname="argument port", value=port, expected_type=type_hints["port"])
1781
1823
  check_type(argname="argument preferred_backup_window", value=preferred_backup_window, expected_type=type_hints["preferred_backup_window"])
1782
1824
  check_type(argname="argument preferred_maintenance_window", value=preferred_maintenance_window, expected_type=type_hints["preferred_maintenance_window"])
@@ -1810,6 +1852,8 @@ class CfnDBClusterProps:
1810
1852
  self._values["enable_cloudwatch_logs_exports"] = enable_cloudwatch_logs_exports
1811
1853
  if engine_version is not None:
1812
1854
  self._values["engine_version"] = engine_version
1855
+ if global_cluster_identifier is not None:
1856
+ self._values["global_cluster_identifier"] = global_cluster_identifier
1813
1857
  if kms_key_id is not None:
1814
1858
  self._values["kms_key_id"] = kms_key_id
1815
1859
  if manage_master_user_password is not None:
@@ -1820,6 +1864,8 @@ class CfnDBClusterProps:
1820
1864
  self._values["master_user_password"] = master_user_password
1821
1865
  if master_user_secret_kms_key_id is not None:
1822
1866
  self._values["master_user_secret_kms_key_id"] = master_user_secret_kms_key_id
1867
+ if network_type is not None:
1868
+ self._values["network_type"] = network_type
1823
1869
  if port is not None:
1824
1870
  self._values["port"] = port
1825
1871
  if preferred_backup_window is not None:
@@ -1964,6 +2010,14 @@ class CfnDBClusterProps:
1964
2010
  result = self._values.get("engine_version")
1965
2011
  return typing.cast(typing.Optional[builtins.str], result)
1966
2012
 
2013
+ @builtins.property
2014
+ def global_cluster_identifier(self) -> typing.Optional[builtins.str]:
2015
+ '''
2016
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-globalclusteridentifier
2017
+ '''
2018
+ result = self._values.get("global_cluster_identifier")
2019
+ return typing.cast(typing.Optional[builtins.str], result)
2020
+
1967
2021
  @builtins.property
1968
2022
  def kms_key_id(self) -> typing.Optional[builtins.str]:
1969
2023
  '''The AWS KMS key identifier for an encrypted cluster.
@@ -2039,6 +2093,14 @@ class CfnDBClusterProps:
2039
2093
  result = self._values.get("master_user_secret_kms_key_id")
2040
2094
  return typing.cast(typing.Optional[builtins.str], result)
2041
2095
 
2096
+ @builtins.property
2097
+ def network_type(self) -> typing.Optional[builtins.str]:
2098
+ '''
2099
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-networktype
2100
+ '''
2101
+ result = self._values.get("network_type")
2102
+ return typing.cast(typing.Optional[builtins.str], result)
2103
+
2042
2104
  @builtins.property
2043
2105
  def port(self) -> typing.Optional[jsii.Number]:
2044
2106
  '''Specifies the port that the database engine is listening on.
@@ -5854,11 +5916,13 @@ def _typecheckingstub__7db61dc80f26049d79a38255d8a0b3abaf4b5019d7cbed64c937ec0f3
5854
5916
  deletion_protection: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
5855
5917
  enable_cloudwatch_logs_exports: typing.Optional[typing.Sequence[builtins.str]] = None,
5856
5918
  engine_version: typing.Optional[builtins.str] = None,
5919
+ global_cluster_identifier: typing.Optional[builtins.str] = None,
5857
5920
  kms_key_id: typing.Optional[builtins.str] = None,
5858
5921
  manage_master_user_password: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
5859
5922
  master_username: typing.Optional[builtins.str] = None,
5860
5923
  master_user_password: typing.Optional[builtins.str] = None,
5861
5924
  master_user_secret_kms_key_id: typing.Optional[builtins.str] = None,
5925
+ network_type: typing.Optional[builtins.str] = None,
5862
5926
  port: typing.Optional[jsii.Number] = None,
5863
5927
  preferred_backup_window: typing.Optional[builtins.str] = None,
5864
5928
  preferred_maintenance_window: typing.Optional[builtins.str] = None,
@@ -5943,6 +6007,12 @@ def _typecheckingstub__a6c3f347d46adbb72bedc7428b15c6469cfe26cf4f30488e8abd2f8f2
5943
6007
  """Type checking stubs"""
5944
6008
  pass
5945
6009
 
6010
+ def _typecheckingstub__1df18874740f7d79670e3866720fac8967c1b52aced5a089132ee06a94fd72d2(
6011
+ value: typing.Optional[builtins.str],
6012
+ ) -> None:
6013
+ """Type checking stubs"""
6014
+ pass
6015
+
5946
6016
  def _typecheckingstub__03e9375b32d036932973e964a270516d21d155bd0db4369d824ccb7e7f0bdc62(
5947
6017
  value: typing.Optional[builtins.str],
5948
6018
  ) -> None:
@@ -5973,6 +6043,12 @@ def _typecheckingstub__3a1df2c9ac1f613c512469d693487a300c74230885d5e260bf5ada301
5973
6043
  """Type checking stubs"""
5974
6044
  pass
5975
6045
 
6046
+ def _typecheckingstub__79c741f6d8f922d19130884d7c02ab03431fc05781cc91b8ec5ac23e2ecd06e2(
6047
+ value: typing.Optional[builtins.str],
6048
+ ) -> None:
6049
+ """Type checking stubs"""
6050
+ pass
6051
+
5976
6052
  def _typecheckingstub__a09b878a6d8b852d7eb17f26dcd8f718779776e12f67987303b1e944b3a40516(
5977
6053
  value: typing.Optional[jsii.Number],
5978
6054
  ) -> None:
@@ -6142,11 +6218,13 @@ def _typecheckingstub__9e1a4213f95bc5df31b056bdc5858ecdc49954b349d7a647b8775edf5
6142
6218
  deletion_protection: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
6143
6219
  enable_cloudwatch_logs_exports: typing.Optional[typing.Sequence[builtins.str]] = None,
6144
6220
  engine_version: typing.Optional[builtins.str] = None,
6221
+ global_cluster_identifier: typing.Optional[builtins.str] = None,
6145
6222
  kms_key_id: typing.Optional[builtins.str] = None,
6146
6223
  manage_master_user_password: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
6147
6224
  master_username: typing.Optional[builtins.str] = None,
6148
6225
  master_user_password: typing.Optional[builtins.str] = None,
6149
6226
  master_user_secret_kms_key_id: typing.Optional[builtins.str] = None,
6227
+ network_type: typing.Optional[builtins.str] = None,
6150
6228
  port: typing.Optional[jsii.Number] = None,
6151
6229
  preferred_backup_window: typing.Optional[builtins.str] = None,
6152
6230
  preferred_maintenance_window: typing.Optional[builtins.str] = None,