cdk-dms-replication 0.2.7__tar.gz → 0.2.9__tar.gz

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.
Files changed (17) hide show
  1. {cdk_dms_replication-0.2.7/src/cdk_dms_replication.egg-info → cdk_dms_replication-0.2.9}/PKG-INFO +2 -2
  2. {cdk_dms_replication-0.2.7 → cdk_dms_replication-0.2.9}/setup.py +3 -3
  3. {cdk_dms_replication-0.2.7 → cdk_dms_replication-0.2.9}/src/cdk_dms_replication/__init__.py +69 -69
  4. {cdk_dms_replication-0.2.7 → cdk_dms_replication-0.2.9}/src/cdk_dms_replication/_jsii/__init__.py +3 -3
  5. cdk_dms_replication-0.2.9/src/cdk_dms_replication/_jsii/cdk-dms-replication@0.2.9.jsii.tgz +0 -0
  6. {cdk_dms_replication-0.2.7 → cdk_dms_replication-0.2.9/src/cdk_dms_replication.egg-info}/PKG-INFO +2 -2
  7. {cdk_dms_replication-0.2.7 → cdk_dms_replication-0.2.9}/src/cdk_dms_replication.egg-info/SOURCES.txt +1 -1
  8. {cdk_dms_replication-0.2.7 → cdk_dms_replication-0.2.9}/src/cdk_dms_replication.egg-info/requires.txt +1 -1
  9. cdk_dms_replication-0.2.7/src/cdk_dms_replication/_jsii/cdk-dms-replication@0.2.7.jsii.tgz +0 -0
  10. {cdk_dms_replication-0.2.7 → cdk_dms_replication-0.2.9}/LICENSE +0 -0
  11. {cdk_dms_replication-0.2.7 → cdk_dms_replication-0.2.9}/MANIFEST.in +0 -0
  12. {cdk_dms_replication-0.2.7 → cdk_dms_replication-0.2.9}/README.md +0 -0
  13. {cdk_dms_replication-0.2.7 → cdk_dms_replication-0.2.9}/pyproject.toml +0 -0
  14. {cdk_dms_replication-0.2.7 → cdk_dms_replication-0.2.9}/setup.cfg +0 -0
  15. {cdk_dms_replication-0.2.7 → cdk_dms_replication-0.2.9}/src/cdk_dms_replication/py.typed +0 -0
  16. {cdk_dms_replication-0.2.7 → cdk_dms_replication-0.2.9}/src/cdk_dms_replication.egg-info/dependency_links.txt +0 -0
  17. {cdk_dms_replication-0.2.7 → cdk_dms_replication-0.2.9}/src/cdk_dms_replication.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cdk-dms-replication
3
- Version: 0.2.7
3
+ Version: 0.2.9
4
4
  Summary: L3 CDK Constructs for Amazon Database Migration Service (DMS) — pattern construct bundling replication instance, endpoints, and tasks with secure defaults.
5
5
  Home-page: https://github.com/kckempf/cdk-dms-replication#readme
6
6
  Author: Kevin Kempf<kckempf@gmail.com>
@@ -23,7 +23,7 @@ Description-Content-Type: text/markdown
23
23
  License-File: LICENSE
24
24
  Requires-Dist: aws-cdk-lib<3.0.0,>=2.100.0
25
25
  Requires-Dist: constructs<11.0.0,>=10.5.1
26
- Requires-Dist: jsii<2.0.0,>=1.137.0
26
+ Requires-Dist: jsii<2.0.0,>=1.138.0
27
27
  Requires-Dist: publication>=0.0.3
28
28
 
29
29
  # cdk-dms-replication
@@ -5,7 +5,7 @@ kwargs = json.loads(
5
5
  """
6
6
  {
7
7
  "name": "cdk-dms-replication",
8
- "version": "0.2.7",
8
+ "version": "0.2.9",
9
9
  "description": "L3 CDK Constructs for Amazon Database Migration Service (DMS) — pattern construct bundling replication instance, endpoints, and tasks with secure defaults.",
10
10
  "license": "Apache-2.0",
11
11
  "url": "https://github.com/kckempf/cdk-dms-replication#readme",
@@ -26,7 +26,7 @@ kwargs = json.loads(
26
26
  ],
27
27
  "package_data": {
28
28
  "cdk_dms_replication._jsii": [
29
- "cdk-dms-replication@0.2.7.jsii.tgz"
29
+ "cdk-dms-replication@0.2.9.jsii.tgz"
30
30
  ],
31
31
  "cdk_dms_replication": [
32
32
  "py.typed"
@@ -36,7 +36,7 @@ kwargs = json.loads(
36
36
  "install_requires": [
37
37
  "aws-cdk-lib>=2.100.0, <3.0.0",
38
38
  "constructs>=10.5.1, <11.0.0",
39
- "jsii>=1.137.0, <2.0.0",
39
+ "jsii>=1.138.0, <2.0.0",
40
40
  "publication>=0.0.3"
41
41
  ],
42
42
  "classifiers": [
@@ -983,7 +983,7 @@ import jsii
983
983
  import publication
984
984
  import typing_extensions
985
985
 
986
- from jsii._type_checking import check_type
986
+ from jsii._type_checking import cached_type_hints, check_type
987
987
 
988
988
 
989
989
  from ._jsii import *
@@ -1052,7 +1052,7 @@ class AddColumnDefinition:
1052
1052
  :param expression: DMS expression to populate the column (e.g. ``$timestamp``, ``'ENTITY#' || $id``, or an unquoted numeric literal like ``42``). Exactly one of ``columnValue`` or ``expression`` must be set.
1053
1053
  '''
1054
1054
  if __debug__:
1055
- type_hints = typing.get_type_hints(_typecheckingstub__d1f4d3d840dc5d44fd7b0e74d99e3c5b716b043090bf0969f54ae9d39e567da2)
1055
+ type_hints = cached_type_hints(_typecheckingstub__d1f4d3d840dc5d44fd7b0e74d99e3c5b716b043090bf0969f54ae9d39e567da2)
1056
1056
  check_type(argname="argument column_name", value=column_name, expected_type=type_hints["column_name"])
1057
1057
  check_type(argname="argument column_type", value=column_type, expected_type=type_hints["column_type"])
1058
1058
  check_type(argname="argument column_length", value=column_length, expected_type=type_hints["column_length"])
@@ -1171,7 +1171,7 @@ class CdcSettings:
1171
1171
  :param fail_on_no_tables_captured: Whether to preserve transactions during CDC. Default: true
1172
1172
  '''
1173
1173
  if __debug__:
1174
- type_hints = typing.get_type_hints(_typecheckingstub__2e7a5c04d8aef1a8104f515a1d5f90a7306a6b24436deee248f1402472a8e587)
1174
+ type_hints = cached_type_hints(_typecheckingstub__2e7a5c04d8aef1a8104f515a1d5f90a7306a6b24436deee248f1402472a8e587)
1175
1175
  check_type(argname="argument batch_apply_enabled", value=batch_apply_enabled, expected_type=type_hints["batch_apply_enabled"])
1176
1176
  check_type(argname="argument batch_apply_memory_limit", value=batch_apply_memory_limit, expected_type=type_hints["batch_apply_memory_limit"])
1177
1177
  check_type(argname="argument batch_apply_timeout_max", value=batch_apply_timeout_max, expected_type=type_hints["batch_apply_timeout_max"])
@@ -1326,7 +1326,7 @@ class Db2Settings:
1326
1326
  :param set_data_capture_changes: Enables ongoing replication (CDC) for Db2.
1327
1327
  '''
1328
1328
  if __debug__:
1329
- type_hints = typing.get_type_hints(_typecheckingstub__1143f2e78c07d441d5d14e66bc7da0554757dd7a36447d11d1002ea5079e40b3)
1329
+ type_hints = cached_type_hints(_typecheckingstub__1143f2e78c07d441d5d14e66bc7da0554757dd7a36447d11d1002ea5079e40b3)
1330
1330
  check_type(argname="argument current_lsn", value=current_lsn, expected_type=type_hints["current_lsn"])
1331
1331
  check_type(argname="argument max_k_bytes_per_read", value=max_k_bytes_per_read, expected_type=type_hints["max_k_bytes_per_read"])
1332
1332
  check_type(argname="argument secrets_manager_access_role_arn", value=secrets_manager_access_role_arn, expected_type=type_hints["secrets_manager_access_role_arn"])
@@ -1512,7 +1512,7 @@ class DmsEndpointProps:
1512
1512
  if isinstance(sql_server_settings, dict):
1513
1513
  sql_server_settings = SqlServerSettings(**sql_server_settings)
1514
1514
  if __debug__:
1515
- type_hints = typing.get_type_hints(_typecheckingstub__b4dd168f80a16d622f01a810e35cdd8e89b4d1ba0a4228b5639f7a3d4d22e12e)
1515
+ type_hints = cached_type_hints(_typecheckingstub__b4dd168f80a16d622f01a810e35cdd8e89b4d1ba0a4228b5639f7a3d4d22e12e)
1516
1516
  check_type(argname="argument endpoint_type", value=endpoint_type, expected_type=type_hints["endpoint_type"])
1517
1517
  check_type(argname="argument engine", value=engine, expected_type=type_hints["engine"])
1518
1518
  check_type(argname="argument certificate_arn", value=certificate_arn, expected_type=type_hints["certificate_arn"])
@@ -1893,7 +1893,7 @@ class DmsMigrationPipeline(
1893
1893
  :param vpc_subnets: Subnet selection for the replication instance. Default: private subnets with egress
1894
1894
  '''
1895
1895
  if __debug__:
1896
- type_hints = typing.get_type_hints(_typecheckingstub__0fda663af254b0bbfe5247b95ff9f43e1ac205827ee185813439f3c651667603)
1896
+ type_hints = cached_type_hints(_typecheckingstub__0fda663af254b0bbfe5247b95ff9f43e1ac205827ee185813439f3c651667603)
1897
1897
  check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
1898
1898
  check_type(argname="argument id", value=id, expected_type=type_hints["id"])
1899
1899
  props = DmsMigrationPipelineProps(
@@ -2055,7 +2055,7 @@ class DmsMigrationPipelineProps:
2055
2055
  if isinstance(vpc_subnets, dict):
2056
2056
  vpc_subnets = _aws_cdk_aws_ec2_ceddda9d.SubnetSelection(**vpc_subnets)
2057
2057
  if __debug__:
2058
- type_hints = typing.get_type_hints(_typecheckingstub__c548b8458a11955b30c6aac8ff861f86d747f0219e4482dd95095c2c2ad8f88a)
2058
+ type_hints = cached_type_hints(_typecheckingstub__c548b8458a11955b30c6aac8ff861f86d747f0219e4482dd95095c2c2ad8f88a)
2059
2059
  check_type(argname="argument migration_type", value=migration_type, expected_type=type_hints["migration_type"])
2060
2060
  check_type(argname="argument vpc", value=vpc, expected_type=type_hints["vpc"])
2061
2061
  check_type(argname="argument allocated_storage", value=allocated_storage, expected_type=type_hints["allocated_storage"])
@@ -2383,7 +2383,7 @@ class DmsReplicationInstance(
2383
2383
  :param vpc_subnets: Specific subnets to use for the replication subnet group. Defaults to all private subnets in the VPC.
2384
2384
  '''
2385
2385
  if __debug__:
2386
- type_hints = typing.get_type_hints(_typecheckingstub__28e71d51ca68bc94953f01f85c9fce11bda2399c34737d4f013806d63aa43f8a)
2386
+ type_hints = cached_type_hints(_typecheckingstub__28e71d51ca68bc94953f01f85c9fce11bda2399c34737d4f013806d63aa43f8a)
2387
2387
  check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
2388
2388
  check_type(argname="argument id", value=id, expected_type=type_hints["id"])
2389
2389
  props = DmsReplicationInstanceProps(
@@ -2420,7 +2420,7 @@ class DmsReplicationInstance(
2420
2420
  :param description: -
2421
2421
  '''
2422
2422
  if __debug__:
2423
- type_hints = typing.get_type_hints(_typecheckingstub__7a8ba6e14ad899928ad9aa4290b02f07b63834d5eac931760b5f8b61be36e830)
2423
+ type_hints = cached_type_hints(_typecheckingstub__7a8ba6e14ad899928ad9aa4290b02f07b63834d5eac931760b5f8b61be36e830)
2424
2424
  check_type(argname="argument peer", value=peer, expected_type=type_hints["peer"])
2425
2425
  check_type(argname="argument port", value=port, expected_type=type_hints["port"])
2426
2426
  check_type(argname="argument description", value=description, expected_type=type_hints["description"])
@@ -2515,7 +2515,7 @@ class DmsReplicationInstanceProps:
2515
2515
  if isinstance(vpc_subnets, dict):
2516
2516
  vpc_subnets = _aws_cdk_aws_ec2_ceddda9d.SubnetSelection(**vpc_subnets)
2517
2517
  if __debug__:
2518
- type_hints = typing.get_type_hints(_typecheckingstub__745cf1ed3d8b534c88a1120df6389de3194446baff08856277dca348c893f1e9)
2518
+ type_hints = cached_type_hints(_typecheckingstub__745cf1ed3d8b534c88a1120df6389de3194446baff08856277dca348c893f1e9)
2519
2519
  check_type(argname="argument vpc", value=vpc, expected_type=type_hints["vpc"])
2520
2520
  check_type(argname="argument allocated_storage", value=allocated_storage, expected_type=type_hints["allocated_storage"])
2521
2521
  check_type(argname="argument auto_minor_version_upgrade", value=auto_minor_version_upgrade, expected_type=type_hints["auto_minor_version_upgrade"])
@@ -2734,7 +2734,7 @@ class DmsReplicationTask(
2734
2734
  :param task_settings: Task settings JSON string. Use {@link TaskSettings} to build this, or provide a raw JSON string. A sensible default is applied if not provided.
2735
2735
  '''
2736
2736
  if __debug__:
2737
- type_hints = typing.get_type_hints(_typecheckingstub__a9a793c37f48cee26079f0c7500adaf2076337eec70ab065bc8f88463f835ff7)
2737
+ type_hints = cached_type_hints(_typecheckingstub__a9a793c37f48cee26079f0c7500adaf2076337eec70ab065bc8f88463f835ff7)
2738
2738
  check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
2739
2739
  check_type(argname="argument id", value=id, expected_type=type_hints["id"])
2740
2740
  props = DmsReplicationTaskProps(
@@ -2818,7 +2818,7 @@ class DmsReplicationTaskProps:
2818
2818
  :param task_settings: Task settings JSON string. Use {@link TaskSettings} to build this, or provide a raw JSON string. A sensible default is applied if not provided.
2819
2819
  '''
2820
2820
  if __debug__:
2821
- type_hints = typing.get_type_hints(_typecheckingstub__d85c980cd4b2137b7cb3659355b036b6ce072a65d8977d39aeb47e17acee3731)
2821
+ type_hints = cached_type_hints(_typecheckingstub__d85c980cd4b2137b7cb3659355b036b6ce072a65d8977d39aeb47e17acee3731)
2822
2822
  check_type(argname="argument migration_type", value=migration_type, expected_type=type_hints["migration_type"])
2823
2823
  check_type(argname="argument replication_instance_arn", value=replication_instance_arn, expected_type=type_hints["replication_instance_arn"])
2824
2824
  check_type(argname="argument source_endpoint", value=source_endpoint, expected_type=type_hints["source_endpoint"])
@@ -3069,7 +3069,7 @@ class DmsServerlessPipeline(
3069
3069
  :param vpc_subnets: Subnet selection for the replication subnet group. Default: private subnets with egress
3070
3070
  '''
3071
3071
  if __debug__:
3072
- type_hints = typing.get_type_hints(_typecheckingstub__7a2b019515999620eb38c5b5082bbc952533dde739a09f7209e26a6e50b071a0)
3072
+ type_hints = cached_type_hints(_typecheckingstub__7a2b019515999620eb38c5b5082bbc952533dde739a09f7209e26a6e50b071a0)
3073
3073
  check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
3074
3074
  check_type(argname="argument id", value=id, expected_type=type_hints["id"])
3075
3075
  props = DmsServerlessPipelineProps(
@@ -3247,7 +3247,7 @@ class DmsServerlessPipelineProps:
3247
3247
  if isinstance(vpc_subnets, dict):
3248
3248
  vpc_subnets = _aws_cdk_aws_ec2_ceddda9d.SubnetSelection(**vpc_subnets)
3249
3249
  if __debug__:
3250
- type_hints = typing.get_type_hints(_typecheckingstub__5fdb61312af37864385665ed036fcbebd656bcd6795139b916d07948a2b7598e)
3250
+ type_hints = cached_type_hints(_typecheckingstub__5fdb61312af37864385665ed036fcbebd656bcd6795139b916d07948a2b7598e)
3251
3251
  check_type(argname="argument max_capacity_units", value=max_capacity_units, expected_type=type_hints["max_capacity_units"])
3252
3252
  check_type(argname="argument migration_type", value=migration_type, expected_type=type_hints["migration_type"])
3253
3253
  check_type(argname="argument vpc", value=vpc, expected_type=type_hints["vpc"])
@@ -3557,7 +3557,7 @@ class DynamoDbAttributeMapping:
3557
3557
  :param value: Raw DMS value expression, used verbatim. Use this for composite values or other expressions like ``'STATUS#${status}'``. Mutually exclusive with ``sourceColumn``.
3558
3558
  '''
3559
3559
  if __debug__:
3560
- type_hints = typing.get_type_hints(_typecheckingstub__8d5243d1aabe48bc72f98d625b89f5ae972e16a9646f25f501761cd427ac5fed)
3560
+ type_hints = cached_type_hints(_typecheckingstub__8d5243d1aabe48bc72f98d625b89f5ae972e16a9646f25f501761cd427ac5fed)
3561
3561
  check_type(argname="argument attribute_sub_type", value=attribute_sub_type, expected_type=type_hints["attribute_sub_type"])
3562
3562
  check_type(argname="argument target_attribute_name", value=target_attribute_name, expected_type=type_hints["target_attribute_name"])
3563
3563
  check_type(argname="argument source_column", value=source_column, expected_type=type_hints["source_column"])
@@ -3656,7 +3656,7 @@ class DynamoDbKeyMapping:
3656
3656
  :param value: Raw DMS value expression, used verbatim. Use this for composite keys or other expressions like ``'CUSTOMER#${customer_id}'``. Mutually exclusive with ``sourceColumn``.
3657
3657
  '''
3658
3658
  if __debug__:
3659
- type_hints = typing.get_type_hints(_typecheckingstub__68ec1db024b58989b3c737cdad105b1c6cbfa5151c19789e77fa3a1f08d54231)
3659
+ type_hints = cached_type_hints(_typecheckingstub__68ec1db024b58989b3c737cdad105b1c6cbfa5151c19789e77fa3a1f08d54231)
3660
3660
  check_type(argname="argument attribute_sub_type", value=attribute_sub_type, expected_type=type_hints["attribute_sub_type"])
3661
3661
  check_type(argname="argument target_attribute_name", value=target_attribute_name, expected_type=type_hints["target_attribute_name"])
3662
3662
  check_type(argname="argument source_column", value=source_column, expected_type=type_hints["source_column"])
@@ -3751,7 +3751,7 @@ class DynamoDbObjectMappingOptions:
3751
3751
  if isinstance(sort_key, dict):
3752
3752
  sort_key = DynamoDbKeyMapping(**sort_key)
3753
3753
  if __debug__:
3754
- type_hints = typing.get_type_hints(_typecheckingstub__f3eda16e88280f0c2c7861e9c34a93e9a4bbfe97a238520729817032c8aa5b0f)
3754
+ type_hints = cached_type_hints(_typecheckingstub__f3eda16e88280f0c2c7861e9c34a93e9a4bbfe97a238520729817032c8aa5b0f)
3755
3755
  check_type(argname="argument partition_key", value=partition_key, expected_type=type_hints["partition_key"])
3756
3756
  check_type(argname="argument target_table_name", value=target_table_name, expected_type=type_hints["target_table_name"])
3757
3757
  check_type(argname="argument attribute_mappings", value=attribute_mappings, expected_type=type_hints["attribute_mappings"])
@@ -3837,7 +3837,7 @@ class DynamoDbSettings:
3837
3837
  :param service_access_role_arn: ARN of the IAM role that provides DMS access to DynamoDB.
3838
3838
  '''
3839
3839
  if __debug__:
3840
- type_hints = typing.get_type_hints(_typecheckingstub__e4a285a3f891b29d392be179efe213d33598902347f2aa47988a4bec599aeb3e)
3840
+ type_hints = cached_type_hints(_typecheckingstub__e4a285a3f891b29d392be179efe213d33598902347f2aa47988a4bec599aeb3e)
3841
3841
  check_type(argname="argument service_access_role_arn", value=service_access_role_arn, expected_type=type_hints["service_access_role_arn"])
3842
3842
  self._values: typing.Dict[builtins.str, typing.Any] = {
3843
3843
  "service_access_role_arn": service_access_role_arn,
@@ -3972,7 +3972,7 @@ class ErrorHandlingSettings:
3972
3972
  :param table_error_policy: Action when DMS encounters a table error. Default: ErrorAction.STOP_TASK
3973
3973
  '''
3974
3974
  if __debug__:
3975
- type_hints = typing.get_type_hints(_typecheckingstub__76e2d71ec4a20f9f54986a93e35e7a8d909cb37c4c0eb992c70efd592ab445cf)
3975
+ type_hints = cached_type_hints(_typecheckingstub__76e2d71ec4a20f9f54986a93e35e7a8d909cb37c4c0eb992c70efd592ab445cf)
3976
3976
  check_type(argname="argument data_error_escalation_count", value=data_error_escalation_count, expected_type=type_hints["data_error_escalation_count"])
3977
3977
  check_type(argname="argument data_error_escalation_policy", value=data_error_escalation_policy, expected_type=type_hints["data_error_escalation_policy"])
3978
3978
  check_type(argname="argument data_error_policy", value=data_error_policy, expected_type=type_hints["data_error_policy"])
@@ -4137,7 +4137,7 @@ class FullLoadSettings:
4137
4137
  :param transaction_consistency_timeout: Number of rows to load before a commit. Default: 10000
4138
4138
  '''
4139
4139
  if __debug__:
4140
- type_hints = typing.get_type_hints(_typecheckingstub__fb80e77820cdf4acbb3abbf747ebc24868762f9abab974c9ad413151164db47b)
4140
+ type_hints = cached_type_hints(_typecheckingstub__fb80e77820cdf4acbb3abbf747ebc24868762f9abab974c9ad413151164db47b)
4141
4141
  check_type(argname="argument commit_rate", value=commit_rate, expected_type=type_hints["commit_rate"])
4142
4142
  check_type(argname="argument max_full_load_sub_tasks", value=max_full_load_sub_tasks, expected_type=type_hints["max_full_load_sub_tasks"])
4143
4143
  check_type(argname="argument stop_task_cached_changes_applied", value=stop_task_cached_changes_applied, expected_type=type_hints["stop_task_cached_changes_applied"])
@@ -4326,7 +4326,7 @@ class KafkaSettings:
4326
4326
  :param topic: Topic name to publish to.
4327
4327
  '''
4328
4328
  if __debug__:
4329
- type_hints = typing.get_type_hints(_typecheckingstub__d72d1e8fa4ea59122108bc446260c5c08613ed722e1ec53e56af9ecd82303b37)
4329
+ type_hints = cached_type_hints(_typecheckingstub__d72d1e8fa4ea59122108bc446260c5c08613ed722e1ec53e56af9ecd82303b37)
4330
4330
  check_type(argname="argument broker", value=broker, expected_type=type_hints["broker"])
4331
4331
  check_type(argname="argument include_control_details", value=include_control_details, expected_type=type_hints["include_control_details"])
4332
4332
  check_type(argname="argument include_null_and_empty", value=include_null_and_empty, expected_type=type_hints["include_null_and_empty"])
@@ -4551,7 +4551,7 @@ class KinesisSettings:
4551
4551
  :param partition_include_schema_table: Whether to include the schema name in the partition key.
4552
4552
  '''
4553
4553
  if __debug__:
4554
- type_hints = typing.get_type_hints(_typecheckingstub__4e05901bfa0432d28261a6667d48c1b7f8745dfd73fe3cb64d1b1be39e2e92cc)
4554
+ type_hints = cached_type_hints(_typecheckingstub__4e05901bfa0432d28261a6667d48c1b7f8745dfd73fe3cb64d1b1be39e2e92cc)
4555
4555
  check_type(argname="argument service_access_role_arn", value=service_access_role_arn, expected_type=type_hints["service_access_role_arn"])
4556
4556
  check_type(argname="argument stream_arn", value=stream_arn, expected_type=type_hints["stream_arn"])
4557
4557
  check_type(argname="argument include_control_details", value=include_control_details, expected_type=type_hints["include_control_details"])
@@ -4685,7 +4685,7 @@ class LogComponentSettings:
4685
4685
  :param logging_level: Logging level for this component.
4686
4686
  '''
4687
4687
  if __debug__:
4688
- type_hints = typing.get_type_hints(_typecheckingstub__32450e5eef2e4140e6535e237cf3a6e99aa64979d35220f669741d15bd7300c4)
4688
+ type_hints = cached_type_hints(_typecheckingstub__32450e5eef2e4140e6535e237cf3a6e99aa64979d35220f669741d15bd7300c4)
4689
4689
  check_type(argname="argument logging_level", value=logging_level, expected_type=type_hints["logging_level"])
4690
4690
  self._values: typing.Dict[builtins.str, typing.Any] = {}
4691
4691
  if logging_level is not None:
@@ -4796,7 +4796,7 @@ class MongoDbSettings:
4796
4796
  :param secrets_manager_secret_id: Full ARN or name of the Secrets Manager secret.
4797
4797
  '''
4798
4798
  if __debug__:
4799
- type_hints = typing.get_type_hints(_typecheckingstub__b9f2a9e7bb317210612949dfcb386583b29cb301b237150183e2b026ea4d561e)
4799
+ type_hints = cached_type_hints(_typecheckingstub__b9f2a9e7bb317210612949dfcb386583b29cb301b237150183e2b026ea4d561e)
4800
4800
  check_type(argname="argument auth_mechanism", value=auth_mechanism, expected_type=type_hints["auth_mechanism"])
4801
4801
  check_type(argname="argument auth_source", value=auth_source, expected_type=type_hints["auth_source"])
4802
4802
  check_type(argname="argument auth_type", value=auth_type, expected_type=type_hints["auth_type"])
@@ -4933,7 +4933,7 @@ class MySqlSettings:
4933
4933
  :param target_db_type: For a MySQL target, specifies how tables are created.
4934
4934
  '''
4935
4935
  if __debug__:
4936
- type_hints = typing.get_type_hints(_typecheckingstub__94034e2078488fe2934588b7a711bf6449a081419ec5c7a4e738a2a0e957e233)
4936
+ type_hints = cached_type_hints(_typecheckingstub__94034e2078488fe2934588b7a711bf6449a081419ec5c7a4e738a2a0e957e233)
4937
4937
  check_type(argname="argument after_connect_script", value=after_connect_script, expected_type=type_hints["after_connect_script"])
4938
4938
  check_type(argname="argument clean_source_metadata_on_mismatch", value=clean_source_metadata_on_mismatch, expected_type=type_hints["clean_source_metadata_on_mismatch"])
4939
4939
  check_type(argname="argument events_poll_interval", value=events_poll_interval, expected_type=type_hints["events_poll_interval"])
@@ -5073,7 +5073,7 @@ class NeptuneSettings:
5073
5073
  :param max_retry_count: Maximum number of retries on endpoint exceptions.
5074
5074
  '''
5075
5075
  if __debug__:
5076
- type_hints = typing.get_type_hints(_typecheckingstub__b52bbf4a21fd9053a82127aa5126a44b7185fb0cd0b9e802962e44beb310ecd4)
5076
+ type_hints = cached_type_hints(_typecheckingstub__b52bbf4a21fd9053a82127aa5126a44b7185fb0cd0b9e802962e44beb310ecd4)
5077
5077
  check_type(argname="argument s3_bucket_folder", value=s3_bucket_folder, expected_type=type_hints["s3_bucket_folder"])
5078
5078
  check_type(argname="argument s3_bucket_name", value=s3_bucket_name, expected_type=type_hints["s3_bucket_name"])
5079
5079
  check_type(argname="argument service_access_role_arn", value=service_access_role_arn, expected_type=type_hints["service_access_role_arn"])
@@ -5179,7 +5179,7 @@ class OpenSearchSettings:
5179
5179
  :param full_load_error_percentage: Maximum percentage of records that may fail before the task is stopped.
5180
5180
  '''
5181
5181
  if __debug__:
5182
- type_hints = typing.get_type_hints(_typecheckingstub__70aed08e7cd97b138eeb9efc441ee556794fd9fddc122cb50ebcfe2f11406d4f)
5182
+ type_hints = cached_type_hints(_typecheckingstub__70aed08e7cd97b138eeb9efc441ee556794fd9fddc122cb50ebcfe2f11406d4f)
5183
5183
  check_type(argname="argument endpoint_uri", value=endpoint_uri, expected_type=type_hints["endpoint_uri"])
5184
5184
  check_type(argname="argument service_access_role_arn", value=service_access_role_arn, expected_type=type_hints["service_access_role_arn"])
5185
5185
  check_type(argname="argument error_retry_duration", value=error_retry_duration, expected_type=type_hints["error_retry_duration"])
@@ -5357,7 +5357,7 @@ class OracleSettings:
5357
5357
  :param use_path_prefix: Use a path prefix for the location of the online redo log.
5358
5358
  '''
5359
5359
  if __debug__:
5360
- type_hints = typing.get_type_hints(_typecheckingstub__64f5d1d2340354b356ee661c17753ebcfc35cd2730ecbc08d504c0d6914f48af)
5360
+ type_hints = cached_type_hints(_typecheckingstub__64f5d1d2340354b356ee661c17753ebcfc35cd2730ecbc08d504c0d6914f48af)
5361
5361
  check_type(argname="argument access_alternate_directly", value=access_alternate_directly, expected_type=type_hints["access_alternate_directly"])
5362
5362
  check_type(argname="argument additional_archived_log_dest_id", value=additional_archived_log_dest_id, expected_type=type_hints["additional_archived_log_dest_id"])
5363
5363
  check_type(argname="argument add_supplemental_logging", value=add_supplemental_logging, expected_type=type_hints["add_supplemental_logging"])
@@ -5718,7 +5718,7 @@ class PostgreSqlSettings:
5718
5718
  :param slot_name: Name of the logical replication slot created for CDC.
5719
5719
  '''
5720
5720
  if __debug__:
5721
- type_hints = typing.get_type_hints(_typecheckingstub__f1033ca9f6768c3ae1fcd84c8b9e1b44831c3ea29316be574200a5aace8a4b32)
5721
+ type_hints = cached_type_hints(_typecheckingstub__f1033ca9f6768c3ae1fcd84c8b9e1b44831c3ea29316be574200a5aace8a4b32)
5722
5722
  check_type(argname="argument after_connect_script", value=after_connect_script, expected_type=type_hints["after_connect_script"])
5723
5723
  check_type(argname="argument capture_ddls", value=capture_ddls, expected_type=type_hints["capture_ddls"])
5724
5724
  check_type(argname="argument ddl_artifacts_schema", value=ddl_artifacts_schema, expected_type=type_hints["ddl_artifacts_schema"])
@@ -5903,7 +5903,7 @@ class RedisSettings:
5903
5903
  :param ssl_security_protocol: SSL security protocol.
5904
5904
  '''
5905
5905
  if __debug__:
5906
- type_hints = typing.get_type_hints(_typecheckingstub__c1c4f21175a975bc95010f9e20e5886f5a4833ee887a7934a3462aeefaa0f89b)
5906
+ type_hints = cached_type_hints(_typecheckingstub__c1c4f21175a975bc95010f9e20e5886f5a4833ee887a7934a3462aeefaa0f89b)
5907
5907
  check_type(argname="argument server_name", value=server_name, expected_type=type_hints["server_name"])
5908
5908
  check_type(argname="argument auth_password", value=auth_password, expected_type=type_hints["auth_password"])
5909
5909
  check_type(argname="argument auth_type", value=auth_type, expected_type=type_hints["auth_type"])
@@ -6075,7 +6075,7 @@ class RedshiftSettings:
6075
6075
  :param write_buffer_size: Size of the write buffer (in KB).
6076
6076
  '''
6077
6077
  if __debug__:
6078
- type_hints = typing.get_type_hints(_typecheckingstub__f38b8f293b00cf55249d555574d965157d861f2070c73475579589cfc7d1bb83)
6078
+ type_hints = cached_type_hints(_typecheckingstub__f38b8f293b00cf55249d555574d965157d861f2070c73475579589cfc7d1bb83)
6079
6079
  check_type(argname="argument accept_any_date", value=accept_any_date, expected_type=type_hints["accept_any_date"])
6080
6080
  check_type(argname="argument after_connect_script", value=after_connect_script, expected_type=type_hints["after_connect_script"])
6081
6081
  check_type(argname="argument bucket_folder", value=bucket_folder, expected_type=type_hints["bucket_folder"])
@@ -6414,7 +6414,7 @@ class RuleObjectLocatorValue:
6414
6414
  :param table_name:
6415
6415
  '''
6416
6416
  if __debug__:
6417
- type_hints = typing.get_type_hints(_typecheckingstub__ad1d9b3b5d70911e180a7240d4fc34c12adc982402fda270f4efec166a84b109)
6417
+ type_hints = cached_type_hints(_typecheckingstub__ad1d9b3b5d70911e180a7240d4fc34c12adc982402fda270f4efec166a84b109)
6418
6418
  check_type(argname="argument schema_name", value=schema_name, expected_type=type_hints["schema_name"])
6419
6419
  check_type(argname="argument column_name", value=column_name, expected_type=type_hints["column_name"])
6420
6420
  check_type(argname="argument table_name", value=table_name, expected_type=type_hints["table_name"])
@@ -6579,7 +6579,7 @@ class S3Settings:
6579
6579
  :param use_task_start_time_for_full_load_timestamp: Whether to use the task start time instead of transaction start time for full load.
6580
6580
  '''
6581
6581
  if __debug__:
6582
- type_hints = typing.get_type_hints(_typecheckingstub__57d2bd3aa26dafb40f0db6fb23b6a57dc9e3f9afe5ae39305d089937412c0ebf)
6582
+ type_hints = cached_type_hints(_typecheckingstub__57d2bd3aa26dafb40f0db6fb23b6a57dc9e3f9afe5ae39305d089937412c0ebf)
6583
6583
  check_type(argname="argument bucket_name", value=bucket_name, expected_type=type_hints["bucket_name"])
6584
6584
  check_type(argname="argument service_access_role_arn", value=service_access_role_arn, expected_type=type_hints["service_access_role_arn"])
6585
6585
  check_type(argname="argument add_column_name", value=add_column_name, expected_type=type_hints["add_column_name"])
@@ -6930,7 +6930,7 @@ class SapAseSettings:
6930
6930
  :param secrets_manager_secret_id: Full ARN or name of the Secrets Manager secret.
6931
6931
  '''
6932
6932
  if __debug__:
6933
- type_hints = typing.get_type_hints(_typecheckingstub__da46482f816183cc65e81fd8d132004084fefab859194905a51e0757d0c0fd71)
6933
+ type_hints = cached_type_hints(_typecheckingstub__da46482f816183cc65e81fd8d132004084fefab859194905a51e0757d0c0fd71)
6934
6934
  check_type(argname="argument secrets_manager_access_role_arn", value=secrets_manager_access_role_arn, expected_type=type_hints["secrets_manager_access_role_arn"])
6935
6935
  check_type(argname="argument secrets_manager_secret_id", value=secrets_manager_secret_id, expected_type=type_hints["secrets_manager_secret_id"])
6936
6936
  self._values: typing.Dict[builtins.str, typing.Any] = {}
@@ -7059,7 +7059,7 @@ class SourceEndpointOptions:
7059
7059
  if isinstance(sql_server_settings, dict):
7060
7060
  sql_server_settings = SqlServerSettings(**sql_server_settings)
7061
7061
  if __debug__:
7062
- type_hints = typing.get_type_hints(_typecheckingstub__5bc8922a54f70ccc34f0161b9a2dfc81e5a41bd505c9cef5e199960dbbfd3895)
7062
+ type_hints = cached_type_hints(_typecheckingstub__5bc8922a54f70ccc34f0161b9a2dfc81e5a41bd505c9cef5e199960dbbfd3895)
7063
7063
  check_type(argname="argument engine", value=engine, expected_type=type_hints["engine"])
7064
7064
  check_type(argname="argument certificate_arn", value=certificate_arn, expected_type=type_hints["certificate_arn"])
7065
7065
  check_type(argname="argument database_name", value=database_name, expected_type=type_hints["database_name"])
@@ -7282,7 +7282,7 @@ class SqlServerSettings:
7282
7282
  :param use_third_party_backup_device: Use third-party backup device.
7283
7283
  '''
7284
7284
  if __debug__:
7285
- type_hints = typing.get_type_hints(_typecheckingstub__93e4e0b3a806d143e7a4184855114d62a14be36a802996eda51b82a309649730)
7285
+ type_hints = cached_type_hints(_typecheckingstub__93e4e0b3a806d143e7a4184855114d62a14be36a802996eda51b82a309649730)
7286
7286
  check_type(argname="argument bcp_packet_size", value=bcp_packet_size, expected_type=type_hints["bcp_packet_size"])
7287
7287
  check_type(argname="argument control_tables_file_group", value=control_tables_file_group, expected_type=type_hints["control_tables_file_group"])
7288
7288
  check_type(argname="argument query_single_always_on_node", value=query_single_always_on_node, expected_type=type_hints["query_single_always_on_node"])
@@ -7434,7 +7434,7 @@ class TableMappingRule:
7434
7434
  if isinstance(object_locator, dict):
7435
7435
  object_locator = RuleObjectLocatorValue(**object_locator)
7436
7436
  if __debug__:
7437
- type_hints = typing.get_type_hints(_typecheckingstub__ba657662124d8e33af8dba4f0cc5d75f2d7bcba01487289ad75ac8b4178d81ac)
7437
+ type_hints = cached_type_hints(_typecheckingstub__ba657662124d8e33af8dba4f0cc5d75f2d7bcba01487289ad75ac8b4178d81ac)
7438
7438
  check_type(argname="argument object_locator", value=object_locator, expected_type=type_hints["object_locator"])
7439
7439
  check_type(argname="argument rule_action", value=rule_action, expected_type=type_hints["rule_action"])
7440
7440
  check_type(argname="argument rule_id", value=rule_id, expected_type=type_hints["rule_id"])
@@ -7561,7 +7561,7 @@ class TableMappings(
7561
7561
  });
7562
7562
  '''
7563
7563
  if __debug__:
7564
- type_hints = typing.get_type_hints(_typecheckingstub__7e9380f98f624e18d1e2c6392e08be02d54702d1f3e8ca1a87322510f0a7b537)
7564
+ type_hints = cached_type_hints(_typecheckingstub__7e9380f98f624e18d1e2c6392e08be02d54702d1f3e8ca1a87322510f0a7b537)
7565
7565
  check_type(argname="argument schema_name", value=schema_name, expected_type=type_hints["schema_name"])
7566
7566
  check_type(argname="argument table_name", value=table_name, expected_type=type_hints["table_name"])
7567
7567
  column = AddColumnDefinition(
@@ -7588,7 +7588,7 @@ class TableMappings(
7588
7588
  :param prefix: -
7589
7589
  '''
7590
7590
  if __debug__:
7591
- type_hints = typing.get_type_hints(_typecheckingstub__b307a8d1927f2d12027338e48471488100ca325ec3ad11f902adbe476c27922b)
7591
+ type_hints = cached_type_hints(_typecheckingstub__b307a8d1927f2d12027338e48471488100ca325ec3ad11f902adbe476c27922b)
7592
7592
  check_type(argname="argument schema_name", value=schema_name, expected_type=type_hints["schema_name"])
7593
7593
  check_type(argname="argument prefix", value=prefix, expected_type=type_hints["prefix"])
7594
7594
  return typing.cast("TableMappings", jsii.invoke(self, "addPrefixToSchema", [schema_name, prefix]))
@@ -7607,7 +7607,7 @@ class TableMappings(
7607
7607
  :param prefix: -
7608
7608
  '''
7609
7609
  if __debug__:
7610
- type_hints = typing.get_type_hints(_typecheckingstub__bd96f8c5d2d174405ad82ff1cb7533419a328192e4d7f520f30c36c16651b864)
7610
+ type_hints = cached_type_hints(_typecheckingstub__bd96f8c5d2d174405ad82ff1cb7533419a328192e4d7f520f30c36c16651b864)
7611
7611
  check_type(argname="argument schema_name", value=schema_name, expected_type=type_hints["schema_name"])
7612
7612
  check_type(argname="argument table_name", value=table_name, expected_type=type_hints["table_name"])
7613
7613
  check_type(argname="argument prefix", value=prefix, expected_type=type_hints["prefix"])
@@ -7625,7 +7625,7 @@ class TableMappings(
7625
7625
  :param suffix: -
7626
7626
  '''
7627
7627
  if __debug__:
7628
- type_hints = typing.get_type_hints(_typecheckingstub__f9e200b002b2b955c3f453bce37dad2a354edc5728e008354f781905515c6c23)
7628
+ type_hints = cached_type_hints(_typecheckingstub__f9e200b002b2b955c3f453bce37dad2a354edc5728e008354f781905515c6c23)
7629
7629
  check_type(argname="argument schema_name", value=schema_name, expected_type=type_hints["schema_name"])
7630
7630
  check_type(argname="argument suffix", value=suffix, expected_type=type_hints["suffix"])
7631
7631
  return typing.cast("TableMappings", jsii.invoke(self, "addSuffixToSchema", [schema_name, suffix]))
@@ -7644,7 +7644,7 @@ class TableMappings(
7644
7644
  :param suffix: -
7645
7645
  '''
7646
7646
  if __debug__:
7647
- type_hints = typing.get_type_hints(_typecheckingstub__1f483895e618e31cd60ab2fd543c3b81ad5b4f67d4b335c984b5d02f2cb78045)
7647
+ type_hints = cached_type_hints(_typecheckingstub__1f483895e618e31cd60ab2fd543c3b81ad5b4f67d4b335c984b5d02f2cb78045)
7648
7648
  check_type(argname="argument schema_name", value=schema_name, expected_type=type_hints["schema_name"])
7649
7649
  check_type(argname="argument table_name", value=table_name, expected_type=type_hints["table_name"])
7650
7650
  check_type(argname="argument suffix", value=suffix, expected_type=type_hints["suffix"])
@@ -7657,7 +7657,7 @@ class TableMappings(
7657
7657
  :param schema_name: -
7658
7658
  '''
7659
7659
  if __debug__:
7660
- type_hints = typing.get_type_hints(_typecheckingstub__400d500c91a14a8c27a6703136360aed6fc4f83fd65cf5f2cb160909c0389d34)
7660
+ type_hints = cached_type_hints(_typecheckingstub__400d500c91a14a8c27a6703136360aed6fc4f83fd65cf5f2cb160909c0389d34)
7661
7661
  check_type(argname="argument schema_name", value=schema_name, expected_type=type_hints["schema_name"])
7662
7662
  return typing.cast("TableMappings", jsii.invoke(self, "excludeSchema", [schema_name]))
7663
7663
 
@@ -7673,7 +7673,7 @@ class TableMappings(
7673
7673
  :param table_name: -
7674
7674
  '''
7675
7675
  if __debug__:
7676
- type_hints = typing.get_type_hints(_typecheckingstub__2510aa49282d30afc398ea712278347f689ea42833edc806e1e800c960953ea6)
7676
+ type_hints = cached_type_hints(_typecheckingstub__2510aa49282d30afc398ea712278347f689ea42833edc806e1e800c960953ea6)
7677
7677
  check_type(argname="argument schema_name", value=schema_name, expected_type=type_hints["schema_name"])
7678
7678
  check_type(argname="argument table_name", value=table_name, expected_type=type_hints["table_name"])
7679
7679
  return typing.cast("TableMappings", jsii.invoke(self, "excludeTable", [schema_name, table_name]))
@@ -7693,7 +7693,7 @@ class TableMappings(
7693
7693
  :param table_name: -
7694
7694
  '''
7695
7695
  if __debug__:
7696
- type_hints = typing.get_type_hints(_typecheckingstub__fe449a891ffe37a780f5b75dd136cc3068c29c74a75f2dcfdfacc25d795f70c0)
7696
+ type_hints = cached_type_hints(_typecheckingstub__fe449a891ffe37a780f5b75dd136cc3068c29c74a75f2dcfdfacc25d795f70c0)
7697
7697
  check_type(argname="argument schema_name", value=schema_name, expected_type=type_hints["schema_name"])
7698
7698
  check_type(argname="argument table_name", value=table_name, expected_type=type_hints["table_name"])
7699
7699
  return typing.cast("TableMappings", jsii.invoke(self, "explicitTable", [schema_name, table_name]))
@@ -7707,7 +7707,7 @@ class TableMappings(
7707
7707
  :param schema_name: -
7708
7708
  '''
7709
7709
  if __debug__:
7710
- type_hints = typing.get_type_hints(_typecheckingstub__57f3466bbd7969f8fdc3330a3a883b5469f4cd32e588075e852061846fd2868d)
7710
+ type_hints = cached_type_hints(_typecheckingstub__57f3466bbd7969f8fdc3330a3a883b5469f4cd32e588075e852061846fd2868d)
7711
7711
  check_type(argname="argument schema_name", value=schema_name, expected_type=type_hints["schema_name"])
7712
7712
  return typing.cast("TableMappings", jsii.invoke(self, "includeSchema", [schema_name]))
7713
7713
 
@@ -7725,7 +7725,7 @@ class TableMappings(
7725
7725
  :param table_name: -
7726
7726
  '''
7727
7727
  if __debug__:
7728
- type_hints = typing.get_type_hints(_typecheckingstub__37549bcab8f4813455835876443f8ed4e6f363634885a8634a707ef8e7afa103)
7728
+ type_hints = cached_type_hints(_typecheckingstub__37549bcab8f4813455835876443f8ed4e6f363634885a8634a707ef8e7afa103)
7729
7729
  check_type(argname="argument schema_name", value=schema_name, expected_type=type_hints["schema_name"])
7730
7730
  check_type(argname="argument table_name", value=table_name, expected_type=type_hints["table_name"])
7731
7731
  return typing.cast("TableMappings", jsii.invoke(self, "includeTable", [schema_name, table_name]))
@@ -7798,7 +7798,7 @@ class TableMappings(
7798
7798
  .toJson();
7799
7799
  '''
7800
7800
  if __debug__:
7801
- type_hints = typing.get_type_hints(_typecheckingstub__7169526379496b21a681d43cc455a231557ef13507875286eb70d4aec95a5077)
7801
+ type_hints = cached_type_hints(_typecheckingstub__7169526379496b21a681d43cc455a231557ef13507875286eb70d4aec95a5077)
7802
7802
  check_type(argname="argument schema_name", value=schema_name, expected_type=type_hints["schema_name"])
7803
7803
  check_type(argname="argument table_name", value=table_name, expected_type=type_hints["table_name"])
7804
7804
  options = DynamoDbObjectMappingOptions(
@@ -7825,7 +7825,7 @@ class TableMappings(
7825
7825
  :param column_name: -
7826
7826
  '''
7827
7827
  if __debug__:
7828
- type_hints = typing.get_type_hints(_typecheckingstub__94c414b0e7c8de26221816fe7cb64cb283c303b6847c2817f06521df529d0465)
7828
+ type_hints = cached_type_hints(_typecheckingstub__94c414b0e7c8de26221816fe7cb64cb283c303b6847c2817f06521df529d0465)
7829
7829
  check_type(argname="argument schema_name", value=schema_name, expected_type=type_hints["schema_name"])
7830
7830
  check_type(argname="argument table_name", value=table_name, expected_type=type_hints["table_name"])
7831
7831
  check_type(argname="argument column_name", value=column_name, expected_type=type_hints["column_name"])
@@ -7847,7 +7847,7 @@ class TableMappings(
7847
7847
  :param new_name: -
7848
7848
  '''
7849
7849
  if __debug__:
7850
- type_hints = typing.get_type_hints(_typecheckingstub__7627d017a7de032f4de064e5c22835bd954d2df6876da3f64ff1768d0a47a395)
7850
+ type_hints = cached_type_hints(_typecheckingstub__7627d017a7de032f4de064e5c22835bd954d2df6876da3f64ff1768d0a47a395)
7851
7851
  check_type(argname="argument schema_name", value=schema_name, expected_type=type_hints["schema_name"])
7852
7852
  check_type(argname="argument table_name", value=table_name, expected_type=type_hints["table_name"])
7853
7853
  check_type(argname="argument column_name", value=column_name, expected_type=type_hints["column_name"])
@@ -7866,7 +7866,7 @@ class TableMappings(
7866
7866
  :param new_name: -
7867
7867
  '''
7868
7868
  if __debug__:
7869
- type_hints = typing.get_type_hints(_typecheckingstub__b5fd5414a91dce6a75106da108ba45cd362933c10d53ea41c4cd10aece68c313)
7869
+ type_hints = cached_type_hints(_typecheckingstub__b5fd5414a91dce6a75106da108ba45cd362933c10d53ea41c4cd10aece68c313)
7870
7870
  check_type(argname="argument schema_name", value=schema_name, expected_type=type_hints["schema_name"])
7871
7871
  check_type(argname="argument new_name", value=new_name, expected_type=type_hints["new_name"])
7872
7872
  return typing.cast("TableMappings", jsii.invoke(self, "renameSchema", [schema_name, new_name]))
@@ -7885,7 +7885,7 @@ class TableMappings(
7885
7885
  :param new_name: -
7886
7886
  '''
7887
7887
  if __debug__:
7888
- type_hints = typing.get_type_hints(_typecheckingstub__bf54240c6b5846232354e65c162237c665ae32709c993ee5ea4fd6e28156cf92)
7888
+ type_hints = cached_type_hints(_typecheckingstub__bf54240c6b5846232354e65c162237c665ae32709c993ee5ea4fd6e28156cf92)
7889
7889
  check_type(argname="argument schema_name", value=schema_name, expected_type=type_hints["schema_name"])
7890
7890
  check_type(argname="argument table_name", value=table_name, expected_type=type_hints["table_name"])
7891
7891
  check_type(argname="argument new_name", value=new_name, expected_type=type_hints["new_name"])
@@ -7914,7 +7914,7 @@ class TableMappings(
7914
7914
  :param column_name: -
7915
7915
  '''
7916
7916
  if __debug__:
7917
- type_hints = typing.get_type_hints(_typecheckingstub__379e0f5a1c8c840d174f3ac1c07765b8c935b45fe5fee4b9ecb75472a2ef2815)
7917
+ type_hints = cached_type_hints(_typecheckingstub__379e0f5a1c8c840d174f3ac1c07765b8c935b45fe5fee4b9ecb75472a2ef2815)
7918
7918
  check_type(argname="argument schema_name", value=schema_name, expected_type=type_hints["schema_name"])
7919
7919
  check_type(argname="argument table_name", value=table_name, expected_type=type_hints["table_name"])
7920
7920
  check_type(argname="argument column_name", value=column_name, expected_type=type_hints["column_name"])
@@ -7927,7 +7927,7 @@ class TableMappings(
7927
7927
  :param schema_name: -
7928
7928
  '''
7929
7929
  if __debug__:
7930
- type_hints = typing.get_type_hints(_typecheckingstub__401c5d5b9d7f4523db57ad13226201da7cbc8aa14bfea71bb3c2f653a89d9f91)
7930
+ type_hints = cached_type_hints(_typecheckingstub__401c5d5b9d7f4523db57ad13226201da7cbc8aa14bfea71bb3c2f653a89d9f91)
7931
7931
  check_type(argname="argument schema_name", value=schema_name, expected_type=type_hints["schema_name"])
7932
7932
  return typing.cast("TableMappings", jsii.invoke(self, "toLowerCaseSchema", [schema_name]))
7933
7933
 
@@ -7945,7 +7945,7 @@ class TableMappings(
7945
7945
  :param table_name: -
7946
7946
  '''
7947
7947
  if __debug__:
7948
- type_hints = typing.get_type_hints(_typecheckingstub__cc6224acd27d7deed41ee040e5e807a11d7ecb24b317c4422b8c0a3f334964ba)
7948
+ type_hints = cached_type_hints(_typecheckingstub__cc6224acd27d7deed41ee040e5e807a11d7ecb24b317c4422b8c0a3f334964ba)
7949
7949
  check_type(argname="argument schema_name", value=schema_name, expected_type=type_hints["schema_name"])
7950
7950
  check_type(argname="argument table_name", value=table_name, expected_type=type_hints["table_name"])
7951
7951
  return typing.cast("TableMappings", jsii.invoke(self, "toLowerCaseTable", [schema_name, table_name]))
@@ -7964,7 +7964,7 @@ class TableMappings(
7964
7964
  :param column_name: -
7965
7965
  '''
7966
7966
  if __debug__:
7967
- type_hints = typing.get_type_hints(_typecheckingstub__10c6d9566b1dcae928b3d86508030f1abbed480a0b02bbaf891f8c749cfd94e5)
7967
+ type_hints = cached_type_hints(_typecheckingstub__10c6d9566b1dcae928b3d86508030f1abbed480a0b02bbaf891f8c749cfd94e5)
7968
7968
  check_type(argname="argument schema_name", value=schema_name, expected_type=type_hints["schema_name"])
7969
7969
  check_type(argname="argument table_name", value=table_name, expected_type=type_hints["table_name"])
7970
7970
  check_type(argname="argument column_name", value=column_name, expected_type=type_hints["column_name"])
@@ -7977,7 +7977,7 @@ class TableMappings(
7977
7977
  :param schema_name: -
7978
7978
  '''
7979
7979
  if __debug__:
7980
- type_hints = typing.get_type_hints(_typecheckingstub__e1a724100d7e5cf52c57957805ad459f86f896f694089f8f86fc86a266869b8e)
7980
+ type_hints = cached_type_hints(_typecheckingstub__e1a724100d7e5cf52c57957805ad459f86f896f694089f8f86fc86a266869b8e)
7981
7981
  check_type(argname="argument schema_name", value=schema_name, expected_type=type_hints["schema_name"])
7982
7982
  return typing.cast("TableMappings", jsii.invoke(self, "toUpperCaseSchema", [schema_name]))
7983
7983
 
@@ -7993,7 +7993,7 @@ class TableMappings(
7993
7993
  :param table_name: -
7994
7994
  '''
7995
7995
  if __debug__:
7996
- type_hints = typing.get_type_hints(_typecheckingstub__4cf6aadd39d4494418aa9d6b4e62a6deb310953532a670f356bdf2f7acc9dd6b)
7996
+ type_hints = cached_type_hints(_typecheckingstub__4cf6aadd39d4494418aa9d6b4e62a6deb310953532a670f356bdf2f7acc9dd6b)
7997
7997
  check_type(argname="argument schema_name", value=schema_name, expected_type=type_hints["schema_name"])
7998
7998
  check_type(argname="argument table_name", value=table_name, expected_type=type_hints["table_name"])
7999
7999
  return typing.cast("TableMappings", jsii.invoke(self, "toUpperCaseTable", [schema_name, table_name]))
@@ -8121,7 +8121,7 @@ class TargetEndpointOptions:
8121
8121
  if isinstance(sql_server_settings, dict):
8122
8122
  sql_server_settings = SqlServerSettings(**sql_server_settings)
8123
8123
  if __debug__:
8124
- type_hints = typing.get_type_hints(_typecheckingstub__89a1de934bc2038760980c0a6ae4594d8fdbbbfb9db5c135b822fe6527a6d030)
8124
+ type_hints = cached_type_hints(_typecheckingstub__89a1de934bc2038760980c0a6ae4594d8fdbbbfb9db5c135b822fe6527a6d030)
8125
8125
  check_type(argname="argument engine", value=engine, expected_type=type_hints["engine"])
8126
8126
  check_type(argname="argument certificate_arn", value=certificate_arn, expected_type=type_hints["certificate_arn"])
8127
8127
  check_type(argname="argument database_name", value=database_name, expected_type=type_hints["database_name"])
@@ -8382,7 +8382,7 @@ class TaskSettings(
8382
8382
  :param max_seconds: Maximum seconds before applying a batch (default 30).
8383
8383
  '''
8384
8384
  if __debug__:
8385
- type_hints = typing.get_type_hints(_typecheckingstub__81b4e144aaa21cbbf158c3b646dff5d42c99a68402d544ca15412c5c6e18e093)
8385
+ type_hints = cached_type_hints(_typecheckingstub__81b4e144aaa21cbbf158c3b646dff5d42c99a68402d544ca15412c5c6e18e093)
8386
8386
  check_type(argname="argument enabled", value=enabled, expected_type=type_hints["enabled"])
8387
8387
  check_type(argname="argument min_seconds", value=min_seconds, expected_type=type_hints["min_seconds"])
8388
8388
  check_type(argname="argument max_seconds", value=max_seconds, expected_type=type_hints["max_seconds"])
@@ -8395,7 +8395,7 @@ class TaskSettings(
8395
8395
  :param rows: -
8396
8396
  '''
8397
8397
  if __debug__:
8398
- type_hints = typing.get_type_hints(_typecheckingstub__9838eb3163b66e8fe71ff316004c426b023c378a2c875ea897ae4c7563c01000)
8398
+ type_hints = cached_type_hints(_typecheckingstub__9838eb3163b66e8fe71ff316004c426b023c378a2c875ea897ae4c7563c01000)
8399
8399
  check_type(argname="argument rows", value=rows, expected_type=type_hints["rows"])
8400
8400
  return typing.cast("TaskSettings", jsii.invoke(self, "withCommitRate", [rows]))
8401
8401
 
@@ -8413,7 +8413,7 @@ class TaskSettings(
8413
8413
  :param escalation_policy: Action after ``escalationCount`` errors.
8414
8414
  '''
8415
8415
  if __debug__:
8416
- type_hints = typing.get_type_hints(_typecheckingstub__2168da72fee056fad436c9886444e5593ca35d1b57f3070d885d92aefc51caa7)
8416
+ type_hints = cached_type_hints(_typecheckingstub__2168da72fee056fad436c9886444e5593ca35d1b57f3070d885d92aefc51caa7)
8417
8417
  check_type(argname="argument policy", value=policy, expected_type=type_hints["policy"])
8418
8418
  check_type(argname="argument escalation_count", value=escalation_count, expected_type=type_hints["escalation_count"])
8419
8419
  check_type(argname="argument escalation_policy", value=escalation_policy, expected_type=type_hints["escalation_policy"])
@@ -8426,7 +8426,7 @@ class TaskSettings(
8426
8426
  :param count: Default 8.
8427
8427
  '''
8428
8428
  if __debug__:
8429
- type_hints = typing.get_type_hints(_typecheckingstub__388ada4e611c1bfed9460a56ba3c2b569ba2909c86830785fdb466104433d6d7)
8429
+ type_hints = cached_type_hints(_typecheckingstub__388ada4e611c1bfed9460a56ba3c2b569ba2909c86830785fdb466104433d6d7)
8430
8430
  check_type(argname="argument count", value=count, expected_type=type_hints["count"])
8431
8431
  return typing.cast("TaskSettings", jsii.invoke(self, "withFullLoadSubTasks", [count]))
8432
8432
 
@@ -8442,7 +8442,7 @@ class TaskSettings(
8442
8442
  :param max_size_kb: Maximum LOB size in KB when mode is LIMITED_LOB. Ignored otherwise.
8443
8443
  '''
8444
8444
  if __debug__:
8445
- type_hints = typing.get_type_hints(_typecheckingstub__7c814a0bcf5f5e346350bd4d9787d3fd67dd8e2042c9dd0d9055749074b20c55)
8445
+ type_hints = cached_type_hints(_typecheckingstub__7c814a0bcf5f5e346350bd4d9787d3fd67dd8e2042c9dd0d9055749074b20c55)
8446
8446
  check_type(argname="argument mode", value=mode, expected_type=type_hints["mode"])
8447
8447
  check_type(argname="argument max_size_kb", value=max_size_kb, expected_type=type_hints["max_size_kb"])
8448
8448
  return typing.cast("TaskSettings", jsii.invoke(self, "withLobMode", [mode, max_size_kb]))
@@ -8462,7 +8462,7 @@ class TaskSettings(
8462
8462
  :param level: -
8463
8463
  '''
8464
8464
  if __debug__:
8465
- type_hints = typing.get_type_hints(_typecheckingstub__a661fa23b0f94d3dbeb22b098a3373824829929e0b52402a205072bd2df1682e)
8465
+ type_hints = cached_type_hints(_typecheckingstub__a661fa23b0f94d3dbeb22b098a3373824829929e0b52402a205072bd2df1682e)
8466
8466
  check_type(argname="argument component", value=component, expected_type=type_hints["component"])
8467
8467
  check_type(argname="argument level", value=level, expected_type=type_hints["level"])
8468
8468
  return typing.cast("TaskSettings", jsii.invoke(self, "withLogging", [component, level]))
@@ -8476,7 +8476,7 @@ class TaskSettings(
8476
8476
  :default: true
8477
8477
  '''
8478
8478
  if __debug__:
8479
- type_hints = typing.get_type_hints(_typecheckingstub__f07affa98f0950517ce31232d6226281e7fda4253998ddfd7f661719f99c6d80)
8479
+ type_hints = cached_type_hints(_typecheckingstub__f07affa98f0950517ce31232d6226281e7fda4253998ddfd7f661719f99c6d80)
8480
8480
  check_type(argname="argument enabled", value=enabled, expected_type=type_hints["enabled"])
8481
8481
  return typing.cast("TaskSettings", jsii.invoke(self, "withLoggingEnabled", [enabled]))
8482
8482
 
@@ -8492,7 +8492,7 @@ class TaskSettings(
8492
8492
  :param interval: Seconds between attempts.
8493
8493
  '''
8494
8494
  if __debug__:
8495
- type_hints = typing.get_type_hints(_typecheckingstub__af27104b1bbebc64128c27b5f5c36c9e85aa8c4614206b9a9cf5e7b88df7891d)
8495
+ type_hints = cached_type_hints(_typecheckingstub__af27104b1bbebc64128c27b5f5c36c9e85aa8c4614206b9a9cf5e7b88df7891d)
8496
8496
  check_type(argname="argument count", value=count, expected_type=type_hints["count"])
8497
8497
  check_type(argname="argument interval", value=interval, expected_type=type_hints["interval"])
8498
8498
  return typing.cast("TaskSettings", jsii.invoke(self, "withRecovery", [count, interval]))
@@ -8506,7 +8506,7 @@ class TaskSettings(
8506
8506
  :param mode: -
8507
8507
  '''
8508
8508
  if __debug__:
8509
- type_hints = typing.get_type_hints(_typecheckingstub__41ac3bba52d90d58fef70e989e0b8126fb2537083091a11b05844a73bbf78d46)
8509
+ type_hints = cached_type_hints(_typecheckingstub__41ac3bba52d90d58fef70e989e0b8126fb2537083091a11b05844a73bbf78d46)
8510
8510
  check_type(argname="argument mode", value=mode, expected_type=type_hints["mode"])
8511
8511
  return typing.cast("TaskSettings", jsii.invoke(self, "withTargetTablePrepMode", [mode]))
8512
8512
 
@@ -8628,7 +8628,7 @@ class DmsEndpoint(
8628
8628
  :param username: Database user name. Used when not using Secrets Manager.
8629
8629
  '''
8630
8630
  if __debug__:
8631
- type_hints = typing.get_type_hints(_typecheckingstub__167ea1158fc889bdeca803db65f5d6ccfd0dfe54cab2139811bcea463e255cff)
8631
+ type_hints = cached_type_hints(_typecheckingstub__167ea1158fc889bdeca803db65f5d6ccfd0dfe54cab2139811bcea463e255cff)
8632
8632
  check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
8633
8633
  check_type(argname="argument id", value=id, expected_type=type_hints["id"])
8634
8634
  props = DmsEndpointProps(
@@ -11,7 +11,7 @@ import jsii
11
11
  import publication
12
12
  import typing_extensions
13
13
 
14
- from jsii._type_checking import check_type
14
+ from jsii._type_checking import cached_type_hints, check_type
15
15
 
16
16
 
17
17
  import aws_cdk._jsii
@@ -19,9 +19,9 @@ import constructs._jsii
19
19
 
20
20
  __jsii_assembly__ = jsii.JSIIAssembly.load(
21
21
  "cdk-dms-replication",
22
- "0.2.7",
22
+ "0.2.9",
23
23
  __name__[0:-6],
24
- "cdk-dms-replication@0.2.7.jsii.tgz",
24
+ "cdk-dms-replication@0.2.9.jsii.tgz",
25
25
  )
26
26
 
27
27
  __all__ = [
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cdk-dms-replication
3
- Version: 0.2.7
3
+ Version: 0.2.9
4
4
  Summary: L3 CDK Constructs for Amazon Database Migration Service (DMS) — pattern construct bundling replication instance, endpoints, and tasks with secure defaults.
5
5
  Home-page: https://github.com/kckempf/cdk-dms-replication#readme
6
6
  Author: Kevin Kempf<kckempf@gmail.com>
@@ -23,7 +23,7 @@ Description-Content-Type: text/markdown
23
23
  License-File: LICENSE
24
24
  Requires-Dist: aws-cdk-lib<3.0.0,>=2.100.0
25
25
  Requires-Dist: constructs<11.0.0,>=10.5.1
26
- Requires-Dist: jsii<2.0.0,>=1.137.0
26
+ Requires-Dist: jsii<2.0.0,>=1.138.0
27
27
  Requires-Dist: publication>=0.0.3
28
28
 
29
29
  # cdk-dms-replication
@@ -11,4 +11,4 @@ src/cdk_dms_replication.egg-info/dependency_links.txt
11
11
  src/cdk_dms_replication.egg-info/requires.txt
12
12
  src/cdk_dms_replication.egg-info/top_level.txt
13
13
  src/cdk_dms_replication/_jsii/__init__.py
14
- src/cdk_dms_replication/_jsii/cdk-dms-replication@0.2.7.jsii.tgz
14
+ src/cdk_dms_replication/_jsii/cdk-dms-replication@0.2.9.jsii.tgz
@@ -1,4 +1,4 @@
1
1
  aws-cdk-lib<3.0.0,>=2.100.0
2
2
  constructs<11.0.0,>=10.5.1
3
- jsii<2.0.0,>=1.137.0
3
+ jsii<2.0.0,>=1.138.0
4
4
  publication>=0.0.3