mypy-boto3-workspaces-web 1.36.0__py3-none-any.whl → 1.36.25__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 +4 -2
- mypy_boto3_workspaces_web/__init__.pyi +4 -2
- mypy_boto3_workspaces_web/__main__.py +4 -4
- mypy_boto3_workspaces_web/client.py +138 -146
- mypy_boto3_workspaces_web/client.pyi +138 -146
- mypy_boto3_workspaces_web/literals.py +19 -2
- mypy_boto3_workspaces_web/literals.pyi +19 -2
- mypy_boto3_workspaces_web/paginator.py +2 -2
- mypy_boto3_workspaces_web/paginator.pyi +2 -2
- mypy_boto3_workspaces_web/type_defs.py +213 -177
- mypy_boto3_workspaces_web/type_defs.pyi +208 -176
- mypy_boto3_workspaces_web/version.py +1 -1
- {mypy_boto3_workspaces_web-1.36.0.dist-info → mypy_boto3_workspaces_web-1.36.25.dist-info}/METADATA +14 -10
- mypy_boto3_workspaces_web-1.36.25.dist-info/RECORD +18 -0
- mypy_boto3_workspaces_web-1.36.0.dist-info/RECORD +0 -18
- {mypy_boto3_workspaces_web-1.36.0.dist-info → mypy_boto3_workspaces_web-1.36.25.dist-info}/LICENSE +0 -0
- {mypy_boto3_workspaces_web-1.36.0.dist-info → mypy_boto3_workspaces_web-1.36.25.dist-info}/WHEEL +0 -0
- {mypy_boto3_workspaces_web-1.36.0.dist-info → mypy_boto3_workspaces_web-1.36.25.dist-info}/top_level.txt +0 -0
|
@@ -3,15 +3,15 @@ Type annotations for workspaces-web service type definitions.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/type_defs/)
|
|
5
5
|
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
9
|
-
from mypy_boto3_workspaces_web.type_defs import
|
|
11
|
+
from mypy_boto3_workspaces_web.type_defs import AssociateBrowserSettingsRequestTypeDef
|
|
10
12
|
|
|
11
|
-
data:
|
|
13
|
+
data: AssociateBrowserSettingsRequestTypeDef = ...
|
|
12
14
|
```
|
|
13
|
-
|
|
14
|
-
Copyright 2025 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
17
|
from __future__ import annotations
|
|
@@ -27,9 +27,13 @@ from .literals import (
|
|
|
27
27
|
EnabledTypeType,
|
|
28
28
|
IdentityProviderTypeType,
|
|
29
29
|
InstanceTypeType,
|
|
30
|
+
MaxDisplayResolutionType,
|
|
30
31
|
PortalStatusType,
|
|
31
32
|
SessionSortByType,
|
|
32
33
|
SessionStatusType,
|
|
34
|
+
ToolbarItemType,
|
|
35
|
+
ToolbarTypeType,
|
|
36
|
+
VisualModeType,
|
|
33
37
|
)
|
|
34
38
|
|
|
35
39
|
if sys.version_info >= (3, 9):
|
|
@@ -44,19 +48,19 @@ else:
|
|
|
44
48
|
from typing_extensions import Literal, NotRequired, TypedDict
|
|
45
49
|
|
|
46
50
|
__all__ = (
|
|
47
|
-
"
|
|
51
|
+
"AssociateBrowserSettingsRequestTypeDef",
|
|
48
52
|
"AssociateBrowserSettingsResponseTypeDef",
|
|
49
|
-
"
|
|
53
|
+
"AssociateDataProtectionSettingsRequestTypeDef",
|
|
50
54
|
"AssociateDataProtectionSettingsResponseTypeDef",
|
|
51
|
-
"
|
|
55
|
+
"AssociateIpAccessSettingsRequestTypeDef",
|
|
52
56
|
"AssociateIpAccessSettingsResponseTypeDef",
|
|
53
|
-
"
|
|
57
|
+
"AssociateNetworkSettingsRequestTypeDef",
|
|
54
58
|
"AssociateNetworkSettingsResponseTypeDef",
|
|
55
|
-
"
|
|
59
|
+
"AssociateTrustStoreRequestTypeDef",
|
|
56
60
|
"AssociateTrustStoreResponseTypeDef",
|
|
57
|
-
"
|
|
61
|
+
"AssociateUserAccessLoggingSettingsRequestTypeDef",
|
|
58
62
|
"AssociateUserAccessLoggingSettingsResponseTypeDef",
|
|
59
|
-
"
|
|
63
|
+
"AssociateUserSettingsRequestTypeDef",
|
|
60
64
|
"AssociateUserSettingsResponseTypeDef",
|
|
61
65
|
"BlobTypeDef",
|
|
62
66
|
"BrowserSettingsSummaryTypeDef",
|
|
@@ -66,103 +70,104 @@ __all__ = (
|
|
|
66
70
|
"CookieSpecificationTypeDef",
|
|
67
71
|
"CookieSynchronizationConfigurationOutputTypeDef",
|
|
68
72
|
"CookieSynchronizationConfigurationTypeDef",
|
|
69
|
-
"
|
|
73
|
+
"CookieSynchronizationConfigurationUnionTypeDef",
|
|
74
|
+
"CreateBrowserSettingsRequestTypeDef",
|
|
70
75
|
"CreateBrowserSettingsResponseTypeDef",
|
|
71
|
-
"
|
|
76
|
+
"CreateDataProtectionSettingsRequestTypeDef",
|
|
72
77
|
"CreateDataProtectionSettingsResponseTypeDef",
|
|
73
|
-
"
|
|
78
|
+
"CreateIdentityProviderRequestTypeDef",
|
|
74
79
|
"CreateIdentityProviderResponseTypeDef",
|
|
75
|
-
"
|
|
80
|
+
"CreateIpAccessSettingsRequestTypeDef",
|
|
76
81
|
"CreateIpAccessSettingsResponseTypeDef",
|
|
77
|
-
"
|
|
82
|
+
"CreateNetworkSettingsRequestTypeDef",
|
|
78
83
|
"CreateNetworkSettingsResponseTypeDef",
|
|
79
|
-
"
|
|
84
|
+
"CreatePortalRequestTypeDef",
|
|
80
85
|
"CreatePortalResponseTypeDef",
|
|
81
|
-
"
|
|
86
|
+
"CreateTrustStoreRequestTypeDef",
|
|
82
87
|
"CreateTrustStoreResponseTypeDef",
|
|
83
|
-
"
|
|
88
|
+
"CreateUserAccessLoggingSettingsRequestTypeDef",
|
|
84
89
|
"CreateUserAccessLoggingSettingsResponseTypeDef",
|
|
85
|
-
"
|
|
90
|
+
"CreateUserSettingsRequestTypeDef",
|
|
86
91
|
"CreateUserSettingsResponseTypeDef",
|
|
87
92
|
"CustomPatternTypeDef",
|
|
88
93
|
"DataProtectionSettingsSummaryTypeDef",
|
|
89
94
|
"DataProtectionSettingsTypeDef",
|
|
90
|
-
"
|
|
91
|
-
"
|
|
92
|
-
"
|
|
93
|
-
"
|
|
94
|
-
"
|
|
95
|
-
"
|
|
96
|
-
"
|
|
97
|
-
"
|
|
98
|
-
"
|
|
99
|
-
"
|
|
100
|
-
"
|
|
101
|
-
"
|
|
102
|
-
"
|
|
103
|
-
"
|
|
104
|
-
"
|
|
105
|
-
"
|
|
106
|
-
"
|
|
107
|
-
"
|
|
95
|
+
"DeleteBrowserSettingsRequestTypeDef",
|
|
96
|
+
"DeleteDataProtectionSettingsRequestTypeDef",
|
|
97
|
+
"DeleteIdentityProviderRequestTypeDef",
|
|
98
|
+
"DeleteIpAccessSettingsRequestTypeDef",
|
|
99
|
+
"DeleteNetworkSettingsRequestTypeDef",
|
|
100
|
+
"DeletePortalRequestTypeDef",
|
|
101
|
+
"DeleteTrustStoreRequestTypeDef",
|
|
102
|
+
"DeleteUserAccessLoggingSettingsRequestTypeDef",
|
|
103
|
+
"DeleteUserSettingsRequestTypeDef",
|
|
104
|
+
"DisassociateBrowserSettingsRequestTypeDef",
|
|
105
|
+
"DisassociateDataProtectionSettingsRequestTypeDef",
|
|
106
|
+
"DisassociateIpAccessSettingsRequestTypeDef",
|
|
107
|
+
"DisassociateNetworkSettingsRequestTypeDef",
|
|
108
|
+
"DisassociateTrustStoreRequestTypeDef",
|
|
109
|
+
"DisassociateUserAccessLoggingSettingsRequestTypeDef",
|
|
110
|
+
"DisassociateUserSettingsRequestTypeDef",
|
|
111
|
+
"ExpireSessionRequestTypeDef",
|
|
112
|
+
"GetBrowserSettingsRequestTypeDef",
|
|
108
113
|
"GetBrowserSettingsResponseTypeDef",
|
|
109
|
-
"
|
|
114
|
+
"GetDataProtectionSettingsRequestTypeDef",
|
|
110
115
|
"GetDataProtectionSettingsResponseTypeDef",
|
|
111
|
-
"
|
|
116
|
+
"GetIdentityProviderRequestTypeDef",
|
|
112
117
|
"GetIdentityProviderResponseTypeDef",
|
|
113
|
-
"
|
|
118
|
+
"GetIpAccessSettingsRequestTypeDef",
|
|
114
119
|
"GetIpAccessSettingsResponseTypeDef",
|
|
115
|
-
"
|
|
120
|
+
"GetNetworkSettingsRequestTypeDef",
|
|
116
121
|
"GetNetworkSettingsResponseTypeDef",
|
|
117
|
-
"
|
|
122
|
+
"GetPortalRequestTypeDef",
|
|
118
123
|
"GetPortalResponseTypeDef",
|
|
119
|
-
"
|
|
124
|
+
"GetPortalServiceProviderMetadataRequestTypeDef",
|
|
120
125
|
"GetPortalServiceProviderMetadataResponseTypeDef",
|
|
121
|
-
"
|
|
126
|
+
"GetSessionRequestTypeDef",
|
|
122
127
|
"GetSessionResponseTypeDef",
|
|
123
|
-
"
|
|
128
|
+
"GetTrustStoreCertificateRequestTypeDef",
|
|
124
129
|
"GetTrustStoreCertificateResponseTypeDef",
|
|
125
|
-
"
|
|
130
|
+
"GetTrustStoreRequestTypeDef",
|
|
126
131
|
"GetTrustStoreResponseTypeDef",
|
|
127
|
-
"
|
|
132
|
+
"GetUserAccessLoggingSettingsRequestTypeDef",
|
|
128
133
|
"GetUserAccessLoggingSettingsResponseTypeDef",
|
|
129
|
-
"
|
|
134
|
+
"GetUserSettingsRequestTypeDef",
|
|
130
135
|
"GetUserSettingsResponseTypeDef",
|
|
131
136
|
"IdentityProviderSummaryTypeDef",
|
|
132
137
|
"IdentityProviderTypeDef",
|
|
133
138
|
"InlineRedactionConfigurationOutputTypeDef",
|
|
134
139
|
"InlineRedactionConfigurationTypeDef",
|
|
140
|
+
"InlineRedactionConfigurationUnionTypeDef",
|
|
135
141
|
"InlineRedactionPatternOutputTypeDef",
|
|
136
142
|
"InlineRedactionPatternTypeDef",
|
|
137
|
-
"InlineRedactionPatternUnionTypeDef",
|
|
138
143
|
"IpAccessSettingsSummaryTypeDef",
|
|
139
144
|
"IpAccessSettingsTypeDef",
|
|
140
145
|
"IpRuleTypeDef",
|
|
141
|
-
"
|
|
146
|
+
"ListBrowserSettingsRequestTypeDef",
|
|
142
147
|
"ListBrowserSettingsResponseTypeDef",
|
|
143
148
|
"ListDataProtectionSettingsRequestPaginateTypeDef",
|
|
144
|
-
"
|
|
149
|
+
"ListDataProtectionSettingsRequestTypeDef",
|
|
145
150
|
"ListDataProtectionSettingsResponseTypeDef",
|
|
146
|
-
"
|
|
151
|
+
"ListIdentityProvidersRequestTypeDef",
|
|
147
152
|
"ListIdentityProvidersResponseTypeDef",
|
|
148
|
-
"
|
|
153
|
+
"ListIpAccessSettingsRequestTypeDef",
|
|
149
154
|
"ListIpAccessSettingsResponseTypeDef",
|
|
150
|
-
"
|
|
155
|
+
"ListNetworkSettingsRequestTypeDef",
|
|
151
156
|
"ListNetworkSettingsResponseTypeDef",
|
|
152
|
-
"
|
|
157
|
+
"ListPortalsRequestTypeDef",
|
|
153
158
|
"ListPortalsResponseTypeDef",
|
|
154
159
|
"ListSessionsRequestPaginateTypeDef",
|
|
155
|
-
"
|
|
160
|
+
"ListSessionsRequestTypeDef",
|
|
156
161
|
"ListSessionsResponseTypeDef",
|
|
157
|
-
"
|
|
162
|
+
"ListTagsForResourceRequestTypeDef",
|
|
158
163
|
"ListTagsForResourceResponseTypeDef",
|
|
159
|
-
"
|
|
164
|
+
"ListTrustStoreCertificatesRequestTypeDef",
|
|
160
165
|
"ListTrustStoreCertificatesResponseTypeDef",
|
|
161
|
-
"
|
|
166
|
+
"ListTrustStoresRequestTypeDef",
|
|
162
167
|
"ListTrustStoresResponseTypeDef",
|
|
163
|
-
"
|
|
168
|
+
"ListUserAccessLoggingSettingsRequestTypeDef",
|
|
164
169
|
"ListUserAccessLoggingSettingsResponseTypeDef",
|
|
165
|
-
"
|
|
170
|
+
"ListUserSettingsRequestTypeDef",
|
|
166
171
|
"ListUserSettingsResponseTypeDef",
|
|
167
172
|
"NetworkSettingsSummaryTypeDef",
|
|
168
173
|
"NetworkSettingsTypeDef",
|
|
@@ -173,28 +178,31 @@ __all__ = (
|
|
|
173
178
|
"ResponseMetadataTypeDef",
|
|
174
179
|
"SessionSummaryTypeDef",
|
|
175
180
|
"SessionTypeDef",
|
|
176
|
-
"
|
|
181
|
+
"TagResourceRequestTypeDef",
|
|
177
182
|
"TagTypeDef",
|
|
183
|
+
"ToolbarConfigurationOutputTypeDef",
|
|
184
|
+
"ToolbarConfigurationTypeDef",
|
|
185
|
+
"ToolbarConfigurationUnionTypeDef",
|
|
178
186
|
"TrustStoreSummaryTypeDef",
|
|
179
187
|
"TrustStoreTypeDef",
|
|
180
|
-
"
|
|
181
|
-
"
|
|
188
|
+
"UntagResourceRequestTypeDef",
|
|
189
|
+
"UpdateBrowserSettingsRequestTypeDef",
|
|
182
190
|
"UpdateBrowserSettingsResponseTypeDef",
|
|
183
|
-
"
|
|
191
|
+
"UpdateDataProtectionSettingsRequestTypeDef",
|
|
184
192
|
"UpdateDataProtectionSettingsResponseTypeDef",
|
|
185
|
-
"
|
|
193
|
+
"UpdateIdentityProviderRequestTypeDef",
|
|
186
194
|
"UpdateIdentityProviderResponseTypeDef",
|
|
187
|
-
"
|
|
195
|
+
"UpdateIpAccessSettingsRequestTypeDef",
|
|
188
196
|
"UpdateIpAccessSettingsResponseTypeDef",
|
|
189
|
-
"
|
|
197
|
+
"UpdateNetworkSettingsRequestTypeDef",
|
|
190
198
|
"UpdateNetworkSettingsResponseTypeDef",
|
|
191
|
-
"
|
|
199
|
+
"UpdatePortalRequestTypeDef",
|
|
192
200
|
"UpdatePortalResponseTypeDef",
|
|
193
|
-
"
|
|
201
|
+
"UpdateTrustStoreRequestTypeDef",
|
|
194
202
|
"UpdateTrustStoreResponseTypeDef",
|
|
195
|
-
"
|
|
203
|
+
"UpdateUserAccessLoggingSettingsRequestTypeDef",
|
|
196
204
|
"UpdateUserAccessLoggingSettingsResponseTypeDef",
|
|
197
|
-
"
|
|
205
|
+
"UpdateUserSettingsRequestTypeDef",
|
|
198
206
|
"UpdateUserSettingsResponseTypeDef",
|
|
199
207
|
"UserAccessLoggingSettingsSummaryTypeDef",
|
|
200
208
|
"UserAccessLoggingSettingsTypeDef",
|
|
@@ -202,7 +210,7 @@ __all__ = (
|
|
|
202
210
|
"UserSettingsTypeDef",
|
|
203
211
|
)
|
|
204
212
|
|
|
205
|
-
class
|
|
213
|
+
class AssociateBrowserSettingsRequestTypeDef(TypedDict):
|
|
206
214
|
browserSettingsArn: str
|
|
207
215
|
portalArn: str
|
|
208
216
|
|
|
@@ -213,27 +221,27 @@ class ResponseMetadataTypeDef(TypedDict):
|
|
|
213
221
|
RetryAttempts: int
|
|
214
222
|
HostId: NotRequired[str]
|
|
215
223
|
|
|
216
|
-
class
|
|
224
|
+
class AssociateDataProtectionSettingsRequestTypeDef(TypedDict):
|
|
217
225
|
dataProtectionSettingsArn: str
|
|
218
226
|
portalArn: str
|
|
219
227
|
|
|
220
|
-
class
|
|
228
|
+
class AssociateIpAccessSettingsRequestTypeDef(TypedDict):
|
|
221
229
|
ipAccessSettingsArn: str
|
|
222
230
|
portalArn: str
|
|
223
231
|
|
|
224
|
-
class
|
|
232
|
+
class AssociateNetworkSettingsRequestTypeDef(TypedDict):
|
|
225
233
|
networkSettingsArn: str
|
|
226
234
|
portalArn: str
|
|
227
235
|
|
|
228
|
-
class
|
|
236
|
+
class AssociateTrustStoreRequestTypeDef(TypedDict):
|
|
229
237
|
portalArn: str
|
|
230
238
|
trustStoreArn: str
|
|
231
239
|
|
|
232
|
-
class
|
|
240
|
+
class AssociateUserAccessLoggingSettingsRequestTypeDef(TypedDict):
|
|
233
241
|
portalArn: str
|
|
234
242
|
userAccessLoggingSettingsArn: str
|
|
235
243
|
|
|
236
|
-
class
|
|
244
|
+
class AssociateUserSettingsRequestTypeDef(TypedDict):
|
|
237
245
|
portalArn: str
|
|
238
246
|
userSettingsArn: str
|
|
239
247
|
|
|
@@ -289,65 +297,65 @@ class DataProtectionSettingsSummaryTypeDef(TypedDict):
|
|
|
289
297
|
description: NotRequired[str]
|
|
290
298
|
displayName: NotRequired[str]
|
|
291
299
|
|
|
292
|
-
class
|
|
300
|
+
class DeleteBrowserSettingsRequestTypeDef(TypedDict):
|
|
293
301
|
browserSettingsArn: str
|
|
294
302
|
|
|
295
|
-
class
|
|
303
|
+
class DeleteDataProtectionSettingsRequestTypeDef(TypedDict):
|
|
296
304
|
dataProtectionSettingsArn: str
|
|
297
305
|
|
|
298
|
-
class
|
|
306
|
+
class DeleteIdentityProviderRequestTypeDef(TypedDict):
|
|
299
307
|
identityProviderArn: str
|
|
300
308
|
|
|
301
|
-
class
|
|
309
|
+
class DeleteIpAccessSettingsRequestTypeDef(TypedDict):
|
|
302
310
|
ipAccessSettingsArn: str
|
|
303
311
|
|
|
304
|
-
class
|
|
312
|
+
class DeleteNetworkSettingsRequestTypeDef(TypedDict):
|
|
305
313
|
networkSettingsArn: str
|
|
306
314
|
|
|
307
|
-
class
|
|
315
|
+
class DeletePortalRequestTypeDef(TypedDict):
|
|
308
316
|
portalArn: str
|
|
309
317
|
|
|
310
|
-
class
|
|
318
|
+
class DeleteTrustStoreRequestTypeDef(TypedDict):
|
|
311
319
|
trustStoreArn: str
|
|
312
320
|
|
|
313
|
-
class
|
|
321
|
+
class DeleteUserAccessLoggingSettingsRequestTypeDef(TypedDict):
|
|
314
322
|
userAccessLoggingSettingsArn: str
|
|
315
323
|
|
|
316
|
-
class
|
|
324
|
+
class DeleteUserSettingsRequestTypeDef(TypedDict):
|
|
317
325
|
userSettingsArn: str
|
|
318
326
|
|
|
319
|
-
class
|
|
327
|
+
class DisassociateBrowserSettingsRequestTypeDef(TypedDict):
|
|
320
328
|
portalArn: str
|
|
321
329
|
|
|
322
|
-
class
|
|
330
|
+
class DisassociateDataProtectionSettingsRequestTypeDef(TypedDict):
|
|
323
331
|
portalArn: str
|
|
324
332
|
|
|
325
|
-
class
|
|
333
|
+
class DisassociateIpAccessSettingsRequestTypeDef(TypedDict):
|
|
326
334
|
portalArn: str
|
|
327
335
|
|
|
328
|
-
class
|
|
336
|
+
class DisassociateNetworkSettingsRequestTypeDef(TypedDict):
|
|
329
337
|
portalArn: str
|
|
330
338
|
|
|
331
|
-
class
|
|
339
|
+
class DisassociateTrustStoreRequestTypeDef(TypedDict):
|
|
332
340
|
portalArn: str
|
|
333
341
|
|
|
334
|
-
class
|
|
342
|
+
class DisassociateUserAccessLoggingSettingsRequestTypeDef(TypedDict):
|
|
335
343
|
portalArn: str
|
|
336
344
|
|
|
337
|
-
class
|
|
345
|
+
class DisassociateUserSettingsRequestTypeDef(TypedDict):
|
|
338
346
|
portalArn: str
|
|
339
347
|
|
|
340
|
-
class
|
|
348
|
+
class ExpireSessionRequestTypeDef(TypedDict):
|
|
341
349
|
portalId: str
|
|
342
350
|
sessionId: str
|
|
343
351
|
|
|
344
|
-
class
|
|
352
|
+
class GetBrowserSettingsRequestTypeDef(TypedDict):
|
|
345
353
|
browserSettingsArn: str
|
|
346
354
|
|
|
347
|
-
class
|
|
355
|
+
class GetDataProtectionSettingsRequestTypeDef(TypedDict):
|
|
348
356
|
dataProtectionSettingsArn: str
|
|
349
357
|
|
|
350
|
-
class
|
|
358
|
+
class GetIdentityProviderRequestTypeDef(TypedDict):
|
|
351
359
|
identityProviderArn: str
|
|
352
360
|
|
|
353
361
|
class IdentityProviderTypeDef(TypedDict):
|
|
@@ -356,10 +364,10 @@ class IdentityProviderTypeDef(TypedDict):
|
|
|
356
364
|
identityProviderName: NotRequired[str]
|
|
357
365
|
identityProviderType: NotRequired[IdentityProviderTypeType]
|
|
358
366
|
|
|
359
|
-
class
|
|
367
|
+
class GetIpAccessSettingsRequestTypeDef(TypedDict):
|
|
360
368
|
ipAccessSettingsArn: str
|
|
361
369
|
|
|
362
|
-
class
|
|
370
|
+
class GetNetworkSettingsRequestTypeDef(TypedDict):
|
|
363
371
|
networkSettingsArn: str
|
|
364
372
|
|
|
365
373
|
class NetworkSettingsTypeDef(TypedDict):
|
|
@@ -369,7 +377,7 @@ class NetworkSettingsTypeDef(TypedDict):
|
|
|
369
377
|
subnetIds: NotRequired[List[str]]
|
|
370
378
|
vpcId: NotRequired[str]
|
|
371
379
|
|
|
372
|
-
class
|
|
380
|
+
class GetPortalRequestTypeDef(TypedDict):
|
|
373
381
|
portalArn: str
|
|
374
382
|
|
|
375
383
|
class PortalTypeDef(TypedDict):
|
|
@@ -394,10 +402,10 @@ class PortalTypeDef(TypedDict):
|
|
|
394
402
|
userAccessLoggingSettingsArn: NotRequired[str]
|
|
395
403
|
userSettingsArn: NotRequired[str]
|
|
396
404
|
|
|
397
|
-
class
|
|
405
|
+
class GetPortalServiceProviderMetadataRequestTypeDef(TypedDict):
|
|
398
406
|
portalArn: str
|
|
399
407
|
|
|
400
|
-
class
|
|
408
|
+
class GetSessionRequestTypeDef(TypedDict):
|
|
401
409
|
portalId: str
|
|
402
410
|
sessionId: str
|
|
403
411
|
|
|
@@ -410,18 +418,18 @@ class SessionTypeDef(TypedDict):
|
|
|
410
418
|
status: NotRequired[SessionStatusType]
|
|
411
419
|
username: NotRequired[str]
|
|
412
420
|
|
|
413
|
-
class
|
|
421
|
+
class GetTrustStoreCertificateRequestTypeDef(TypedDict):
|
|
414
422
|
thumbprint: str
|
|
415
423
|
trustStoreArn: str
|
|
416
424
|
|
|
417
|
-
class
|
|
425
|
+
class GetTrustStoreRequestTypeDef(TypedDict):
|
|
418
426
|
trustStoreArn: str
|
|
419
427
|
|
|
420
428
|
class TrustStoreTypeDef(TypedDict):
|
|
421
429
|
trustStoreArn: str
|
|
422
430
|
associatedPortalArns: NotRequired[List[str]]
|
|
423
431
|
|
|
424
|
-
class
|
|
432
|
+
class GetUserAccessLoggingSettingsRequestTypeDef(TypedDict):
|
|
425
433
|
userAccessLoggingSettingsArn: str
|
|
426
434
|
|
|
427
435
|
class UserAccessLoggingSettingsTypeDef(TypedDict):
|
|
@@ -429,7 +437,7 @@ class UserAccessLoggingSettingsTypeDef(TypedDict):
|
|
|
429
437
|
associatedPortalArns: NotRequired[List[str]]
|
|
430
438
|
kinesisStreamArn: NotRequired[str]
|
|
431
439
|
|
|
432
|
-
class
|
|
440
|
+
class GetUserSettingsRequestTypeDef(TypedDict):
|
|
433
441
|
userSettingsArn: str
|
|
434
442
|
|
|
435
443
|
class IdentityProviderSummaryTypeDef(TypedDict):
|
|
@@ -447,7 +455,7 @@ class IpAccessSettingsSummaryTypeDef(TypedDict):
|
|
|
447
455
|
description: NotRequired[str]
|
|
448
456
|
displayName: NotRequired[str]
|
|
449
457
|
|
|
450
|
-
class
|
|
458
|
+
class ListBrowserSettingsRequestTypeDef(TypedDict):
|
|
451
459
|
maxResults: NotRequired[int]
|
|
452
460
|
nextToken: NotRequired[str]
|
|
453
461
|
|
|
@@ -456,20 +464,20 @@ class PaginatorConfigTypeDef(TypedDict):
|
|
|
456
464
|
PageSize: NotRequired[int]
|
|
457
465
|
StartingToken: NotRequired[str]
|
|
458
466
|
|
|
459
|
-
class
|
|
467
|
+
class ListDataProtectionSettingsRequestTypeDef(TypedDict):
|
|
460
468
|
maxResults: NotRequired[int]
|
|
461
469
|
nextToken: NotRequired[str]
|
|
462
470
|
|
|
463
|
-
class
|
|
471
|
+
class ListIdentityProvidersRequestTypeDef(TypedDict):
|
|
464
472
|
portalArn: str
|
|
465
473
|
maxResults: NotRequired[int]
|
|
466
474
|
nextToken: NotRequired[str]
|
|
467
475
|
|
|
468
|
-
class
|
|
476
|
+
class ListIpAccessSettingsRequestTypeDef(TypedDict):
|
|
469
477
|
maxResults: NotRequired[int]
|
|
470
478
|
nextToken: NotRequired[str]
|
|
471
479
|
|
|
472
|
-
class
|
|
480
|
+
class ListNetworkSettingsRequestTypeDef(TypedDict):
|
|
473
481
|
maxResults: NotRequired[int]
|
|
474
482
|
nextToken: NotRequired[str]
|
|
475
483
|
|
|
@@ -477,7 +485,7 @@ class NetworkSettingsSummaryTypeDef(TypedDict):
|
|
|
477
485
|
networkSettingsArn: str
|
|
478
486
|
vpcId: NotRequired[str]
|
|
479
487
|
|
|
480
|
-
class
|
|
488
|
+
class ListPortalsRequestTypeDef(TypedDict):
|
|
481
489
|
maxResults: NotRequired[int]
|
|
482
490
|
nextToken: NotRequired[str]
|
|
483
491
|
|
|
@@ -500,7 +508,7 @@ class PortalSummaryTypeDef(TypedDict):
|
|
|
500
508
|
userAccessLoggingSettingsArn: NotRequired[str]
|
|
501
509
|
userSettingsArn: NotRequired[str]
|
|
502
510
|
|
|
503
|
-
class
|
|
511
|
+
class ListSessionsRequestTypeDef(TypedDict):
|
|
504
512
|
portalId: str
|
|
505
513
|
maxResults: NotRequired[int]
|
|
506
514
|
nextToken: NotRequired[str]
|
|
@@ -517,22 +525,22 @@ class SessionSummaryTypeDef(TypedDict):
|
|
|
517
525
|
status: NotRequired[SessionStatusType]
|
|
518
526
|
username: NotRequired[str]
|
|
519
527
|
|
|
520
|
-
class
|
|
528
|
+
class ListTagsForResourceRequestTypeDef(TypedDict):
|
|
521
529
|
resourceArn: str
|
|
522
530
|
|
|
523
|
-
class
|
|
531
|
+
class ListTrustStoreCertificatesRequestTypeDef(TypedDict):
|
|
524
532
|
trustStoreArn: str
|
|
525
533
|
maxResults: NotRequired[int]
|
|
526
534
|
nextToken: NotRequired[str]
|
|
527
535
|
|
|
528
|
-
class
|
|
536
|
+
class ListTrustStoresRequestTypeDef(TypedDict):
|
|
529
537
|
maxResults: NotRequired[int]
|
|
530
538
|
nextToken: NotRequired[str]
|
|
531
539
|
|
|
532
540
|
class TrustStoreSummaryTypeDef(TypedDict):
|
|
533
541
|
trustStoreArn: NotRequired[str]
|
|
534
542
|
|
|
535
|
-
class
|
|
543
|
+
class ListUserAccessLoggingSettingsRequestTypeDef(TypedDict):
|
|
536
544
|
maxResults: NotRequired[int]
|
|
537
545
|
nextToken: NotRequired[str]
|
|
538
546
|
|
|
@@ -540,41 +548,53 @@ class UserAccessLoggingSettingsSummaryTypeDef(TypedDict):
|
|
|
540
548
|
userAccessLoggingSettingsArn: str
|
|
541
549
|
kinesisStreamArn: NotRequired[str]
|
|
542
550
|
|
|
543
|
-
class
|
|
551
|
+
class ListUserSettingsRequestTypeDef(TypedDict):
|
|
544
552
|
maxResults: NotRequired[int]
|
|
545
553
|
nextToken: NotRequired[str]
|
|
546
554
|
|
|
547
|
-
class
|
|
555
|
+
class ToolbarConfigurationOutputTypeDef(TypedDict):
|
|
556
|
+
hiddenToolbarItems: NotRequired[List[ToolbarItemType]]
|
|
557
|
+
maxDisplayResolution: NotRequired[MaxDisplayResolutionType]
|
|
558
|
+
toolbarType: NotRequired[ToolbarTypeType]
|
|
559
|
+
visualMode: NotRequired[VisualModeType]
|
|
560
|
+
|
|
561
|
+
class ToolbarConfigurationTypeDef(TypedDict):
|
|
562
|
+
hiddenToolbarItems: NotRequired[Sequence[ToolbarItemType]]
|
|
563
|
+
maxDisplayResolution: NotRequired[MaxDisplayResolutionType]
|
|
564
|
+
toolbarType: NotRequired[ToolbarTypeType]
|
|
565
|
+
visualMode: NotRequired[VisualModeType]
|
|
566
|
+
|
|
567
|
+
class UntagResourceRequestTypeDef(TypedDict):
|
|
548
568
|
resourceArn: str
|
|
549
569
|
tagKeys: Sequence[str]
|
|
550
570
|
|
|
551
|
-
class
|
|
571
|
+
class UpdateBrowserSettingsRequestTypeDef(TypedDict):
|
|
552
572
|
browserSettingsArn: str
|
|
553
573
|
browserPolicy: NotRequired[str]
|
|
554
574
|
clientToken: NotRequired[str]
|
|
555
575
|
|
|
556
|
-
class
|
|
576
|
+
class UpdateIdentityProviderRequestTypeDef(TypedDict):
|
|
557
577
|
identityProviderArn: str
|
|
558
578
|
clientToken: NotRequired[str]
|
|
559
579
|
identityProviderDetails: NotRequired[Mapping[str, str]]
|
|
560
580
|
identityProviderName: NotRequired[str]
|
|
561
581
|
identityProviderType: NotRequired[IdentityProviderTypeType]
|
|
562
582
|
|
|
563
|
-
class
|
|
583
|
+
class UpdateNetworkSettingsRequestTypeDef(TypedDict):
|
|
564
584
|
networkSettingsArn: str
|
|
565
585
|
clientToken: NotRequired[str]
|
|
566
586
|
securityGroupIds: NotRequired[Sequence[str]]
|
|
567
587
|
subnetIds: NotRequired[Sequence[str]]
|
|
568
588
|
vpcId: NotRequired[str]
|
|
569
589
|
|
|
570
|
-
class
|
|
590
|
+
class UpdatePortalRequestTypeDef(TypedDict):
|
|
571
591
|
portalArn: str
|
|
572
592
|
authenticationType: NotRequired[AuthenticationTypeType]
|
|
573
593
|
displayName: NotRequired[str]
|
|
574
594
|
instanceType: NotRequired[InstanceTypeType]
|
|
575
595
|
maxConcurrentSessions: NotRequired[int]
|
|
576
596
|
|
|
577
|
-
class
|
|
597
|
+
class UpdateUserAccessLoggingSettingsRequestTypeDef(TypedDict):
|
|
578
598
|
userAccessLoggingSettingsArn: str
|
|
579
599
|
clientToken: NotRequired[str]
|
|
580
600
|
kinesisStreamArn: NotRequired[str]
|
|
@@ -660,7 +680,7 @@ class UpdateTrustStoreResponseTypeDef(TypedDict):
|
|
|
660
680
|
trustStoreArn: str
|
|
661
681
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
662
682
|
|
|
663
|
-
class
|
|
683
|
+
class UpdateTrustStoreRequestTypeDef(TypedDict):
|
|
664
684
|
trustStoreArn: str
|
|
665
685
|
certificatesToAdd: NotRequired[Sequence[BlobTypeDef]]
|
|
666
686
|
certificatesToDelete: NotRequired[Sequence[str]]
|
|
@@ -698,14 +718,14 @@ class CookieSynchronizationConfigurationTypeDef(TypedDict):
|
|
|
698
718
|
allowlist: Sequence[CookieSpecificationTypeDef]
|
|
699
719
|
blocklist: NotRequired[Sequence[CookieSpecificationTypeDef]]
|
|
700
720
|
|
|
701
|
-
class
|
|
721
|
+
class CreateBrowserSettingsRequestTypeDef(TypedDict):
|
|
702
722
|
browserPolicy: str
|
|
703
723
|
additionalEncryptionContext: NotRequired[Mapping[str, str]]
|
|
704
724
|
clientToken: NotRequired[str]
|
|
705
725
|
customerManagedKey: NotRequired[str]
|
|
706
726
|
tags: NotRequired[Sequence[TagTypeDef]]
|
|
707
727
|
|
|
708
|
-
class
|
|
728
|
+
class CreateIdentityProviderRequestTypeDef(TypedDict):
|
|
709
729
|
identityProviderDetails: Mapping[str, str]
|
|
710
730
|
identityProviderName: str
|
|
711
731
|
identityProviderType: IdentityProviderTypeType
|
|
@@ -713,14 +733,14 @@ class CreateIdentityProviderRequestRequestTypeDef(TypedDict):
|
|
|
713
733
|
clientToken: NotRequired[str]
|
|
714
734
|
tags: NotRequired[Sequence[TagTypeDef]]
|
|
715
735
|
|
|
716
|
-
class
|
|
736
|
+
class CreateNetworkSettingsRequestTypeDef(TypedDict):
|
|
717
737
|
securityGroupIds: Sequence[str]
|
|
718
738
|
subnetIds: Sequence[str]
|
|
719
739
|
vpcId: str
|
|
720
740
|
clientToken: NotRequired[str]
|
|
721
741
|
tags: NotRequired[Sequence[TagTypeDef]]
|
|
722
742
|
|
|
723
|
-
class
|
|
743
|
+
class CreatePortalRequestTypeDef(TypedDict):
|
|
724
744
|
additionalEncryptionContext: NotRequired[Mapping[str, str]]
|
|
725
745
|
authenticationType: NotRequired[AuthenticationTypeType]
|
|
726
746
|
clientToken: NotRequired[str]
|
|
@@ -730,12 +750,12 @@ class CreatePortalRequestRequestTypeDef(TypedDict):
|
|
|
730
750
|
maxConcurrentSessions: NotRequired[int]
|
|
731
751
|
tags: NotRequired[Sequence[TagTypeDef]]
|
|
732
752
|
|
|
733
|
-
class
|
|
753
|
+
class CreateTrustStoreRequestTypeDef(TypedDict):
|
|
734
754
|
certificateList: Sequence[BlobTypeDef]
|
|
735
755
|
clientToken: NotRequired[str]
|
|
736
756
|
tags: NotRequired[Sequence[TagTypeDef]]
|
|
737
757
|
|
|
738
|
-
class
|
|
758
|
+
class CreateUserAccessLoggingSettingsRequestTypeDef(TypedDict):
|
|
739
759
|
kinesisStreamArn: str
|
|
740
760
|
clientToken: NotRequired[str]
|
|
741
761
|
tags: NotRequired[Sequence[TagTypeDef]]
|
|
@@ -744,12 +764,12 @@ class ListTagsForResourceResponseTypeDef(TypedDict):
|
|
|
744
764
|
tags: List[TagTypeDef]
|
|
745
765
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
746
766
|
|
|
747
|
-
class
|
|
767
|
+
class TagResourceRequestTypeDef(TypedDict):
|
|
748
768
|
resourceArn: str
|
|
749
769
|
tags: Sequence[TagTypeDef]
|
|
750
770
|
clientToken: NotRequired[str]
|
|
751
771
|
|
|
752
|
-
class
|
|
772
|
+
class CreateIpAccessSettingsRequestTypeDef(TypedDict):
|
|
753
773
|
ipRules: Sequence[IpRuleTypeDef]
|
|
754
774
|
additionalEncryptionContext: NotRequired[Mapping[str, str]]
|
|
755
775
|
clientToken: NotRequired[str]
|
|
@@ -768,7 +788,7 @@ class IpAccessSettingsTypeDef(TypedDict):
|
|
|
768
788
|
displayName: NotRequired[str]
|
|
769
789
|
ipRules: NotRequired[List[IpRuleTypeDef]]
|
|
770
790
|
|
|
771
|
-
class
|
|
791
|
+
class UpdateIpAccessSettingsRequestTypeDef(TypedDict):
|
|
772
792
|
ipAccessSettingsArn: str
|
|
773
793
|
clientToken: NotRequired[str]
|
|
774
794
|
description: NotRequired[str]
|
|
@@ -882,6 +902,10 @@ class ListUserAccessLoggingSettingsResponseTypeDef(TypedDict):
|
|
|
882
902
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
883
903
|
nextToken: NotRequired[str]
|
|
884
904
|
|
|
905
|
+
ToolbarConfigurationUnionTypeDef = Union[
|
|
906
|
+
ToolbarConfigurationTypeDef, ToolbarConfigurationOutputTypeDef
|
|
907
|
+
]
|
|
908
|
+
|
|
885
909
|
class UserSettingsSummaryTypeDef(TypedDict):
|
|
886
910
|
userSettingsArn: str
|
|
887
911
|
cookieSynchronizationConfiguration: NotRequired[CookieSynchronizationConfigurationOutputTypeDef]
|
|
@@ -892,6 +916,7 @@ class UserSettingsSummaryTypeDef(TypedDict):
|
|
|
892
916
|
idleDisconnectTimeoutInMinutes: NotRequired[int]
|
|
893
917
|
pasteAllowed: NotRequired[EnabledTypeType]
|
|
894
918
|
printAllowed: NotRequired[EnabledTypeType]
|
|
919
|
+
toolbarConfiguration: NotRequired[ToolbarConfigurationOutputTypeDef]
|
|
895
920
|
uploadAllowed: NotRequired[EnabledTypeType]
|
|
896
921
|
|
|
897
922
|
class UserSettingsTypeDef(TypedDict):
|
|
@@ -907,35 +932,12 @@ class UserSettingsTypeDef(TypedDict):
|
|
|
907
932
|
idleDisconnectTimeoutInMinutes: NotRequired[int]
|
|
908
933
|
pasteAllowed: NotRequired[EnabledTypeType]
|
|
909
934
|
printAllowed: NotRequired[EnabledTypeType]
|
|
935
|
+
toolbarConfiguration: NotRequired[ToolbarConfigurationOutputTypeDef]
|
|
910
936
|
uploadAllowed: NotRequired[EnabledTypeType]
|
|
911
937
|
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
pasteAllowed: EnabledTypeType
|
|
916
|
-
printAllowed: EnabledTypeType
|
|
917
|
-
uploadAllowed: EnabledTypeType
|
|
918
|
-
additionalEncryptionContext: NotRequired[Mapping[str, str]]
|
|
919
|
-
clientToken: NotRequired[str]
|
|
920
|
-
cookieSynchronizationConfiguration: NotRequired[CookieSynchronizationConfigurationTypeDef]
|
|
921
|
-
customerManagedKey: NotRequired[str]
|
|
922
|
-
deepLinkAllowed: NotRequired[EnabledTypeType]
|
|
923
|
-
disconnectTimeoutInMinutes: NotRequired[int]
|
|
924
|
-
idleDisconnectTimeoutInMinutes: NotRequired[int]
|
|
925
|
-
tags: NotRequired[Sequence[TagTypeDef]]
|
|
926
|
-
|
|
927
|
-
class UpdateUserSettingsRequestRequestTypeDef(TypedDict):
|
|
928
|
-
userSettingsArn: str
|
|
929
|
-
clientToken: NotRequired[str]
|
|
930
|
-
cookieSynchronizationConfiguration: NotRequired[CookieSynchronizationConfigurationTypeDef]
|
|
931
|
-
copyAllowed: NotRequired[EnabledTypeType]
|
|
932
|
-
deepLinkAllowed: NotRequired[EnabledTypeType]
|
|
933
|
-
disconnectTimeoutInMinutes: NotRequired[int]
|
|
934
|
-
downloadAllowed: NotRequired[EnabledTypeType]
|
|
935
|
-
idleDisconnectTimeoutInMinutes: NotRequired[int]
|
|
936
|
-
pasteAllowed: NotRequired[EnabledTypeType]
|
|
937
|
-
printAllowed: NotRequired[EnabledTypeType]
|
|
938
|
-
uploadAllowed: NotRequired[EnabledTypeType]
|
|
938
|
+
CookieSynchronizationConfigurationUnionTypeDef = Union[
|
|
939
|
+
CookieSynchronizationConfigurationTypeDef, CookieSynchronizationConfigurationOutputTypeDef
|
|
940
|
+
]
|
|
939
941
|
|
|
940
942
|
class GetIpAccessSettingsResponseTypeDef(TypedDict):
|
|
941
943
|
ipAccessSettings: IpAccessSettingsTypeDef
|
|
@@ -951,9 +953,11 @@ class InlineRedactionConfigurationOutputTypeDef(TypedDict):
|
|
|
951
953
|
globalEnforcedUrls: NotRequired[List[str]]
|
|
952
954
|
globalExemptUrls: NotRequired[List[str]]
|
|
953
955
|
|
|
954
|
-
|
|
955
|
-
InlineRedactionPatternTypeDef
|
|
956
|
-
]
|
|
956
|
+
class InlineRedactionConfigurationTypeDef(TypedDict):
|
|
957
|
+
inlineRedactionPatterns: Sequence[InlineRedactionPatternTypeDef]
|
|
958
|
+
globalConfidenceLevel: NotRequired[int]
|
|
959
|
+
globalEnforcedUrls: NotRequired[Sequence[str]]
|
|
960
|
+
globalExemptUrls: NotRequired[Sequence[str]]
|
|
957
961
|
|
|
958
962
|
class ListUserSettingsResponseTypeDef(TypedDict):
|
|
959
963
|
userSettings: List[UserSettingsSummaryTypeDef]
|
|
@@ -968,6 +972,36 @@ class UpdateUserSettingsResponseTypeDef(TypedDict):
|
|
|
968
972
|
userSettings: UserSettingsTypeDef
|
|
969
973
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
970
974
|
|
|
975
|
+
class CreateUserSettingsRequestTypeDef(TypedDict):
|
|
976
|
+
copyAllowed: EnabledTypeType
|
|
977
|
+
downloadAllowed: EnabledTypeType
|
|
978
|
+
pasteAllowed: EnabledTypeType
|
|
979
|
+
printAllowed: EnabledTypeType
|
|
980
|
+
uploadAllowed: EnabledTypeType
|
|
981
|
+
additionalEncryptionContext: NotRequired[Mapping[str, str]]
|
|
982
|
+
clientToken: NotRequired[str]
|
|
983
|
+
cookieSynchronizationConfiguration: NotRequired[CookieSynchronizationConfigurationUnionTypeDef]
|
|
984
|
+
customerManagedKey: NotRequired[str]
|
|
985
|
+
deepLinkAllowed: NotRequired[EnabledTypeType]
|
|
986
|
+
disconnectTimeoutInMinutes: NotRequired[int]
|
|
987
|
+
idleDisconnectTimeoutInMinutes: NotRequired[int]
|
|
988
|
+
tags: NotRequired[Sequence[TagTypeDef]]
|
|
989
|
+
toolbarConfiguration: NotRequired[ToolbarConfigurationUnionTypeDef]
|
|
990
|
+
|
|
991
|
+
class UpdateUserSettingsRequestTypeDef(TypedDict):
|
|
992
|
+
userSettingsArn: str
|
|
993
|
+
clientToken: NotRequired[str]
|
|
994
|
+
cookieSynchronizationConfiguration: NotRequired[CookieSynchronizationConfigurationUnionTypeDef]
|
|
995
|
+
copyAllowed: NotRequired[EnabledTypeType]
|
|
996
|
+
deepLinkAllowed: NotRequired[EnabledTypeType]
|
|
997
|
+
disconnectTimeoutInMinutes: NotRequired[int]
|
|
998
|
+
downloadAllowed: NotRequired[EnabledTypeType]
|
|
999
|
+
idleDisconnectTimeoutInMinutes: NotRequired[int]
|
|
1000
|
+
pasteAllowed: NotRequired[EnabledTypeType]
|
|
1001
|
+
printAllowed: NotRequired[EnabledTypeType]
|
|
1002
|
+
toolbarConfiguration: NotRequired[ToolbarConfigurationUnionTypeDef]
|
|
1003
|
+
uploadAllowed: NotRequired[EnabledTypeType]
|
|
1004
|
+
|
|
971
1005
|
class DataProtectionSettingsTypeDef(TypedDict):
|
|
972
1006
|
dataProtectionSettingsArn: str
|
|
973
1007
|
additionalEncryptionContext: NotRequired[Dict[str, str]]
|
|
@@ -978,11 +1012,9 @@ class DataProtectionSettingsTypeDef(TypedDict):
|
|
|
978
1012
|
displayName: NotRequired[str]
|
|
979
1013
|
inlineRedactionConfiguration: NotRequired[InlineRedactionConfigurationOutputTypeDef]
|
|
980
1014
|
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
globalEnforcedUrls: NotRequired[Sequence[str]]
|
|
985
|
-
globalExemptUrls: NotRequired[Sequence[str]]
|
|
1015
|
+
InlineRedactionConfigurationUnionTypeDef = Union[
|
|
1016
|
+
InlineRedactionConfigurationTypeDef, InlineRedactionConfigurationOutputTypeDef
|
|
1017
|
+
]
|
|
986
1018
|
|
|
987
1019
|
class GetDataProtectionSettingsResponseTypeDef(TypedDict):
|
|
988
1020
|
dataProtectionSettings: DataProtectionSettingsTypeDef
|
|
@@ -992,18 +1024,18 @@ class UpdateDataProtectionSettingsResponseTypeDef(TypedDict):
|
|
|
992
1024
|
dataProtectionSettings: DataProtectionSettingsTypeDef
|
|
993
1025
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
994
1026
|
|
|
995
|
-
class
|
|
1027
|
+
class CreateDataProtectionSettingsRequestTypeDef(TypedDict):
|
|
996
1028
|
additionalEncryptionContext: NotRequired[Mapping[str, str]]
|
|
997
1029
|
clientToken: NotRequired[str]
|
|
998
1030
|
customerManagedKey: NotRequired[str]
|
|
999
1031
|
description: NotRequired[str]
|
|
1000
1032
|
displayName: NotRequired[str]
|
|
1001
|
-
inlineRedactionConfiguration: NotRequired[
|
|
1033
|
+
inlineRedactionConfiguration: NotRequired[InlineRedactionConfigurationUnionTypeDef]
|
|
1002
1034
|
tags: NotRequired[Sequence[TagTypeDef]]
|
|
1003
1035
|
|
|
1004
|
-
class
|
|
1036
|
+
class UpdateDataProtectionSettingsRequestTypeDef(TypedDict):
|
|
1005
1037
|
dataProtectionSettingsArn: str
|
|
1006
1038
|
clientToken: NotRequired[str]
|
|
1007
1039
|
description: NotRequired[str]
|
|
1008
1040
|
displayName: NotRequired[str]
|
|
1009
|
-
inlineRedactionConfiguration: NotRequired[
|
|
1041
|
+
inlineRedactionConfiguration: NotRequired[InlineRedactionConfigurationUnionTypeDef]
|