@@ -46,6 +46,7 @@ class _ConfigArg(NamedTuple):
4646 "lakeformation_endpoint_url" : _ConfigArg (dtype = str , nullable = True , enforced = True ),
4747 "dynamodb_endpoint_url" : _ConfigArg (dtype = str , nullable = True , enforced = True ),
4848 "secretsmanager_endpoint_url" : _ConfigArg (dtype = str , nullable = True , enforced = True ),
49+ "timestream_endpoint_url" : _ConfigArg (dtype = str , nullable = True , enforced = True ),
4950 # Botocore config
5051 "botocore_config" : _ConfigArg (dtype = botocore .config .Config , nullable = True ),
5152 "verify" : _ConfigArg (dtype = str , nullable = True ),
@@ -68,6 +69,7 @@ def __init__(self) -> None:
6869 self .lakeformation_endpoint_url = None
6970 self .dynamodb_endpoint_url = None
7071 self .secretsmanager_endpoint_url = None
72+ self .timestream_endpoint_url = None
7173 self .botocore_config = None
7274 self .verify = None
7375 for name in _CONFIG_ARGS :
@@ -387,6 +389,15 @@ def secretsmanager_endpoint_url(self) -> Optional[str]:
387389 def secretsmanager_endpoint_url (self , value : Optional [str ]) -> None :
388390 self ._set_config_value (key = "secretsmanager_endpoint_url" , value = value )
389391
392+ @property
393+ def timestream_endpoint_url (self ) -> Optional [str ]:
394+ """Property timestream_endpoint_url."""
395+ return cast (Optional [str ], self ["timestream_endpoint_url" ])
396+
397+ @timestream_endpoint_url .setter
398+ def timestream_endpoint_url (self , value : Optional [str ]) -> None :
399+ self ._set_config_value (key = "timestream_endpoint_url" , value = value )
400+
390401 @property
391402 def botocore_config (self ) -> botocore .config .Config :
392403 """Property botocore_config."""
0 commit comments