@@ -46,7 +46,8 @@ 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 ),
49+ "timestream_query_endpoint_url" : _ConfigArg (dtype = str , nullable = True , enforced = True ),
50+ "timestream_write_endpoint_url" : _ConfigArg (dtype = str , nullable = True , enforced = True ),
5051 # Botocore config
5152 "botocore_config" : _ConfigArg (dtype = botocore .config .Config , nullable = True ),
5253 "verify" : _ConfigArg (dtype = str , nullable = True ),
@@ -69,7 +70,8 @@ def __init__(self) -> None:
6970 self .lakeformation_endpoint_url = None
7071 self .dynamodb_endpoint_url = None
7172 self .secretsmanager_endpoint_url = None
72- self .timestream_endpoint_url = None
73+ self .timestream_write_endpoint_url = None
74+ self .timestream_query_endpoint_url = None
7375 self .botocore_config = None
7476 self .verify = None
7577 for name in _CONFIG_ARGS :
@@ -390,13 +392,22 @@ def secretsmanager_endpoint_url(self, value: Optional[str]) -> None:
390392 self ._set_config_value (key = "secretsmanager_endpoint_url" , value = value )
391393
392394 @property
393- def timestream_endpoint_url (self ) -> Optional [str ]:
394- """Property timestream_endpoint_url ."""
395- return cast (Optional [str ], self ["timestream_endpoint_url " ])
395+ def timestream_query_endpoint_url (self ) -> Optional [str ]:
396+ """Property timestream_query_endpoint_url ."""
397+ return cast (Optional [str ], self ["timestream_query_endpoint_url " ])
396398
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 )
399+ @timestream_query_endpoint_url .setter
400+ def timestream_query_endpoint_url (self , value : Optional [str ]) -> None :
401+ self ._set_config_value (key = "timestream_query_endpoint_url" , value = value )
402+
403+ @property
404+ def timestream_write_endpoint_url (self ) -> Optional [str ]:
405+ """Property timestream_write_endpoint_url."""
406+ return cast (Optional [str ], self ["timestream_write_endpoint_url" ])
407+
408+ @timestream_write_endpoint_url .setter
409+ def timestream_write_endpoint_url (self , value : Optional [str ]) -> None :
410+ self ._set_config_value (key = "timestream_write_endpoint_url" , value = value )
400411
401412 @property
402413 def botocore_config (self ) -> botocore .config .Config :
0 commit comments