mypy-boto3-workspaces-web 1.35.23__py3-none-any.whl → 1.35.93__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.
@@ -1,7 +1,7 @@
1
1
  """
2
- Type annotations for workspaces-web service client.
2
+ Type annotations for workspaces-web service Client.
3
3
 
4
- [Open documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/)
4
+ [Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/)
5
5
 
6
6
  Usage::
7
7
 
@@ -12,17 +12,25 @@ Usage::
12
12
  session = Session()
13
13
  client: WorkSpacesWebClient = session.client("workspaces-web")
14
14
  ```
15
+
16
+ Copyright 2025 Vlad Emelianov
15
17
  """
16
18
 
19
+ from __future__ import annotations
20
+
17
21
  import sys
18
- from typing import Any, Dict, Mapping, Type
22
+ from typing import Any, overload
19
23
 
20
24
  from botocore.client import BaseClient, ClientMeta
25
+ from botocore.errorfactory import BaseClientExceptions
26
+ from botocore.exceptions import ClientError as BotocoreClientError
21
27
 
22
- from .paginator import ListSessionsPaginator
28
+ from .paginator import ListDataProtectionSettingsPaginator, ListSessionsPaginator
23
29
  from .type_defs import (
24
30
  AssociateBrowserSettingsRequestRequestTypeDef,
25
31
  AssociateBrowserSettingsResponseTypeDef,
32
+ AssociateDataProtectionSettingsRequestRequestTypeDef,
33
+ AssociateDataProtectionSettingsResponseTypeDef,
26
34
  AssociateIpAccessSettingsRequestRequestTypeDef,
27
35
  AssociateIpAccessSettingsResponseTypeDef,
28
36
  AssociateNetworkSettingsRequestRequestTypeDef,
@@ -35,6 +43,8 @@ from .type_defs import (
35
43
  AssociateUserSettingsResponseTypeDef,
36
44
  CreateBrowserSettingsRequestRequestTypeDef,
37
45
  CreateBrowserSettingsResponseTypeDef,
46
+ CreateDataProtectionSettingsRequestRequestTypeDef,
47
+ CreateDataProtectionSettingsResponseTypeDef,
38
48
  CreateIdentityProviderRequestRequestTypeDef,
39
49
  CreateIdentityProviderResponseTypeDef,
40
50
  CreateIpAccessSettingsRequestRequestTypeDef,
@@ -50,6 +60,7 @@ from .type_defs import (
50
60
  CreateUserSettingsRequestRequestTypeDef,
51
61
  CreateUserSettingsResponseTypeDef,
52
62
  DeleteBrowserSettingsRequestRequestTypeDef,
63
+ DeleteDataProtectionSettingsRequestRequestTypeDef,
53
64
  DeleteIdentityProviderRequestRequestTypeDef,
54
65
  DeleteIpAccessSettingsRequestRequestTypeDef,
55
66
  DeleteNetworkSettingsRequestRequestTypeDef,
@@ -58,6 +69,7 @@ from .type_defs import (
58
69
  DeleteUserAccessLoggingSettingsRequestRequestTypeDef,
59
70
  DeleteUserSettingsRequestRequestTypeDef,
60
71
  DisassociateBrowserSettingsRequestRequestTypeDef,
72
+ DisassociateDataProtectionSettingsRequestRequestTypeDef,
61
73
  DisassociateIpAccessSettingsRequestRequestTypeDef,
62
74
  DisassociateNetworkSettingsRequestRequestTypeDef,
63
75
  DisassociateTrustStoreRequestRequestTypeDef,
@@ -66,6 +78,8 @@ from .type_defs import (
66
78
  ExpireSessionRequestRequestTypeDef,
67
79
  GetBrowserSettingsRequestRequestTypeDef,
68
80
  GetBrowserSettingsResponseTypeDef,
81
+ GetDataProtectionSettingsRequestRequestTypeDef,
82
+ GetDataProtectionSettingsResponseTypeDef,
69
83
  GetIdentityProviderRequestRequestTypeDef,
70
84
  GetIdentityProviderResponseTypeDef,
71
85
  GetIpAccessSettingsRequestRequestTypeDef,
@@ -88,6 +102,8 @@ from .type_defs import (
88
102
  GetUserSettingsResponseTypeDef,
89
103
  ListBrowserSettingsRequestRequestTypeDef,
90
104
  ListBrowserSettingsResponseTypeDef,
105
+ ListDataProtectionSettingsRequestRequestTypeDef,
106
+ ListDataProtectionSettingsResponseTypeDef,
91
107
  ListIdentityProvidersRequestRequestTypeDef,
92
108
  ListIdentityProvidersResponseTypeDef,
93
109
  ListIpAccessSettingsRequestRequestTypeDef,
@@ -112,6 +128,8 @@ from .type_defs import (
112
128
  UntagResourceRequestRequestTypeDef,
113
129
  UpdateBrowserSettingsRequestRequestTypeDef,
114
130
  UpdateBrowserSettingsResponseTypeDef,
131
+ UpdateDataProtectionSettingsRequestRequestTypeDef,
132
+ UpdateDataProtectionSettingsResponseTypeDef,
115
133
  UpdateIdentityProviderRequestRequestTypeDef,
116
134
  UpdateIdentityProviderResponseTypeDef,
117
135
  UpdateIpAccessSettingsRequestRequestTypeDef,
@@ -128,6 +146,12 @@ from .type_defs import (
128
146
  UpdateUserSettingsResponseTypeDef,
129
147
  )
130
148
 
149
+ if sys.version_info >= (3, 9):
150
+ from builtins import dict as Dict
151
+ from builtins import type as Type
152
+ from collections.abc import Mapping
153
+ else:
154
+ from typing import Dict, Mapping, Type
131
155
  if sys.version_info >= (3, 12):
132
156
  from typing import Literal, Unpack
133
157
  else:
@@ -135,14 +159,7 @@ else:
135
159
 
136
160
  __all__ = ("WorkSpacesWebClient",)
137
161
 
138
- class BotocoreClientError(Exception):
139
- MSG_TEMPLATE: str
140
-
141
- def __init__(self, error_response: Mapping[str, Any], operation_name: str) -> None:
142
- self.response: Dict[str, Any]
143
- self.operation_name: str
144
-
145
- class Exceptions:
162
+ class Exceptions(BaseClientExceptions):
146
163
  AccessDeniedException: Type[BotocoreClientError]
147
164
  ClientError: Type[BotocoreClientError]
148
165
  ConflictException: Type[BotocoreClientError]
@@ -166,27 +183,55 @@ class WorkSpacesWebClient(BaseClient):
166
183
  """
167
184
  WorkSpacesWebClient exceptions.
168
185
 
169
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.exceptions)
186
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client)
170
187
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#exceptions)
171
188
  """
172
189
 
190
+ def can_paginate(self, operation_name: str) -> bool:
191
+ """
192
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/can_paginate.html)
193
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#can_paginate)
194
+ """
195
+
196
+ def generate_presigned_url(
197
+ self,
198
+ ClientMethod: str,
199
+ Params: Mapping[str, Any] = ...,
200
+ ExpiresIn: int = 3600,
201
+ HttpMethod: str = ...,
202
+ ) -> str:
203
+ """
204
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/generate_presigned_url.html)
205
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#generate_presigned_url)
206
+ """
207
+
173
208
  def associate_browser_settings(
174
209
  self, **kwargs: Unpack[AssociateBrowserSettingsRequestRequestTypeDef]
175
210
  ) -> AssociateBrowserSettingsResponseTypeDef:
176
211
  """
177
212
  Associates a browser settings resource with a web portal.
178
213
 
179
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.associate_browser_settings)
214
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/associate_browser_settings.html)
180
215
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#associate_browser_settings)
181
216
  """
182
217
 
218
+ def associate_data_protection_settings(
219
+ self, **kwargs: Unpack[AssociateDataProtectionSettingsRequestRequestTypeDef]
220
+ ) -> AssociateDataProtectionSettingsResponseTypeDef:
221
+ """
222
+ Associates a data protection settings resource with a web portal.
223
+
224
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/associate_data_protection_settings.html)
225
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#associate_data_protection_settings)
226
+ """
227
+
183
228
  def associate_ip_access_settings(
184
229
  self, **kwargs: Unpack[AssociateIpAccessSettingsRequestRequestTypeDef]
185
230
  ) -> AssociateIpAccessSettingsResponseTypeDef:
186
231
  """
187
232
  Associates an IP access settings resource with a web portal.
188
233
 
189
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.associate_ip_access_settings)
234
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/associate_ip_access_settings.html)
190
235
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#associate_ip_access_settings)
191
236
  """
192
237
 
@@ -196,7 +241,7 @@ class WorkSpacesWebClient(BaseClient):
196
241
  """
197
242
  Associates a network settings resource with a web portal.
198
243
 
199
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.associate_network_settings)
244
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/associate_network_settings.html)
200
245
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#associate_network_settings)
201
246
  """
202
247
 
@@ -206,7 +251,7 @@ class WorkSpacesWebClient(BaseClient):
206
251
  """
207
252
  Associates a trust store with a web portal.
208
253
 
209
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.associate_trust_store)
254
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/associate_trust_store.html)
210
255
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#associate_trust_store)
211
256
  """
212
257
 
@@ -216,7 +261,7 @@ class WorkSpacesWebClient(BaseClient):
216
261
  """
217
262
  Associates a user access logging settings resource with a web portal.
218
263
 
219
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.associate_user_access_logging_settings)
264
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/associate_user_access_logging_settings.html)
220
265
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#associate_user_access_logging_settings)
221
266
  """
222
267
 
@@ -226,43 +271,38 @@ class WorkSpacesWebClient(BaseClient):
226
271
  """
227
272
  Associates a user settings resource with a web portal.
228
273
 
229
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.associate_user_settings)
274
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/associate_user_settings.html)
230
275
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#associate_user_settings)
231
276
  """
232
277
 
233
- def can_paginate(self, operation_name: str) -> bool:
234
- """
235
- Check if an operation can be paginated.
236
-
237
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.can_paginate)
238
- [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#can_paginate)
239
- """
240
-
241
- def close(self) -> None:
242
- """
243
- Closes underlying endpoint connections.
244
-
245
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.close)
246
- [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#close)
247
- """
248
-
249
278
  def create_browser_settings(
250
279
  self, **kwargs: Unpack[CreateBrowserSettingsRequestRequestTypeDef]
251
280
  ) -> CreateBrowserSettingsResponseTypeDef:
252
281
  """
253
282
  Creates a browser settings resource that can be associated with a web portal.
254
283
 
255
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.create_browser_settings)
284
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/create_browser_settings.html)
256
285
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#create_browser_settings)
257
286
  """
258
287
 
288
+ def create_data_protection_settings(
289
+ self, **kwargs: Unpack[CreateDataProtectionSettingsRequestRequestTypeDef]
290
+ ) -> CreateDataProtectionSettingsResponseTypeDef:
291
+ """
292
+ Creates a data protection settings resource that can be associated with a web
293
+ portal.
294
+
295
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/create_data_protection_settings.html)
296
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#create_data_protection_settings)
297
+ """
298
+
259
299
  def create_identity_provider(
260
300
  self, **kwargs: Unpack[CreateIdentityProviderRequestRequestTypeDef]
261
301
  ) -> CreateIdentityProviderResponseTypeDef:
262
302
  """
263
303
  Creates an identity provider resource that is then associated with a web portal.
264
304
 
265
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.create_identity_provider)
305
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/create_identity_provider.html)
266
306
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#create_identity_provider)
267
307
  """
268
308
 
@@ -272,7 +312,7 @@ class WorkSpacesWebClient(BaseClient):
272
312
  """
273
313
  Creates an IP access settings resource that can be associated with a web portal.
274
314
 
275
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.create_ip_access_settings)
315
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/create_ip_access_settings.html)
276
316
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#create_ip_access_settings)
277
317
  """
278
318
 
@@ -282,7 +322,7 @@ class WorkSpacesWebClient(BaseClient):
282
322
  """
283
323
  Creates a network settings resource that can be associated with a web portal.
284
324
 
285
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.create_network_settings)
325
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/create_network_settings.html)
286
326
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#create_network_settings)
287
327
  """
288
328
 
@@ -292,7 +332,7 @@ class WorkSpacesWebClient(BaseClient):
292
332
  """
293
333
  Creates a web portal.
294
334
 
295
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.create_portal)
335
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/create_portal.html)
296
336
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#create_portal)
297
337
  """
298
338
 
@@ -302,7 +342,7 @@ class WorkSpacesWebClient(BaseClient):
302
342
  """
303
343
  Creates a trust store that can be associated with a web portal.
304
344
 
305
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.create_trust_store)
345
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/create_trust_store.html)
306
346
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#create_trust_store)
307
347
  """
308
348
 
@@ -311,10 +351,9 @@ class WorkSpacesWebClient(BaseClient):
311
351
  ) -> CreateUserAccessLoggingSettingsResponseTypeDef:
312
352
  """
313
353
  Creates a user access logging settings resource that can be associated with a
314
- web
315
- portal.
354
+ web portal.
316
355
 
317
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.create_user_access_logging_settings)
356
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/create_user_access_logging_settings.html)
318
357
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#create_user_access_logging_settings)
319
358
  """
320
359
 
@@ -324,7 +363,7 @@ class WorkSpacesWebClient(BaseClient):
324
363
  """
325
364
  Creates a user settings resource that can be associated with a web portal.
326
365
 
327
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.create_user_settings)
366
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/create_user_settings.html)
328
367
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#create_user_settings)
329
368
  """
330
369
 
@@ -334,17 +373,27 @@ class WorkSpacesWebClient(BaseClient):
334
373
  """
335
374
  Deletes browser settings.
336
375
 
337
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.delete_browser_settings)
376
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/delete_browser_settings.html)
338
377
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#delete_browser_settings)
339
378
  """
340
379
 
380
+ def delete_data_protection_settings(
381
+ self, **kwargs: Unpack[DeleteDataProtectionSettingsRequestRequestTypeDef]
382
+ ) -> Dict[str, Any]:
383
+ """
384
+ Deletes data protection settings.
385
+
386
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/delete_data_protection_settings.html)
387
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#delete_data_protection_settings)
388
+ """
389
+
341
390
  def delete_identity_provider(
342
391
  self, **kwargs: Unpack[DeleteIdentityProviderRequestRequestTypeDef]
343
392
  ) -> Dict[str, Any]:
344
393
  """
345
394
  Deletes the identity provider.
346
395
 
347
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.delete_identity_provider)
396
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/delete_identity_provider.html)
348
397
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#delete_identity_provider)
349
398
  """
350
399
 
@@ -354,7 +403,7 @@ class WorkSpacesWebClient(BaseClient):
354
403
  """
355
404
  Deletes IP access settings.
356
405
 
357
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.delete_ip_access_settings)
406
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/delete_ip_access_settings.html)
358
407
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#delete_ip_access_settings)
359
408
  """
360
409
 
@@ -364,7 +413,7 @@ class WorkSpacesWebClient(BaseClient):
364
413
  """
365
414
  Deletes network settings.
366
415
 
367
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.delete_network_settings)
416
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/delete_network_settings.html)
368
417
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#delete_network_settings)
369
418
  """
370
419
 
@@ -372,7 +421,7 @@ class WorkSpacesWebClient(BaseClient):
372
421
  """
373
422
  Deletes a web portal.
374
423
 
375
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.delete_portal)
424
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/delete_portal.html)
376
425
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#delete_portal)
377
426
  """
378
427
 
@@ -382,7 +431,7 @@ class WorkSpacesWebClient(BaseClient):
382
431
  """
383
432
  Deletes the trust store.
384
433
 
385
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.delete_trust_store)
434
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/delete_trust_store.html)
386
435
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#delete_trust_store)
387
436
  """
388
437
 
@@ -392,7 +441,7 @@ class WorkSpacesWebClient(BaseClient):
392
441
  """
393
442
  Deletes user access logging settings.
394
443
 
395
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.delete_user_access_logging_settings)
444
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/delete_user_access_logging_settings.html)
396
445
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#delete_user_access_logging_settings)
397
446
  """
398
447
 
@@ -402,7 +451,7 @@ class WorkSpacesWebClient(BaseClient):
402
451
  """
403
452
  Deletes user settings.
404
453
 
405
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.delete_user_settings)
454
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/delete_user_settings.html)
406
455
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#delete_user_settings)
407
456
  """
408
457
 
@@ -412,17 +461,27 @@ class WorkSpacesWebClient(BaseClient):
412
461
  """
413
462
  Disassociates browser settings from a web portal.
414
463
 
415
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.disassociate_browser_settings)
464
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/disassociate_browser_settings.html)
416
465
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#disassociate_browser_settings)
417
466
  """
418
467
 
468
+ def disassociate_data_protection_settings(
469
+ self, **kwargs: Unpack[DisassociateDataProtectionSettingsRequestRequestTypeDef]
470
+ ) -> Dict[str, Any]:
471
+ """
472
+ Disassociates data protection settings from a web portal.
473
+
474
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/disassociate_data_protection_settings.html)
475
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#disassociate_data_protection_settings)
476
+ """
477
+
419
478
  def disassociate_ip_access_settings(
420
479
  self, **kwargs: Unpack[DisassociateIpAccessSettingsRequestRequestTypeDef]
421
480
  ) -> Dict[str, Any]:
422
481
  """
423
482
  Disassociates IP access settings from a web portal.
424
483
 
425
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.disassociate_ip_access_settings)
484
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/disassociate_ip_access_settings.html)
426
485
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#disassociate_ip_access_settings)
427
486
  """
428
487
 
@@ -432,7 +491,7 @@ class WorkSpacesWebClient(BaseClient):
432
491
  """
433
492
  Disassociates network settings from a web portal.
434
493
 
435
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.disassociate_network_settings)
494
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/disassociate_network_settings.html)
436
495
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#disassociate_network_settings)
437
496
  """
438
497
 
@@ -442,7 +501,7 @@ class WorkSpacesWebClient(BaseClient):
442
501
  """
443
502
  Disassociates a trust store from a web portal.
444
503
 
445
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.disassociate_trust_store)
504
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/disassociate_trust_store.html)
446
505
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#disassociate_trust_store)
447
506
  """
448
507
 
@@ -452,7 +511,7 @@ class WorkSpacesWebClient(BaseClient):
452
511
  """
453
512
  Disassociates user access logging settings from a web portal.
454
513
 
455
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.disassociate_user_access_logging_settings)
514
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/disassociate_user_access_logging_settings.html)
456
515
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#disassociate_user_access_logging_settings)
457
516
  """
458
517
 
@@ -462,7 +521,7 @@ class WorkSpacesWebClient(BaseClient):
462
521
  """
463
522
  Disassociates user settings from a web portal.
464
523
 
465
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.disassociate_user_settings)
524
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/disassociate_user_settings.html)
466
525
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#disassociate_user_settings)
467
526
  """
468
527
 
@@ -472,41 +531,37 @@ class WorkSpacesWebClient(BaseClient):
472
531
  """
473
532
  Expires an active secure browser session.
474
533
 
475
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.expire_session)
534
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/expire_session.html)
476
535
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#expire_session)
477
536
  """
478
537
 
479
- def generate_presigned_url(
480
- self,
481
- ClientMethod: str,
482
- Params: Mapping[str, Any] = ...,
483
- ExpiresIn: int = 3600,
484
- HttpMethod: str = ...,
485
- ) -> str:
486
- """
487
- Generate a presigned url given a client, its method, and arguments.
488
-
489
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.generate_presigned_url)
490
- [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#generate_presigned_url)
491
- """
492
-
493
538
  def get_browser_settings(
494
539
  self, **kwargs: Unpack[GetBrowserSettingsRequestRequestTypeDef]
495
540
  ) -> GetBrowserSettingsResponseTypeDef:
496
541
  """
497
542
  Gets browser settings.
498
543
 
499
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.get_browser_settings)
544
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/get_browser_settings.html)
500
545
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#get_browser_settings)
501
546
  """
502
547
 
548
+ def get_data_protection_settings(
549
+ self, **kwargs: Unpack[GetDataProtectionSettingsRequestRequestTypeDef]
550
+ ) -> GetDataProtectionSettingsResponseTypeDef:
551
+ """
552
+ Gets the data protection settings.
553
+
554
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/get_data_protection_settings.html)
555
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#get_data_protection_settings)
556
+ """
557
+
503
558
  def get_identity_provider(
504
559
  self, **kwargs: Unpack[GetIdentityProviderRequestRequestTypeDef]
505
560
  ) -> GetIdentityProviderResponseTypeDef:
506
561
  """
507
562
  Gets the identity provider.
508
563
 
509
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.get_identity_provider)
564
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/get_identity_provider.html)
510
565
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#get_identity_provider)
511
566
  """
512
567
 
@@ -516,7 +571,7 @@ class WorkSpacesWebClient(BaseClient):
516
571
  """
517
572
  Gets the IP access settings.
518
573
 
519
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.get_ip_access_settings)
574
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/get_ip_access_settings.html)
520
575
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#get_ip_access_settings)
521
576
  """
522
577
 
@@ -526,7 +581,7 @@ class WorkSpacesWebClient(BaseClient):
526
581
  """
527
582
  Gets the network settings.
528
583
 
529
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.get_network_settings)
584
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/get_network_settings.html)
530
585
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#get_network_settings)
531
586
  """
532
587
 
@@ -536,7 +591,7 @@ class WorkSpacesWebClient(BaseClient):
536
591
  """
537
592
  Gets the web portal.
538
593
 
539
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.get_portal)
594
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/get_portal.html)
540
595
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#get_portal)
541
596
  """
542
597
 
@@ -546,7 +601,7 @@ class WorkSpacesWebClient(BaseClient):
546
601
  """
547
602
  Gets the service provider metadata.
548
603
 
549
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.get_portal_service_provider_metadata)
604
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/get_portal_service_provider_metadata.html)
550
605
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#get_portal_service_provider_metadata)
551
606
  """
552
607
 
@@ -556,7 +611,7 @@ class WorkSpacesWebClient(BaseClient):
556
611
  """
557
612
  Gets information for a secure browser session.
558
613
 
559
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.get_session)
614
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/get_session.html)
560
615
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#get_session)
561
616
  """
562
617
 
@@ -566,7 +621,7 @@ class WorkSpacesWebClient(BaseClient):
566
621
  """
567
622
  Gets the trust store.
568
623
 
569
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.get_trust_store)
624
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/get_trust_store.html)
570
625
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#get_trust_store)
571
626
  """
572
627
 
@@ -576,7 +631,7 @@ class WorkSpacesWebClient(BaseClient):
576
631
  """
577
632
  Gets the trust store certificate.
578
633
 
579
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.get_trust_store_certificate)
634
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/get_trust_store_certificate.html)
580
635
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#get_trust_store_certificate)
581
636
  """
582
637
 
@@ -586,7 +641,7 @@ class WorkSpacesWebClient(BaseClient):
586
641
  """
587
642
  Gets user access logging settings.
588
643
 
589
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.get_user_access_logging_settings)
644
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/get_user_access_logging_settings.html)
590
645
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#get_user_access_logging_settings)
591
646
  """
592
647
 
@@ -596,7 +651,7 @@ class WorkSpacesWebClient(BaseClient):
596
651
  """
597
652
  Gets user settings.
598
653
 
599
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.get_user_settings)
654
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/get_user_settings.html)
600
655
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#get_user_settings)
601
656
  """
602
657
 
@@ -606,17 +661,27 @@ class WorkSpacesWebClient(BaseClient):
606
661
  """
607
662
  Retrieves a list of browser settings.
608
663
 
609
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.list_browser_settings)
664
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/list_browser_settings.html)
610
665
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#list_browser_settings)
611
666
  """
612
667
 
668
+ def list_data_protection_settings(
669
+ self, **kwargs: Unpack[ListDataProtectionSettingsRequestRequestTypeDef]
670
+ ) -> ListDataProtectionSettingsResponseTypeDef:
671
+ """
672
+ Retrieves a list of data protection settings.
673
+
674
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/list_data_protection_settings.html)
675
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#list_data_protection_settings)
676
+ """
677
+
613
678
  def list_identity_providers(
614
679
  self, **kwargs: Unpack[ListIdentityProvidersRequestRequestTypeDef]
615
680
  ) -> ListIdentityProvidersResponseTypeDef:
616
681
  """
617
682
  Retrieves a list of identity providers for a specific web portal.
618
683
 
619
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.list_identity_providers)
684
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/list_identity_providers.html)
620
685
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#list_identity_providers)
621
686
  """
622
687
 
@@ -626,7 +691,7 @@ class WorkSpacesWebClient(BaseClient):
626
691
  """
627
692
  Retrieves a list of IP access settings.
628
693
 
629
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.list_ip_access_settings)
694
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/list_ip_access_settings.html)
630
695
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#list_ip_access_settings)
631
696
  """
632
697
 
@@ -636,7 +701,7 @@ class WorkSpacesWebClient(BaseClient):
636
701
  """
637
702
  Retrieves a list of network settings.
638
703
 
639
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.list_network_settings)
704
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/list_network_settings.html)
640
705
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#list_network_settings)
641
706
  """
642
707
 
@@ -646,7 +711,7 @@ class WorkSpacesWebClient(BaseClient):
646
711
  """
647
712
  Retrieves a list or web portals.
648
713
 
649
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.list_portals)
714
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/list_portals.html)
650
715
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#list_portals)
651
716
  """
652
717
 
@@ -656,7 +721,7 @@ class WorkSpacesWebClient(BaseClient):
656
721
  """
657
722
  Lists information for multiple secure browser sessions from a specific portal.
658
723
 
659
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.list_sessions)
724
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/list_sessions.html)
660
725
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#list_sessions)
661
726
  """
662
727
 
@@ -666,7 +731,7 @@ class WorkSpacesWebClient(BaseClient):
666
731
  """
667
732
  Retrieves a list of tags for a resource.
668
733
 
669
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.list_tags_for_resource)
734
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/list_tags_for_resource.html)
670
735
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#list_tags_for_resource)
671
736
  """
672
737
 
@@ -676,7 +741,7 @@ class WorkSpacesWebClient(BaseClient):
676
741
  """
677
742
  Retrieves a list of trust store certificates.
678
743
 
679
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.list_trust_store_certificates)
744
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/list_trust_store_certificates.html)
680
745
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#list_trust_store_certificates)
681
746
  """
682
747
 
@@ -686,7 +751,7 @@ class WorkSpacesWebClient(BaseClient):
686
751
  """
687
752
  Retrieves a list of trust stores.
688
753
 
689
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.list_trust_stores)
754
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/list_trust_stores.html)
690
755
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#list_trust_stores)
691
756
  """
692
757
 
@@ -696,7 +761,7 @@ class WorkSpacesWebClient(BaseClient):
696
761
  """
697
762
  Retrieves a list of user access logging settings.
698
763
 
699
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.list_user_access_logging_settings)
764
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/list_user_access_logging_settings.html)
700
765
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#list_user_access_logging_settings)
701
766
  """
702
767
 
@@ -706,7 +771,7 @@ class WorkSpacesWebClient(BaseClient):
706
771
  """
707
772
  Retrieves a list of user settings.
708
773
 
709
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.list_user_settings)
774
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/list_user_settings.html)
710
775
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#list_user_settings)
711
776
  """
712
777
 
@@ -714,7 +779,7 @@ class WorkSpacesWebClient(BaseClient):
714
779
  """
715
780
  Adds or overwrites one or more tags for the specified resource.
716
781
 
717
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.tag_resource)
782
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/tag_resource.html)
718
783
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#tag_resource)
719
784
  """
720
785
 
@@ -724,7 +789,7 @@ class WorkSpacesWebClient(BaseClient):
724
789
  """
725
790
  Removes one or more tags from the specified resource.
726
791
 
727
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.untag_resource)
792
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/untag_resource.html)
728
793
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#untag_resource)
729
794
  """
730
795
 
@@ -734,17 +799,27 @@ class WorkSpacesWebClient(BaseClient):
734
799
  """
735
800
  Updates browser settings.
736
801
 
737
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.update_browser_settings)
802
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/update_browser_settings.html)
738
803
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#update_browser_settings)
739
804
  """
740
805
 
806
+ def update_data_protection_settings(
807
+ self, **kwargs: Unpack[UpdateDataProtectionSettingsRequestRequestTypeDef]
808
+ ) -> UpdateDataProtectionSettingsResponseTypeDef:
809
+ """
810
+ Updates data protection settings.
811
+
812
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/update_data_protection_settings.html)
813
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#update_data_protection_settings)
814
+ """
815
+
741
816
  def update_identity_provider(
742
817
  self, **kwargs: Unpack[UpdateIdentityProviderRequestRequestTypeDef]
743
818
  ) -> UpdateIdentityProviderResponseTypeDef:
744
819
  """
745
820
  Updates the identity provider.
746
821
 
747
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.update_identity_provider)
822
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/update_identity_provider.html)
748
823
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#update_identity_provider)
749
824
  """
750
825
 
@@ -754,7 +829,7 @@ class WorkSpacesWebClient(BaseClient):
754
829
  """
755
830
  Updates IP access settings.
756
831
 
757
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.update_ip_access_settings)
832
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/update_ip_access_settings.html)
758
833
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#update_ip_access_settings)
759
834
  """
760
835
 
@@ -764,7 +839,7 @@ class WorkSpacesWebClient(BaseClient):
764
839
  """
765
840
  Updates network settings.
766
841
 
767
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.update_network_settings)
842
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/update_network_settings.html)
768
843
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#update_network_settings)
769
844
  """
770
845
 
@@ -774,7 +849,7 @@ class WorkSpacesWebClient(BaseClient):
774
849
  """
775
850
  Updates a web portal.
776
851
 
777
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.update_portal)
852
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/update_portal.html)
778
853
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#update_portal)
779
854
  """
780
855
 
@@ -784,7 +859,7 @@ class WorkSpacesWebClient(BaseClient):
784
859
  """
785
860
  Updates the trust store.
786
861
 
787
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.update_trust_store)
862
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/update_trust_store.html)
788
863
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#update_trust_store)
789
864
  """
790
865
 
@@ -794,7 +869,7 @@ class WorkSpacesWebClient(BaseClient):
794
869
  """
795
870
  Updates the user access logging settings.
796
871
 
797
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.update_user_access_logging_settings)
872
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/update_user_access_logging_settings.html)
798
873
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#update_user_access_logging_settings)
799
874
  """
800
875
 
@@ -804,12 +879,28 @@ class WorkSpacesWebClient(BaseClient):
804
879
  """
805
880
  Updates the user settings.
806
881
 
807
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.update_user_settings)
882
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/update_user_settings.html)
808
883
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#update_user_settings)
809
884
  """
810
885
 
811
- def get_paginator(self, operation_name: Literal["list_sessions"]) -> ListSessionsPaginator:
886
+ @overload # type: ignore[override]
887
+ def get_paginator( # type: ignore[override]
888
+ self, operation_name: Literal["list_data_protection_settings"]
889
+ ) -> ListDataProtectionSettingsPaginator:
890
+ """
891
+ Create a paginator for an operation.
892
+
893
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/get_paginator.html)
894
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#get_paginator)
812
895
  """
813
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client.get_paginator)
896
+
897
+ @overload # type: ignore[override]
898
+ def get_paginator( # type: ignore[override]
899
+ self, operation_name: Literal["list_sessions"]
900
+ ) -> ListSessionsPaginator:
901
+ """
902
+ Create a paginator for an operation.
903
+
904
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/get_paginator.html)
814
905
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/client/#get_paginator)
815
906
  """