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