types-boto3-workspaces-web 1.36.0__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.
- types_boto3_workspaces_web/__init__.py +36 -0
- types_boto3_workspaces_web/__init__.pyi +35 -0
- types_boto3_workspaces_web/__main__.py +43 -0
- types_boto3_workspaces_web/client.py +909 -0
- types_boto3_workspaces_web/client.pyi +906 -0
- types_boto3_workspaces_web/literals.py +490 -0
- types_boto3_workspaces_web/literals.pyi +488 -0
- types_boto3_workspaces_web/paginator.py +89 -0
- types_boto3_workspaces_web/paginator.pyi +82 -0
- types_boto3_workspaces_web/py.typed +0 -0
- types_boto3_workspaces_web/type_defs.py +1166 -0
- types_boto3_workspaces_web/type_defs.pyi +1009 -0
- types_boto3_workspaces_web/version.py +7 -0
- types_boto3_workspaces_web-1.36.0.dist-info/LICENSE +21 -0
- types_boto3_workspaces_web-1.36.0.dist-info/METADATA +488 -0
- types_boto3_workspaces_web-1.36.0.dist-info/RECORD +18 -0
- types_boto3_workspaces_web-1.36.0.dist-info/WHEEL +5 -0
- types_boto3_workspaces_web-1.36.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,906 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Type annotations for workspaces-web service Client.
|
|
3
|
+
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/)
|
|
5
|
+
|
|
6
|
+
Usage::
|
|
7
|
+
|
|
8
|
+
```python
|
|
9
|
+
from boto3.session import Session
|
|
10
|
+
from types_boto3_workspaces_web.client import WorkSpacesWebClient
|
|
11
|
+
|
|
12
|
+
session = Session()
|
|
13
|
+
client: WorkSpacesWebClient = session.client("workspaces-web")
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
Copyright 2025 Vlad Emelianov
|
|
17
|
+
"""
|
|
18
|
+
|
|
19
|
+
from __future__ import annotations
|
|
20
|
+
|
|
21
|
+
import sys
|
|
22
|
+
from typing import Any, overload
|
|
23
|
+
|
|
24
|
+
from botocore.client import BaseClient, ClientMeta
|
|
25
|
+
from botocore.errorfactory import BaseClientExceptions
|
|
26
|
+
from botocore.exceptions import ClientError as BotocoreClientError
|
|
27
|
+
|
|
28
|
+
from .paginator import ListDataProtectionSettingsPaginator, ListSessionsPaginator
|
|
29
|
+
from .type_defs import (
|
|
30
|
+
AssociateBrowserSettingsRequestRequestTypeDef,
|
|
31
|
+
AssociateBrowserSettingsResponseTypeDef,
|
|
32
|
+
AssociateDataProtectionSettingsRequestRequestTypeDef,
|
|
33
|
+
AssociateDataProtectionSettingsResponseTypeDef,
|
|
34
|
+
AssociateIpAccessSettingsRequestRequestTypeDef,
|
|
35
|
+
AssociateIpAccessSettingsResponseTypeDef,
|
|
36
|
+
AssociateNetworkSettingsRequestRequestTypeDef,
|
|
37
|
+
AssociateNetworkSettingsResponseTypeDef,
|
|
38
|
+
AssociateTrustStoreRequestRequestTypeDef,
|
|
39
|
+
AssociateTrustStoreResponseTypeDef,
|
|
40
|
+
AssociateUserAccessLoggingSettingsRequestRequestTypeDef,
|
|
41
|
+
AssociateUserAccessLoggingSettingsResponseTypeDef,
|
|
42
|
+
AssociateUserSettingsRequestRequestTypeDef,
|
|
43
|
+
AssociateUserSettingsResponseTypeDef,
|
|
44
|
+
CreateBrowserSettingsRequestRequestTypeDef,
|
|
45
|
+
CreateBrowserSettingsResponseTypeDef,
|
|
46
|
+
CreateDataProtectionSettingsRequestRequestTypeDef,
|
|
47
|
+
CreateDataProtectionSettingsResponseTypeDef,
|
|
48
|
+
CreateIdentityProviderRequestRequestTypeDef,
|
|
49
|
+
CreateIdentityProviderResponseTypeDef,
|
|
50
|
+
CreateIpAccessSettingsRequestRequestTypeDef,
|
|
51
|
+
CreateIpAccessSettingsResponseTypeDef,
|
|
52
|
+
CreateNetworkSettingsRequestRequestTypeDef,
|
|
53
|
+
CreateNetworkSettingsResponseTypeDef,
|
|
54
|
+
CreatePortalRequestRequestTypeDef,
|
|
55
|
+
CreatePortalResponseTypeDef,
|
|
56
|
+
CreateTrustStoreRequestRequestTypeDef,
|
|
57
|
+
CreateTrustStoreResponseTypeDef,
|
|
58
|
+
CreateUserAccessLoggingSettingsRequestRequestTypeDef,
|
|
59
|
+
CreateUserAccessLoggingSettingsResponseTypeDef,
|
|
60
|
+
CreateUserSettingsRequestRequestTypeDef,
|
|
61
|
+
CreateUserSettingsResponseTypeDef,
|
|
62
|
+
DeleteBrowserSettingsRequestRequestTypeDef,
|
|
63
|
+
DeleteDataProtectionSettingsRequestRequestTypeDef,
|
|
64
|
+
DeleteIdentityProviderRequestRequestTypeDef,
|
|
65
|
+
DeleteIpAccessSettingsRequestRequestTypeDef,
|
|
66
|
+
DeleteNetworkSettingsRequestRequestTypeDef,
|
|
67
|
+
DeletePortalRequestRequestTypeDef,
|
|
68
|
+
DeleteTrustStoreRequestRequestTypeDef,
|
|
69
|
+
DeleteUserAccessLoggingSettingsRequestRequestTypeDef,
|
|
70
|
+
DeleteUserSettingsRequestRequestTypeDef,
|
|
71
|
+
DisassociateBrowserSettingsRequestRequestTypeDef,
|
|
72
|
+
DisassociateDataProtectionSettingsRequestRequestTypeDef,
|
|
73
|
+
DisassociateIpAccessSettingsRequestRequestTypeDef,
|
|
74
|
+
DisassociateNetworkSettingsRequestRequestTypeDef,
|
|
75
|
+
DisassociateTrustStoreRequestRequestTypeDef,
|
|
76
|
+
DisassociateUserAccessLoggingSettingsRequestRequestTypeDef,
|
|
77
|
+
DisassociateUserSettingsRequestRequestTypeDef,
|
|
78
|
+
ExpireSessionRequestRequestTypeDef,
|
|
79
|
+
GetBrowserSettingsRequestRequestTypeDef,
|
|
80
|
+
GetBrowserSettingsResponseTypeDef,
|
|
81
|
+
GetDataProtectionSettingsRequestRequestTypeDef,
|
|
82
|
+
GetDataProtectionSettingsResponseTypeDef,
|
|
83
|
+
GetIdentityProviderRequestRequestTypeDef,
|
|
84
|
+
GetIdentityProviderResponseTypeDef,
|
|
85
|
+
GetIpAccessSettingsRequestRequestTypeDef,
|
|
86
|
+
GetIpAccessSettingsResponseTypeDef,
|
|
87
|
+
GetNetworkSettingsRequestRequestTypeDef,
|
|
88
|
+
GetNetworkSettingsResponseTypeDef,
|
|
89
|
+
GetPortalRequestRequestTypeDef,
|
|
90
|
+
GetPortalResponseTypeDef,
|
|
91
|
+
GetPortalServiceProviderMetadataRequestRequestTypeDef,
|
|
92
|
+
GetPortalServiceProviderMetadataResponseTypeDef,
|
|
93
|
+
GetSessionRequestRequestTypeDef,
|
|
94
|
+
GetSessionResponseTypeDef,
|
|
95
|
+
GetTrustStoreCertificateRequestRequestTypeDef,
|
|
96
|
+
GetTrustStoreCertificateResponseTypeDef,
|
|
97
|
+
GetTrustStoreRequestRequestTypeDef,
|
|
98
|
+
GetTrustStoreResponseTypeDef,
|
|
99
|
+
GetUserAccessLoggingSettingsRequestRequestTypeDef,
|
|
100
|
+
GetUserAccessLoggingSettingsResponseTypeDef,
|
|
101
|
+
GetUserSettingsRequestRequestTypeDef,
|
|
102
|
+
GetUserSettingsResponseTypeDef,
|
|
103
|
+
ListBrowserSettingsRequestRequestTypeDef,
|
|
104
|
+
ListBrowserSettingsResponseTypeDef,
|
|
105
|
+
ListDataProtectionSettingsRequestRequestTypeDef,
|
|
106
|
+
ListDataProtectionSettingsResponseTypeDef,
|
|
107
|
+
ListIdentityProvidersRequestRequestTypeDef,
|
|
108
|
+
ListIdentityProvidersResponseTypeDef,
|
|
109
|
+
ListIpAccessSettingsRequestRequestTypeDef,
|
|
110
|
+
ListIpAccessSettingsResponseTypeDef,
|
|
111
|
+
ListNetworkSettingsRequestRequestTypeDef,
|
|
112
|
+
ListNetworkSettingsResponseTypeDef,
|
|
113
|
+
ListPortalsRequestRequestTypeDef,
|
|
114
|
+
ListPortalsResponseTypeDef,
|
|
115
|
+
ListSessionsRequestRequestTypeDef,
|
|
116
|
+
ListSessionsResponseTypeDef,
|
|
117
|
+
ListTagsForResourceRequestRequestTypeDef,
|
|
118
|
+
ListTagsForResourceResponseTypeDef,
|
|
119
|
+
ListTrustStoreCertificatesRequestRequestTypeDef,
|
|
120
|
+
ListTrustStoreCertificatesResponseTypeDef,
|
|
121
|
+
ListTrustStoresRequestRequestTypeDef,
|
|
122
|
+
ListTrustStoresResponseTypeDef,
|
|
123
|
+
ListUserAccessLoggingSettingsRequestRequestTypeDef,
|
|
124
|
+
ListUserAccessLoggingSettingsResponseTypeDef,
|
|
125
|
+
ListUserSettingsRequestRequestTypeDef,
|
|
126
|
+
ListUserSettingsResponseTypeDef,
|
|
127
|
+
TagResourceRequestRequestTypeDef,
|
|
128
|
+
UntagResourceRequestRequestTypeDef,
|
|
129
|
+
UpdateBrowserSettingsRequestRequestTypeDef,
|
|
130
|
+
UpdateBrowserSettingsResponseTypeDef,
|
|
131
|
+
UpdateDataProtectionSettingsRequestRequestTypeDef,
|
|
132
|
+
UpdateDataProtectionSettingsResponseTypeDef,
|
|
133
|
+
UpdateIdentityProviderRequestRequestTypeDef,
|
|
134
|
+
UpdateIdentityProviderResponseTypeDef,
|
|
135
|
+
UpdateIpAccessSettingsRequestRequestTypeDef,
|
|
136
|
+
UpdateIpAccessSettingsResponseTypeDef,
|
|
137
|
+
UpdateNetworkSettingsRequestRequestTypeDef,
|
|
138
|
+
UpdateNetworkSettingsResponseTypeDef,
|
|
139
|
+
UpdatePortalRequestRequestTypeDef,
|
|
140
|
+
UpdatePortalResponseTypeDef,
|
|
141
|
+
UpdateTrustStoreRequestRequestTypeDef,
|
|
142
|
+
UpdateTrustStoreResponseTypeDef,
|
|
143
|
+
UpdateUserAccessLoggingSettingsRequestRequestTypeDef,
|
|
144
|
+
UpdateUserAccessLoggingSettingsResponseTypeDef,
|
|
145
|
+
UpdateUserSettingsRequestRequestTypeDef,
|
|
146
|
+
UpdateUserSettingsResponseTypeDef,
|
|
147
|
+
)
|
|
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
|
|
155
|
+
if sys.version_info >= (3, 12):
|
|
156
|
+
from typing import Literal, Unpack
|
|
157
|
+
else:
|
|
158
|
+
from typing_extensions import Literal, Unpack
|
|
159
|
+
|
|
160
|
+
__all__ = ("WorkSpacesWebClient",)
|
|
161
|
+
|
|
162
|
+
class Exceptions(BaseClientExceptions):
|
|
163
|
+
AccessDeniedException: Type[BotocoreClientError]
|
|
164
|
+
ClientError: Type[BotocoreClientError]
|
|
165
|
+
ConflictException: Type[BotocoreClientError]
|
|
166
|
+
InternalServerException: Type[BotocoreClientError]
|
|
167
|
+
ResourceNotFoundException: Type[BotocoreClientError]
|
|
168
|
+
ServiceQuotaExceededException: Type[BotocoreClientError]
|
|
169
|
+
ThrottlingException: Type[BotocoreClientError]
|
|
170
|
+
TooManyTagsException: Type[BotocoreClientError]
|
|
171
|
+
ValidationException: Type[BotocoreClientError]
|
|
172
|
+
|
|
173
|
+
class WorkSpacesWebClient(BaseClient):
|
|
174
|
+
"""
|
|
175
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client)
|
|
176
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/)
|
|
177
|
+
"""
|
|
178
|
+
|
|
179
|
+
meta: ClientMeta
|
|
180
|
+
|
|
181
|
+
@property
|
|
182
|
+
def exceptions(self) -> Exceptions:
|
|
183
|
+
"""
|
|
184
|
+
WorkSpacesWebClient exceptions.
|
|
185
|
+
|
|
186
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#WorkSpacesWeb.Client)
|
|
187
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#exceptions)
|
|
188
|
+
"""
|
|
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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#generate_presigned_url)
|
|
206
|
+
"""
|
|
207
|
+
|
|
208
|
+
def associate_browser_settings(
|
|
209
|
+
self, **kwargs: Unpack[AssociateBrowserSettingsRequestRequestTypeDef]
|
|
210
|
+
) -> AssociateBrowserSettingsResponseTypeDef:
|
|
211
|
+
"""
|
|
212
|
+
Associates a browser settings resource with a web portal.
|
|
213
|
+
|
|
214
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/associate_browser_settings.html)
|
|
215
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#associate_browser_settings)
|
|
216
|
+
"""
|
|
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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#associate_data_protection_settings)
|
|
226
|
+
"""
|
|
227
|
+
|
|
228
|
+
def associate_ip_access_settings(
|
|
229
|
+
self, **kwargs: Unpack[AssociateIpAccessSettingsRequestRequestTypeDef]
|
|
230
|
+
) -> AssociateIpAccessSettingsResponseTypeDef:
|
|
231
|
+
"""
|
|
232
|
+
Associates an IP access settings resource with a web portal.
|
|
233
|
+
|
|
234
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/associate_ip_access_settings.html)
|
|
235
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#associate_ip_access_settings)
|
|
236
|
+
"""
|
|
237
|
+
|
|
238
|
+
def associate_network_settings(
|
|
239
|
+
self, **kwargs: Unpack[AssociateNetworkSettingsRequestRequestTypeDef]
|
|
240
|
+
) -> AssociateNetworkSettingsResponseTypeDef:
|
|
241
|
+
"""
|
|
242
|
+
Associates a network settings resource with a web portal.
|
|
243
|
+
|
|
244
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/associate_network_settings.html)
|
|
245
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#associate_network_settings)
|
|
246
|
+
"""
|
|
247
|
+
|
|
248
|
+
def associate_trust_store(
|
|
249
|
+
self, **kwargs: Unpack[AssociateTrustStoreRequestRequestTypeDef]
|
|
250
|
+
) -> AssociateTrustStoreResponseTypeDef:
|
|
251
|
+
"""
|
|
252
|
+
Associates a trust store with a web portal.
|
|
253
|
+
|
|
254
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/associate_trust_store.html)
|
|
255
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#associate_trust_store)
|
|
256
|
+
"""
|
|
257
|
+
|
|
258
|
+
def associate_user_access_logging_settings(
|
|
259
|
+
self, **kwargs: Unpack[AssociateUserAccessLoggingSettingsRequestRequestTypeDef]
|
|
260
|
+
) -> AssociateUserAccessLoggingSettingsResponseTypeDef:
|
|
261
|
+
"""
|
|
262
|
+
Associates a user access logging settings resource with a web portal.
|
|
263
|
+
|
|
264
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/associate_user_access_logging_settings.html)
|
|
265
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#associate_user_access_logging_settings)
|
|
266
|
+
"""
|
|
267
|
+
|
|
268
|
+
def associate_user_settings(
|
|
269
|
+
self, **kwargs: Unpack[AssociateUserSettingsRequestRequestTypeDef]
|
|
270
|
+
) -> AssociateUserSettingsResponseTypeDef:
|
|
271
|
+
"""
|
|
272
|
+
Associates a user settings resource with a web portal.
|
|
273
|
+
|
|
274
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/associate_user_settings.html)
|
|
275
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#associate_user_settings)
|
|
276
|
+
"""
|
|
277
|
+
|
|
278
|
+
def create_browser_settings(
|
|
279
|
+
self, **kwargs: Unpack[CreateBrowserSettingsRequestRequestTypeDef]
|
|
280
|
+
) -> CreateBrowserSettingsResponseTypeDef:
|
|
281
|
+
"""
|
|
282
|
+
Creates a browser settings resource that can be associated with a web portal.
|
|
283
|
+
|
|
284
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/create_browser_settings.html)
|
|
285
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#create_browser_settings)
|
|
286
|
+
"""
|
|
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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#create_data_protection_settings)
|
|
297
|
+
"""
|
|
298
|
+
|
|
299
|
+
def create_identity_provider(
|
|
300
|
+
self, **kwargs: Unpack[CreateIdentityProviderRequestRequestTypeDef]
|
|
301
|
+
) -> CreateIdentityProviderResponseTypeDef:
|
|
302
|
+
"""
|
|
303
|
+
Creates an identity provider resource that is then associated with a web portal.
|
|
304
|
+
|
|
305
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/create_identity_provider.html)
|
|
306
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#create_identity_provider)
|
|
307
|
+
"""
|
|
308
|
+
|
|
309
|
+
def create_ip_access_settings(
|
|
310
|
+
self, **kwargs: Unpack[CreateIpAccessSettingsRequestRequestTypeDef]
|
|
311
|
+
) -> CreateIpAccessSettingsResponseTypeDef:
|
|
312
|
+
"""
|
|
313
|
+
Creates an IP access settings resource that can be associated with a web portal.
|
|
314
|
+
|
|
315
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/create_ip_access_settings.html)
|
|
316
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#create_ip_access_settings)
|
|
317
|
+
"""
|
|
318
|
+
|
|
319
|
+
def create_network_settings(
|
|
320
|
+
self, **kwargs: Unpack[CreateNetworkSettingsRequestRequestTypeDef]
|
|
321
|
+
) -> CreateNetworkSettingsResponseTypeDef:
|
|
322
|
+
"""
|
|
323
|
+
Creates a network settings resource that can be associated with a web portal.
|
|
324
|
+
|
|
325
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/create_network_settings.html)
|
|
326
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#create_network_settings)
|
|
327
|
+
"""
|
|
328
|
+
|
|
329
|
+
def create_portal(
|
|
330
|
+
self, **kwargs: Unpack[CreatePortalRequestRequestTypeDef]
|
|
331
|
+
) -> CreatePortalResponseTypeDef:
|
|
332
|
+
"""
|
|
333
|
+
Creates a web portal.
|
|
334
|
+
|
|
335
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/create_portal.html)
|
|
336
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#create_portal)
|
|
337
|
+
"""
|
|
338
|
+
|
|
339
|
+
def create_trust_store(
|
|
340
|
+
self, **kwargs: Unpack[CreateTrustStoreRequestRequestTypeDef]
|
|
341
|
+
) -> CreateTrustStoreResponseTypeDef:
|
|
342
|
+
"""
|
|
343
|
+
Creates a trust store that can be associated with a web portal.
|
|
344
|
+
|
|
345
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/create_trust_store.html)
|
|
346
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#create_trust_store)
|
|
347
|
+
"""
|
|
348
|
+
|
|
349
|
+
def create_user_access_logging_settings(
|
|
350
|
+
self, **kwargs: Unpack[CreateUserAccessLoggingSettingsRequestRequestTypeDef]
|
|
351
|
+
) -> CreateUserAccessLoggingSettingsResponseTypeDef:
|
|
352
|
+
"""
|
|
353
|
+
Creates a user access logging settings resource that can be associated with a
|
|
354
|
+
web portal.
|
|
355
|
+
|
|
356
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/create_user_access_logging_settings.html)
|
|
357
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#create_user_access_logging_settings)
|
|
358
|
+
"""
|
|
359
|
+
|
|
360
|
+
def create_user_settings(
|
|
361
|
+
self, **kwargs: Unpack[CreateUserSettingsRequestRequestTypeDef]
|
|
362
|
+
) -> CreateUserSettingsResponseTypeDef:
|
|
363
|
+
"""
|
|
364
|
+
Creates a user settings resource that can be associated with a web portal.
|
|
365
|
+
|
|
366
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/create_user_settings.html)
|
|
367
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#create_user_settings)
|
|
368
|
+
"""
|
|
369
|
+
|
|
370
|
+
def delete_browser_settings(
|
|
371
|
+
self, **kwargs: Unpack[DeleteBrowserSettingsRequestRequestTypeDef]
|
|
372
|
+
) -> Dict[str, Any]:
|
|
373
|
+
"""
|
|
374
|
+
Deletes browser settings.
|
|
375
|
+
|
|
376
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/delete_browser_settings.html)
|
|
377
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#delete_browser_settings)
|
|
378
|
+
"""
|
|
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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#delete_data_protection_settings)
|
|
388
|
+
"""
|
|
389
|
+
|
|
390
|
+
def delete_identity_provider(
|
|
391
|
+
self, **kwargs: Unpack[DeleteIdentityProviderRequestRequestTypeDef]
|
|
392
|
+
) -> Dict[str, Any]:
|
|
393
|
+
"""
|
|
394
|
+
Deletes the identity provider.
|
|
395
|
+
|
|
396
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/delete_identity_provider.html)
|
|
397
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#delete_identity_provider)
|
|
398
|
+
"""
|
|
399
|
+
|
|
400
|
+
def delete_ip_access_settings(
|
|
401
|
+
self, **kwargs: Unpack[DeleteIpAccessSettingsRequestRequestTypeDef]
|
|
402
|
+
) -> Dict[str, Any]:
|
|
403
|
+
"""
|
|
404
|
+
Deletes IP access settings.
|
|
405
|
+
|
|
406
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/delete_ip_access_settings.html)
|
|
407
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#delete_ip_access_settings)
|
|
408
|
+
"""
|
|
409
|
+
|
|
410
|
+
def delete_network_settings(
|
|
411
|
+
self, **kwargs: Unpack[DeleteNetworkSettingsRequestRequestTypeDef]
|
|
412
|
+
) -> Dict[str, Any]:
|
|
413
|
+
"""
|
|
414
|
+
Deletes network settings.
|
|
415
|
+
|
|
416
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/delete_network_settings.html)
|
|
417
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#delete_network_settings)
|
|
418
|
+
"""
|
|
419
|
+
|
|
420
|
+
def delete_portal(self, **kwargs: Unpack[DeletePortalRequestRequestTypeDef]) -> Dict[str, Any]:
|
|
421
|
+
"""
|
|
422
|
+
Deletes a web portal.
|
|
423
|
+
|
|
424
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/delete_portal.html)
|
|
425
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#delete_portal)
|
|
426
|
+
"""
|
|
427
|
+
|
|
428
|
+
def delete_trust_store(
|
|
429
|
+
self, **kwargs: Unpack[DeleteTrustStoreRequestRequestTypeDef]
|
|
430
|
+
) -> Dict[str, Any]:
|
|
431
|
+
"""
|
|
432
|
+
Deletes the trust store.
|
|
433
|
+
|
|
434
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/delete_trust_store.html)
|
|
435
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#delete_trust_store)
|
|
436
|
+
"""
|
|
437
|
+
|
|
438
|
+
def delete_user_access_logging_settings(
|
|
439
|
+
self, **kwargs: Unpack[DeleteUserAccessLoggingSettingsRequestRequestTypeDef]
|
|
440
|
+
) -> Dict[str, Any]:
|
|
441
|
+
"""
|
|
442
|
+
Deletes user access logging settings.
|
|
443
|
+
|
|
444
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/delete_user_access_logging_settings.html)
|
|
445
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#delete_user_access_logging_settings)
|
|
446
|
+
"""
|
|
447
|
+
|
|
448
|
+
def delete_user_settings(
|
|
449
|
+
self, **kwargs: Unpack[DeleteUserSettingsRequestRequestTypeDef]
|
|
450
|
+
) -> Dict[str, Any]:
|
|
451
|
+
"""
|
|
452
|
+
Deletes user settings.
|
|
453
|
+
|
|
454
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/delete_user_settings.html)
|
|
455
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#delete_user_settings)
|
|
456
|
+
"""
|
|
457
|
+
|
|
458
|
+
def disassociate_browser_settings(
|
|
459
|
+
self, **kwargs: Unpack[DisassociateBrowserSettingsRequestRequestTypeDef]
|
|
460
|
+
) -> Dict[str, Any]:
|
|
461
|
+
"""
|
|
462
|
+
Disassociates browser settings from a web portal.
|
|
463
|
+
|
|
464
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/disassociate_browser_settings.html)
|
|
465
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#disassociate_browser_settings)
|
|
466
|
+
"""
|
|
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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#disassociate_data_protection_settings)
|
|
476
|
+
"""
|
|
477
|
+
|
|
478
|
+
def disassociate_ip_access_settings(
|
|
479
|
+
self, **kwargs: Unpack[DisassociateIpAccessSettingsRequestRequestTypeDef]
|
|
480
|
+
) -> Dict[str, Any]:
|
|
481
|
+
"""
|
|
482
|
+
Disassociates IP access settings from a web portal.
|
|
483
|
+
|
|
484
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/disassociate_ip_access_settings.html)
|
|
485
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#disassociate_ip_access_settings)
|
|
486
|
+
"""
|
|
487
|
+
|
|
488
|
+
def disassociate_network_settings(
|
|
489
|
+
self, **kwargs: Unpack[DisassociateNetworkSettingsRequestRequestTypeDef]
|
|
490
|
+
) -> Dict[str, Any]:
|
|
491
|
+
"""
|
|
492
|
+
Disassociates network settings from a web portal.
|
|
493
|
+
|
|
494
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/disassociate_network_settings.html)
|
|
495
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#disassociate_network_settings)
|
|
496
|
+
"""
|
|
497
|
+
|
|
498
|
+
def disassociate_trust_store(
|
|
499
|
+
self, **kwargs: Unpack[DisassociateTrustStoreRequestRequestTypeDef]
|
|
500
|
+
) -> Dict[str, Any]:
|
|
501
|
+
"""
|
|
502
|
+
Disassociates a trust store from a web portal.
|
|
503
|
+
|
|
504
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/disassociate_trust_store.html)
|
|
505
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#disassociate_trust_store)
|
|
506
|
+
"""
|
|
507
|
+
|
|
508
|
+
def disassociate_user_access_logging_settings(
|
|
509
|
+
self, **kwargs: Unpack[DisassociateUserAccessLoggingSettingsRequestRequestTypeDef]
|
|
510
|
+
) -> Dict[str, Any]:
|
|
511
|
+
"""
|
|
512
|
+
Disassociates user access logging settings from a web portal.
|
|
513
|
+
|
|
514
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/disassociate_user_access_logging_settings.html)
|
|
515
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#disassociate_user_access_logging_settings)
|
|
516
|
+
"""
|
|
517
|
+
|
|
518
|
+
def disassociate_user_settings(
|
|
519
|
+
self, **kwargs: Unpack[DisassociateUserSettingsRequestRequestTypeDef]
|
|
520
|
+
) -> Dict[str, Any]:
|
|
521
|
+
"""
|
|
522
|
+
Disassociates user settings from a web portal.
|
|
523
|
+
|
|
524
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/disassociate_user_settings.html)
|
|
525
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#disassociate_user_settings)
|
|
526
|
+
"""
|
|
527
|
+
|
|
528
|
+
def expire_session(
|
|
529
|
+
self, **kwargs: Unpack[ExpireSessionRequestRequestTypeDef]
|
|
530
|
+
) -> Dict[str, Any]:
|
|
531
|
+
"""
|
|
532
|
+
Expires an active secure browser session.
|
|
533
|
+
|
|
534
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/expire_session.html)
|
|
535
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#expire_session)
|
|
536
|
+
"""
|
|
537
|
+
|
|
538
|
+
def get_browser_settings(
|
|
539
|
+
self, **kwargs: Unpack[GetBrowserSettingsRequestRequestTypeDef]
|
|
540
|
+
) -> GetBrowserSettingsResponseTypeDef:
|
|
541
|
+
"""
|
|
542
|
+
Gets browser settings.
|
|
543
|
+
|
|
544
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/get_browser_settings.html)
|
|
545
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#get_browser_settings)
|
|
546
|
+
"""
|
|
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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#get_data_protection_settings)
|
|
556
|
+
"""
|
|
557
|
+
|
|
558
|
+
def get_identity_provider(
|
|
559
|
+
self, **kwargs: Unpack[GetIdentityProviderRequestRequestTypeDef]
|
|
560
|
+
) -> GetIdentityProviderResponseTypeDef:
|
|
561
|
+
"""
|
|
562
|
+
Gets the identity provider.
|
|
563
|
+
|
|
564
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/get_identity_provider.html)
|
|
565
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#get_identity_provider)
|
|
566
|
+
"""
|
|
567
|
+
|
|
568
|
+
def get_ip_access_settings(
|
|
569
|
+
self, **kwargs: Unpack[GetIpAccessSettingsRequestRequestTypeDef]
|
|
570
|
+
) -> GetIpAccessSettingsResponseTypeDef:
|
|
571
|
+
"""
|
|
572
|
+
Gets the IP access settings.
|
|
573
|
+
|
|
574
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/get_ip_access_settings.html)
|
|
575
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#get_ip_access_settings)
|
|
576
|
+
"""
|
|
577
|
+
|
|
578
|
+
def get_network_settings(
|
|
579
|
+
self, **kwargs: Unpack[GetNetworkSettingsRequestRequestTypeDef]
|
|
580
|
+
) -> GetNetworkSettingsResponseTypeDef:
|
|
581
|
+
"""
|
|
582
|
+
Gets the network settings.
|
|
583
|
+
|
|
584
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/get_network_settings.html)
|
|
585
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#get_network_settings)
|
|
586
|
+
"""
|
|
587
|
+
|
|
588
|
+
def get_portal(
|
|
589
|
+
self, **kwargs: Unpack[GetPortalRequestRequestTypeDef]
|
|
590
|
+
) -> GetPortalResponseTypeDef:
|
|
591
|
+
"""
|
|
592
|
+
Gets the web portal.
|
|
593
|
+
|
|
594
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/get_portal.html)
|
|
595
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#get_portal)
|
|
596
|
+
"""
|
|
597
|
+
|
|
598
|
+
def get_portal_service_provider_metadata(
|
|
599
|
+
self, **kwargs: Unpack[GetPortalServiceProviderMetadataRequestRequestTypeDef]
|
|
600
|
+
) -> GetPortalServiceProviderMetadataResponseTypeDef:
|
|
601
|
+
"""
|
|
602
|
+
Gets the service provider metadata.
|
|
603
|
+
|
|
604
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/get_portal_service_provider_metadata.html)
|
|
605
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#get_portal_service_provider_metadata)
|
|
606
|
+
"""
|
|
607
|
+
|
|
608
|
+
def get_session(
|
|
609
|
+
self, **kwargs: Unpack[GetSessionRequestRequestTypeDef]
|
|
610
|
+
) -> GetSessionResponseTypeDef:
|
|
611
|
+
"""
|
|
612
|
+
Gets information for a secure browser session.
|
|
613
|
+
|
|
614
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/get_session.html)
|
|
615
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#get_session)
|
|
616
|
+
"""
|
|
617
|
+
|
|
618
|
+
def get_trust_store(
|
|
619
|
+
self, **kwargs: Unpack[GetTrustStoreRequestRequestTypeDef]
|
|
620
|
+
) -> GetTrustStoreResponseTypeDef:
|
|
621
|
+
"""
|
|
622
|
+
Gets the trust store.
|
|
623
|
+
|
|
624
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/get_trust_store.html)
|
|
625
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#get_trust_store)
|
|
626
|
+
"""
|
|
627
|
+
|
|
628
|
+
def get_trust_store_certificate(
|
|
629
|
+
self, **kwargs: Unpack[GetTrustStoreCertificateRequestRequestTypeDef]
|
|
630
|
+
) -> GetTrustStoreCertificateResponseTypeDef:
|
|
631
|
+
"""
|
|
632
|
+
Gets the trust store certificate.
|
|
633
|
+
|
|
634
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/get_trust_store_certificate.html)
|
|
635
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#get_trust_store_certificate)
|
|
636
|
+
"""
|
|
637
|
+
|
|
638
|
+
def get_user_access_logging_settings(
|
|
639
|
+
self, **kwargs: Unpack[GetUserAccessLoggingSettingsRequestRequestTypeDef]
|
|
640
|
+
) -> GetUserAccessLoggingSettingsResponseTypeDef:
|
|
641
|
+
"""
|
|
642
|
+
Gets user access logging settings.
|
|
643
|
+
|
|
644
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/get_user_access_logging_settings.html)
|
|
645
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#get_user_access_logging_settings)
|
|
646
|
+
"""
|
|
647
|
+
|
|
648
|
+
def get_user_settings(
|
|
649
|
+
self, **kwargs: Unpack[GetUserSettingsRequestRequestTypeDef]
|
|
650
|
+
) -> GetUserSettingsResponseTypeDef:
|
|
651
|
+
"""
|
|
652
|
+
Gets user settings.
|
|
653
|
+
|
|
654
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/get_user_settings.html)
|
|
655
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#get_user_settings)
|
|
656
|
+
"""
|
|
657
|
+
|
|
658
|
+
def list_browser_settings(
|
|
659
|
+
self, **kwargs: Unpack[ListBrowserSettingsRequestRequestTypeDef]
|
|
660
|
+
) -> ListBrowserSettingsResponseTypeDef:
|
|
661
|
+
"""
|
|
662
|
+
Retrieves a list of browser settings.
|
|
663
|
+
|
|
664
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/list_browser_settings.html)
|
|
665
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#list_browser_settings)
|
|
666
|
+
"""
|
|
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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#list_data_protection_settings)
|
|
676
|
+
"""
|
|
677
|
+
|
|
678
|
+
def list_identity_providers(
|
|
679
|
+
self, **kwargs: Unpack[ListIdentityProvidersRequestRequestTypeDef]
|
|
680
|
+
) -> ListIdentityProvidersResponseTypeDef:
|
|
681
|
+
"""
|
|
682
|
+
Retrieves a list of identity providers for a specific web portal.
|
|
683
|
+
|
|
684
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/list_identity_providers.html)
|
|
685
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#list_identity_providers)
|
|
686
|
+
"""
|
|
687
|
+
|
|
688
|
+
def list_ip_access_settings(
|
|
689
|
+
self, **kwargs: Unpack[ListIpAccessSettingsRequestRequestTypeDef]
|
|
690
|
+
) -> ListIpAccessSettingsResponseTypeDef:
|
|
691
|
+
"""
|
|
692
|
+
Retrieves a list of IP access settings.
|
|
693
|
+
|
|
694
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/list_ip_access_settings.html)
|
|
695
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#list_ip_access_settings)
|
|
696
|
+
"""
|
|
697
|
+
|
|
698
|
+
def list_network_settings(
|
|
699
|
+
self, **kwargs: Unpack[ListNetworkSettingsRequestRequestTypeDef]
|
|
700
|
+
) -> ListNetworkSettingsResponseTypeDef:
|
|
701
|
+
"""
|
|
702
|
+
Retrieves a list of network settings.
|
|
703
|
+
|
|
704
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/list_network_settings.html)
|
|
705
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#list_network_settings)
|
|
706
|
+
"""
|
|
707
|
+
|
|
708
|
+
def list_portals(
|
|
709
|
+
self, **kwargs: Unpack[ListPortalsRequestRequestTypeDef]
|
|
710
|
+
) -> ListPortalsResponseTypeDef:
|
|
711
|
+
"""
|
|
712
|
+
Retrieves a list or web portals.
|
|
713
|
+
|
|
714
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/list_portals.html)
|
|
715
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#list_portals)
|
|
716
|
+
"""
|
|
717
|
+
|
|
718
|
+
def list_sessions(
|
|
719
|
+
self, **kwargs: Unpack[ListSessionsRequestRequestTypeDef]
|
|
720
|
+
) -> ListSessionsResponseTypeDef:
|
|
721
|
+
"""
|
|
722
|
+
Lists information for multiple secure browser sessions from a specific portal.
|
|
723
|
+
|
|
724
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/list_sessions.html)
|
|
725
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#list_sessions)
|
|
726
|
+
"""
|
|
727
|
+
|
|
728
|
+
def list_tags_for_resource(
|
|
729
|
+
self, **kwargs: Unpack[ListTagsForResourceRequestRequestTypeDef]
|
|
730
|
+
) -> ListTagsForResourceResponseTypeDef:
|
|
731
|
+
"""
|
|
732
|
+
Retrieves a list of tags for a resource.
|
|
733
|
+
|
|
734
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/list_tags_for_resource.html)
|
|
735
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#list_tags_for_resource)
|
|
736
|
+
"""
|
|
737
|
+
|
|
738
|
+
def list_trust_store_certificates(
|
|
739
|
+
self, **kwargs: Unpack[ListTrustStoreCertificatesRequestRequestTypeDef]
|
|
740
|
+
) -> ListTrustStoreCertificatesResponseTypeDef:
|
|
741
|
+
"""
|
|
742
|
+
Retrieves a list of trust store certificates.
|
|
743
|
+
|
|
744
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/list_trust_store_certificates.html)
|
|
745
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#list_trust_store_certificates)
|
|
746
|
+
"""
|
|
747
|
+
|
|
748
|
+
def list_trust_stores(
|
|
749
|
+
self, **kwargs: Unpack[ListTrustStoresRequestRequestTypeDef]
|
|
750
|
+
) -> ListTrustStoresResponseTypeDef:
|
|
751
|
+
"""
|
|
752
|
+
Retrieves a list of trust stores.
|
|
753
|
+
|
|
754
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/list_trust_stores.html)
|
|
755
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#list_trust_stores)
|
|
756
|
+
"""
|
|
757
|
+
|
|
758
|
+
def list_user_access_logging_settings(
|
|
759
|
+
self, **kwargs: Unpack[ListUserAccessLoggingSettingsRequestRequestTypeDef]
|
|
760
|
+
) -> ListUserAccessLoggingSettingsResponseTypeDef:
|
|
761
|
+
"""
|
|
762
|
+
Retrieves a list of user access logging settings.
|
|
763
|
+
|
|
764
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/list_user_access_logging_settings.html)
|
|
765
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#list_user_access_logging_settings)
|
|
766
|
+
"""
|
|
767
|
+
|
|
768
|
+
def list_user_settings(
|
|
769
|
+
self, **kwargs: Unpack[ListUserSettingsRequestRequestTypeDef]
|
|
770
|
+
) -> ListUserSettingsResponseTypeDef:
|
|
771
|
+
"""
|
|
772
|
+
Retrieves a list of user settings.
|
|
773
|
+
|
|
774
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/list_user_settings.html)
|
|
775
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#list_user_settings)
|
|
776
|
+
"""
|
|
777
|
+
|
|
778
|
+
def tag_resource(self, **kwargs: Unpack[TagResourceRequestRequestTypeDef]) -> Dict[str, Any]:
|
|
779
|
+
"""
|
|
780
|
+
Adds or overwrites one or more tags for the specified resource.
|
|
781
|
+
|
|
782
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/tag_resource.html)
|
|
783
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#tag_resource)
|
|
784
|
+
"""
|
|
785
|
+
|
|
786
|
+
def untag_resource(
|
|
787
|
+
self, **kwargs: Unpack[UntagResourceRequestRequestTypeDef]
|
|
788
|
+
) -> Dict[str, Any]:
|
|
789
|
+
"""
|
|
790
|
+
Removes one or more tags from the specified resource.
|
|
791
|
+
|
|
792
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/untag_resource.html)
|
|
793
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#untag_resource)
|
|
794
|
+
"""
|
|
795
|
+
|
|
796
|
+
def update_browser_settings(
|
|
797
|
+
self, **kwargs: Unpack[UpdateBrowserSettingsRequestRequestTypeDef]
|
|
798
|
+
) -> UpdateBrowserSettingsResponseTypeDef:
|
|
799
|
+
"""
|
|
800
|
+
Updates browser settings.
|
|
801
|
+
|
|
802
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/update_browser_settings.html)
|
|
803
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#update_browser_settings)
|
|
804
|
+
"""
|
|
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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#update_data_protection_settings)
|
|
814
|
+
"""
|
|
815
|
+
|
|
816
|
+
def update_identity_provider(
|
|
817
|
+
self, **kwargs: Unpack[UpdateIdentityProviderRequestRequestTypeDef]
|
|
818
|
+
) -> UpdateIdentityProviderResponseTypeDef:
|
|
819
|
+
"""
|
|
820
|
+
Updates the identity provider.
|
|
821
|
+
|
|
822
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/update_identity_provider.html)
|
|
823
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#update_identity_provider)
|
|
824
|
+
"""
|
|
825
|
+
|
|
826
|
+
def update_ip_access_settings(
|
|
827
|
+
self, **kwargs: Unpack[UpdateIpAccessSettingsRequestRequestTypeDef]
|
|
828
|
+
) -> UpdateIpAccessSettingsResponseTypeDef:
|
|
829
|
+
"""
|
|
830
|
+
Updates IP access settings.
|
|
831
|
+
|
|
832
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/update_ip_access_settings.html)
|
|
833
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#update_ip_access_settings)
|
|
834
|
+
"""
|
|
835
|
+
|
|
836
|
+
def update_network_settings(
|
|
837
|
+
self, **kwargs: Unpack[UpdateNetworkSettingsRequestRequestTypeDef]
|
|
838
|
+
) -> UpdateNetworkSettingsResponseTypeDef:
|
|
839
|
+
"""
|
|
840
|
+
Updates network settings.
|
|
841
|
+
|
|
842
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/update_network_settings.html)
|
|
843
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#update_network_settings)
|
|
844
|
+
"""
|
|
845
|
+
|
|
846
|
+
def update_portal(
|
|
847
|
+
self, **kwargs: Unpack[UpdatePortalRequestRequestTypeDef]
|
|
848
|
+
) -> UpdatePortalResponseTypeDef:
|
|
849
|
+
"""
|
|
850
|
+
Updates a web portal.
|
|
851
|
+
|
|
852
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/update_portal.html)
|
|
853
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#update_portal)
|
|
854
|
+
"""
|
|
855
|
+
|
|
856
|
+
def update_trust_store(
|
|
857
|
+
self, **kwargs: Unpack[UpdateTrustStoreRequestRequestTypeDef]
|
|
858
|
+
) -> UpdateTrustStoreResponseTypeDef:
|
|
859
|
+
"""
|
|
860
|
+
Updates the trust store.
|
|
861
|
+
|
|
862
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/update_trust_store.html)
|
|
863
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#update_trust_store)
|
|
864
|
+
"""
|
|
865
|
+
|
|
866
|
+
def update_user_access_logging_settings(
|
|
867
|
+
self, **kwargs: Unpack[UpdateUserAccessLoggingSettingsRequestRequestTypeDef]
|
|
868
|
+
) -> UpdateUserAccessLoggingSettingsResponseTypeDef:
|
|
869
|
+
"""
|
|
870
|
+
Updates the user access logging settings.
|
|
871
|
+
|
|
872
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/update_user_access_logging_settings.html)
|
|
873
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#update_user_access_logging_settings)
|
|
874
|
+
"""
|
|
875
|
+
|
|
876
|
+
def update_user_settings(
|
|
877
|
+
self, **kwargs: Unpack[UpdateUserSettingsRequestRequestTypeDef]
|
|
878
|
+
) -> UpdateUserSettingsResponseTypeDef:
|
|
879
|
+
"""
|
|
880
|
+
Updates the user settings.
|
|
881
|
+
|
|
882
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/update_user_settings.html)
|
|
883
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#update_user_settings)
|
|
884
|
+
"""
|
|
885
|
+
|
|
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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#get_paginator)
|
|
895
|
+
"""
|
|
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)
|
|
905
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#get_paginator)
|
|
906
|
+
"""
|