@@ -41,6 +41,7 @@ class _ConfigArg(NamedTuple):
4141 "max_local_cache_entries" : _ConfigArg (dtype = int , nullable = False , parent_parameter_key = "athena_cache_settings" ),
4242 "athena_query_wait_polling_delay" : _ConfigArg (dtype = float , nullable = False ),
4343 "cloudwatch_query_wait_polling_delay" : _ConfigArg (dtype = float , nullable = False ),
44+ "lakeformation_query_wait_polling_delay" : _ConfigArg (dtype = float , nullable = False ),
4445 "s3_block_size" : _ConfigArg (dtype = int , nullable = False , enforced = True ),
4546 "workgroup" : _ConfigArg (dtype = str , nullable = False , enforced = True ),
4647 "chunksize" : _ConfigArg (dtype = int , nullable = False , enforced = True ),
@@ -53,6 +54,7 @@ class _ConfigArg(NamedTuple):
5354 "redshift_endpoint_url" : _ConfigArg (dtype = str , nullable = True , enforced = True , loaded = True ),
5455 "kms_endpoint_url" : _ConfigArg (dtype = str , nullable = True , enforced = True , loaded = True ),
5556 "emr_endpoint_url" : _ConfigArg (dtype = str , nullable = True , enforced = True , loaded = True ),
57+ "lakeformation_endpoint_url" : _ConfigArg (dtype = str , nullable = True , enforced = True , loaded = True ),
5658 "dynamodb_endpoint_url" : _ConfigArg (dtype = str , nullable = True , enforced = True , loaded = True ),
5759 "secretsmanager_endpoint_url" : _ConfigArg (dtype = str , nullable = True , enforced = True , loaded = True ),
5860 "timestream_query_endpoint_url" : _ConfigArg (dtype = str , nullable = True , enforced = True , loaded = True ),
@@ -344,6 +346,15 @@ def cloudwatch_query_wait_polling_delay(self) -> float:
344346 def cloudwatch_query_wait_polling_delay (self , value : float ) -> None :
345347 self ._set_config_value (key = "cloudwatch_query_wait_polling_delay" , value = value )
346348
349+ @property
350+ def lakeformation_query_wait_polling_delay (self ) -> float :
351+ """Property lakeformation_query_wait_polling_delay."""
352+ return cast (float , self ["lakeformation_query_wait_polling_delay" ])
353+
354+ @lakeformation_query_wait_polling_delay .setter
355+ def lakeformation_query_wait_polling_delay (self , value : float ) -> None :
356+ self ._set_config_value (key = "lakeformation_query_wait_polling_delay" , value = value )
357+
347358 @property
348359 def s3_block_size (self ) -> int :
349360 """Property s3_block_size."""
@@ -443,6 +454,15 @@ def emr_endpoint_url(self) -> Optional[str]:
443454 def emr_endpoint_url (self , value : Optional [str ]) -> None :
444455 self ._set_config_value (key = "emr_endpoint_url" , value = value )
445456
457+ @property
458+ def lakeformation_endpoint_url (self ) -> Optional [str ]:
459+ """Property lakeformation_endpoint_url."""
460+ return cast (Optional [str ], self ["lakeformation_endpoint_url" ])
461+
462+ @lakeformation_endpoint_url .setter
463+ def lakeformation_endpoint_url (self , value : Optional [str ]) -> None :
464+ self ._set_config_value (key = "lakeformation_endpoint_url" , value = value )
465+
446466 @property
447467 def dynamodb_endpoint_url (self ) -> Optional [str ]:
448468 """Property dynamodb_endpoint_url."""
0 commit comments