mypy-boto3-workspaces-web 1.28.15.post1__py3-none-any.whl → 1.28.36__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/__main__.py +3 -3
- mypy_boto3_workspaces_web/client.py +9 -4
- mypy_boto3_workspaces_web/client.pyi +9 -4
- mypy_boto3_workspaces_web/literals.py +1 -1
- mypy_boto3_workspaces_web/literals.pyi +1 -1
- mypy_boto3_workspaces_web/type_defs.py +305 -613
- mypy_boto3_workspaces_web/type_defs.pyi +305 -563
- mypy_boto3_workspaces_web/version.py +1 -1
- {mypy_boto3_workspaces_web-1.28.15.post1.dist-info → mypy_boto3_workspaces_web-1.28.36.dist-info}/METADATA +21 -148
- mypy_boto3_workspaces_web-1.28.36.dist-info/RECORD +16 -0
- {mypy_boto3_workspaces_web-1.28.15.post1.dist-info → mypy_boto3_workspaces_web-1.28.36.dist-info}/WHEEL +1 -1
- mypy_boto3_workspaces_web-1.28.15.post1.dist-info/RECORD +0 -16
- {mypy_boto3_workspaces_web-1.28.15.post1.dist-info → mypy_boto3_workspaces_web-1.28.36.dist-info}/LICENSE +0 -0
- {mypy_boto3_workspaces_web-1.28.15.post1.dist-info → mypy_boto3_workspaces_web-1.28.36.dist-info}/top_level.txt +0 -0
|
@@ -8,7 +8,7 @@ Usage::
|
|
|
8
8
|
```python
|
|
9
9
|
from mypy_boto3_workspaces_web.type_defs import AssociateBrowserSettingsRequestRequestTypeDef
|
|
10
10
|
|
|
11
|
-
data: AssociateBrowserSettingsRequestRequestTypeDef =
|
|
11
|
+
data: AssociateBrowserSettingsRequestRequestTypeDef = ...
|
|
12
12
|
```
|
|
13
13
|
"""
|
|
14
14
|
import sys
|
|
@@ -24,11 +24,15 @@ from .literals import (
|
|
|
24
24
|
PortalStatusType,
|
|
25
25
|
)
|
|
26
26
|
|
|
27
|
-
if sys.version_info >= (3,
|
|
27
|
+
if sys.version_info >= (3, 12):
|
|
28
28
|
from typing import Literal
|
|
29
29
|
else:
|
|
30
30
|
from typing_extensions import Literal
|
|
31
|
-
if sys.version_info >= (3,
|
|
31
|
+
if sys.version_info >= (3, 12):
|
|
32
|
+
from typing import NotRequired
|
|
33
|
+
else:
|
|
34
|
+
from typing_extensions import NotRequired
|
|
35
|
+
if sys.version_info >= (3, 12):
|
|
32
36
|
from typing import TypedDict
|
|
33
37
|
else:
|
|
34
38
|
from typing_extensions import TypedDict
|
|
@@ -42,10 +46,12 @@ __all__ = (
|
|
|
42
46
|
"AssociateTrustStoreRequestRequestTypeDef",
|
|
43
47
|
"AssociateUserAccessLoggingSettingsRequestRequestTypeDef",
|
|
44
48
|
"AssociateUserSettingsRequestRequestTypeDef",
|
|
49
|
+
"BlobTypeDef",
|
|
45
50
|
"BrowserSettingsSummaryTypeDef",
|
|
46
51
|
"BrowserSettingsTypeDef",
|
|
47
52
|
"CertificateSummaryTypeDef",
|
|
48
53
|
"CertificateTypeDef",
|
|
54
|
+
"CookieSpecificationTypeDef",
|
|
49
55
|
"TagTypeDef",
|
|
50
56
|
"CreateIdentityProviderRequestRequestTypeDef",
|
|
51
57
|
"IpRuleTypeDef",
|
|
@@ -78,7 +84,6 @@ __all__ = (
|
|
|
78
84
|
"GetUserAccessLoggingSettingsRequestRequestTypeDef",
|
|
79
85
|
"UserAccessLoggingSettingsTypeDef",
|
|
80
86
|
"GetUserSettingsRequestRequestTypeDef",
|
|
81
|
-
"UserSettingsTypeDef",
|
|
82
87
|
"IdentityProviderSummaryTypeDef",
|
|
83
88
|
"IpAccessSettingsSummaryTypeDef",
|
|
84
89
|
"ListBrowserSettingsRequestRequestTypeDef",
|
|
@@ -95,15 +100,12 @@ __all__ = (
|
|
|
95
100
|
"ListUserAccessLoggingSettingsRequestRequestTypeDef",
|
|
96
101
|
"UserAccessLoggingSettingsSummaryTypeDef",
|
|
97
102
|
"ListUserSettingsRequestRequestTypeDef",
|
|
98
|
-
"UserSettingsSummaryTypeDef",
|
|
99
103
|
"UntagResourceRequestRequestTypeDef",
|
|
100
104
|
"UpdateBrowserSettingsRequestRequestTypeDef",
|
|
101
105
|
"UpdateIdentityProviderRequestRequestTypeDef",
|
|
102
106
|
"UpdateNetworkSettingsRequestRequestTypeDef",
|
|
103
107
|
"UpdatePortalRequestRequestTypeDef",
|
|
104
|
-
"UpdateTrustStoreRequestRequestTypeDef",
|
|
105
108
|
"UpdateUserAccessLoggingSettingsRequestRequestTypeDef",
|
|
106
|
-
"UpdateUserSettingsRequestRequestTypeDef",
|
|
107
109
|
"AssociateBrowserSettingsResponseTypeDef",
|
|
108
110
|
"AssociateIpAccessSettingsResponseTypeDef",
|
|
109
111
|
"AssociateNetworkSettingsResponseTypeDef",
|
|
@@ -120,17 +122,18 @@ __all__ = (
|
|
|
120
122
|
"CreateUserSettingsResponseTypeDef",
|
|
121
123
|
"GetPortalServiceProviderMetadataResponseTypeDef",
|
|
122
124
|
"UpdateTrustStoreResponseTypeDef",
|
|
125
|
+
"UpdateTrustStoreRequestRequestTypeDef",
|
|
123
126
|
"ListBrowserSettingsResponseTypeDef",
|
|
124
127
|
"GetBrowserSettingsResponseTypeDef",
|
|
125
128
|
"UpdateBrowserSettingsResponseTypeDef",
|
|
126
129
|
"ListTrustStoreCertificatesResponseTypeDef",
|
|
127
130
|
"GetTrustStoreCertificateResponseTypeDef",
|
|
131
|
+
"CookieSynchronizationConfigurationTypeDef",
|
|
128
132
|
"CreateBrowserSettingsRequestRequestTypeDef",
|
|
129
133
|
"CreateNetworkSettingsRequestRequestTypeDef",
|
|
130
134
|
"CreatePortalRequestRequestTypeDef",
|
|
131
135
|
"CreateTrustStoreRequestRequestTypeDef",
|
|
132
136
|
"CreateUserAccessLoggingSettingsRequestRequestTypeDef",
|
|
133
|
-
"CreateUserSettingsRequestRequestTypeDef",
|
|
134
137
|
"ListTagsForResourceResponseTypeDef",
|
|
135
138
|
"TagResourceRequestRequestTypeDef",
|
|
136
139
|
"CreateIpAccessSettingsRequestRequestTypeDef",
|
|
@@ -145,17 +148,21 @@ __all__ = (
|
|
|
145
148
|
"GetTrustStoreResponseTypeDef",
|
|
146
149
|
"GetUserAccessLoggingSettingsResponseTypeDef",
|
|
147
150
|
"UpdateUserAccessLoggingSettingsResponseTypeDef",
|
|
148
|
-
"GetUserSettingsResponseTypeDef",
|
|
149
|
-
"UpdateUserSettingsResponseTypeDef",
|
|
150
151
|
"ListIdentityProvidersResponseTypeDef",
|
|
151
152
|
"ListIpAccessSettingsResponseTypeDef",
|
|
152
153
|
"ListNetworkSettingsResponseTypeDef",
|
|
153
154
|
"ListPortalsResponseTypeDef",
|
|
154
155
|
"ListTrustStoresResponseTypeDef",
|
|
155
156
|
"ListUserAccessLoggingSettingsResponseTypeDef",
|
|
156
|
-
"
|
|
157
|
+
"CreateUserSettingsRequestRequestTypeDef",
|
|
158
|
+
"UpdateUserSettingsRequestRequestTypeDef",
|
|
159
|
+
"UserSettingsSummaryTypeDef",
|
|
160
|
+
"UserSettingsTypeDef",
|
|
157
161
|
"GetIpAccessSettingsResponseTypeDef",
|
|
158
162
|
"UpdateIpAccessSettingsResponseTypeDef",
|
|
163
|
+
"ListUserSettingsResponseTypeDef",
|
|
164
|
+
"GetUserSettingsResponseTypeDef",
|
|
165
|
+
"UpdateUserSettingsResponseTypeDef",
|
|
159
166
|
)
|
|
160
167
|
|
|
161
168
|
AssociateBrowserSettingsRequestRequestTypeDef = TypedDict(
|
|
@@ -217,57 +224,53 @@ AssociateUserSettingsRequestRequestTypeDef = TypedDict(
|
|
|
217
224
|
},
|
|
218
225
|
)
|
|
219
226
|
|
|
227
|
+
BlobTypeDef = Union[str, bytes, IO[Any], StreamingBody]
|
|
220
228
|
BrowserSettingsSummaryTypeDef = TypedDict(
|
|
221
229
|
"BrowserSettingsSummaryTypeDef",
|
|
222
230
|
{
|
|
223
231
|
"browserSettingsArn": str,
|
|
224
232
|
},
|
|
225
|
-
total=False,
|
|
226
233
|
)
|
|
227
234
|
|
|
228
|
-
|
|
229
|
-
"
|
|
235
|
+
BrowserSettingsTypeDef = TypedDict(
|
|
236
|
+
"BrowserSettingsTypeDef",
|
|
230
237
|
{
|
|
231
238
|
"browserSettingsArn": str,
|
|
239
|
+
"associatedPortalArns": NotRequired[List[str]],
|
|
240
|
+
"browserPolicy": NotRequired[str],
|
|
232
241
|
},
|
|
233
242
|
)
|
|
234
|
-
_OptionalBrowserSettingsTypeDef = TypedDict(
|
|
235
|
-
"_OptionalBrowserSettingsTypeDef",
|
|
236
|
-
{
|
|
237
|
-
"associatedPortalArns": List[str],
|
|
238
|
-
"browserPolicy": str,
|
|
239
|
-
},
|
|
240
|
-
total=False,
|
|
241
|
-
)
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
class BrowserSettingsTypeDef(_RequiredBrowserSettingsTypeDef, _OptionalBrowserSettingsTypeDef):
|
|
245
|
-
pass
|
|
246
|
-
|
|
247
243
|
|
|
248
244
|
CertificateSummaryTypeDef = TypedDict(
|
|
249
245
|
"CertificateSummaryTypeDef",
|
|
250
246
|
{
|
|
251
|
-
"issuer": str,
|
|
252
|
-
"notValidAfter": datetime,
|
|
253
|
-
"notValidBefore": datetime,
|
|
254
|
-
"subject": str,
|
|
255
|
-
"thumbprint": str,
|
|
247
|
+
"issuer": NotRequired[str],
|
|
248
|
+
"notValidAfter": NotRequired[datetime],
|
|
249
|
+
"notValidBefore": NotRequired[datetime],
|
|
250
|
+
"subject": NotRequired[str],
|
|
251
|
+
"thumbprint": NotRequired[str],
|
|
256
252
|
},
|
|
257
|
-
total=False,
|
|
258
253
|
)
|
|
259
254
|
|
|
260
255
|
CertificateTypeDef = TypedDict(
|
|
261
256
|
"CertificateTypeDef",
|
|
262
257
|
{
|
|
263
|
-
"body": bytes,
|
|
264
|
-
"issuer": str,
|
|
265
|
-
"notValidAfter": datetime,
|
|
266
|
-
"notValidBefore": datetime,
|
|
267
|
-
"subject": str,
|
|
268
|
-
"thumbprint": str,
|
|
258
|
+
"body": NotRequired[bytes],
|
|
259
|
+
"issuer": NotRequired[str],
|
|
260
|
+
"notValidAfter": NotRequired[datetime],
|
|
261
|
+
"notValidBefore": NotRequired[datetime],
|
|
262
|
+
"subject": NotRequired[str],
|
|
263
|
+
"thumbprint": NotRequired[str],
|
|
264
|
+
},
|
|
265
|
+
)
|
|
266
|
+
|
|
267
|
+
CookieSpecificationTypeDef = TypedDict(
|
|
268
|
+
"CookieSpecificationTypeDef",
|
|
269
|
+
{
|
|
270
|
+
"domain": str,
|
|
271
|
+
"name": NotRequired[str],
|
|
272
|
+
"path": NotRequired[str],
|
|
269
273
|
},
|
|
270
|
-
total=False,
|
|
271
274
|
)
|
|
272
275
|
|
|
273
276
|
TagTypeDef = TypedDict(
|
|
@@ -278,49 +281,24 @@ TagTypeDef = TypedDict(
|
|
|
278
281
|
},
|
|
279
282
|
)
|
|
280
283
|
|
|
281
|
-
|
|
282
|
-
"
|
|
284
|
+
CreateIdentityProviderRequestRequestTypeDef = TypedDict(
|
|
285
|
+
"CreateIdentityProviderRequestRequestTypeDef",
|
|
283
286
|
{
|
|
284
287
|
"identityProviderDetails": Mapping[str, str],
|
|
285
288
|
"identityProviderName": str,
|
|
286
289
|
"identityProviderType": IdentityProviderTypeType,
|
|
287
290
|
"portalArn": str,
|
|
291
|
+
"clientToken": NotRequired[str],
|
|
288
292
|
},
|
|
289
293
|
)
|
|
290
|
-
_OptionalCreateIdentityProviderRequestRequestTypeDef = TypedDict(
|
|
291
|
-
"_OptionalCreateIdentityProviderRequestRequestTypeDef",
|
|
292
|
-
{
|
|
293
|
-
"clientToken": str,
|
|
294
|
-
},
|
|
295
|
-
total=False,
|
|
296
|
-
)
|
|
297
294
|
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
_RequiredCreateIdentityProviderRequestRequestTypeDef,
|
|
301
|
-
_OptionalCreateIdentityProviderRequestRequestTypeDef,
|
|
302
|
-
):
|
|
303
|
-
pass
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
_RequiredIpRuleTypeDef = TypedDict(
|
|
307
|
-
"_RequiredIpRuleTypeDef",
|
|
295
|
+
IpRuleTypeDef = TypedDict(
|
|
296
|
+
"IpRuleTypeDef",
|
|
308
297
|
{
|
|
309
298
|
"ipRange": str,
|
|
299
|
+
"description": NotRequired[str],
|
|
310
300
|
},
|
|
311
301
|
)
|
|
312
|
-
_OptionalIpRuleTypeDef = TypedDict(
|
|
313
|
-
"_OptionalIpRuleTypeDef",
|
|
314
|
-
{
|
|
315
|
-
"description": str,
|
|
316
|
-
},
|
|
317
|
-
total=False,
|
|
318
|
-
)
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
class IpRuleTypeDef(_RequiredIpRuleTypeDef, _OptionalIpRuleTypeDef):
|
|
322
|
-
pass
|
|
323
|
-
|
|
324
302
|
|
|
325
303
|
DeleteBrowserSettingsRequestRequestTypeDef = TypedDict(
|
|
326
304
|
"DeleteBrowserSettingsRequestRequestTypeDef",
|
|
@@ -434,26 +412,15 @@ GetIdentityProviderRequestRequestTypeDef = TypedDict(
|
|
|
434
412
|
},
|
|
435
413
|
)
|
|
436
414
|
|
|
437
|
-
|
|
438
|
-
"
|
|
415
|
+
IdentityProviderTypeDef = TypedDict(
|
|
416
|
+
"IdentityProviderTypeDef",
|
|
439
417
|
{
|
|
440
418
|
"identityProviderArn": str,
|
|
419
|
+
"identityProviderDetails": NotRequired[Dict[str, str]],
|
|
420
|
+
"identityProviderName": NotRequired[str],
|
|
421
|
+
"identityProviderType": NotRequired[IdentityProviderTypeType],
|
|
441
422
|
},
|
|
442
423
|
)
|
|
443
|
-
_OptionalIdentityProviderTypeDef = TypedDict(
|
|
444
|
-
"_OptionalIdentityProviderTypeDef",
|
|
445
|
-
{
|
|
446
|
-
"identityProviderDetails": Dict[str, str],
|
|
447
|
-
"identityProviderName": str,
|
|
448
|
-
"identityProviderType": IdentityProviderTypeType,
|
|
449
|
-
},
|
|
450
|
-
total=False,
|
|
451
|
-
)
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
class IdentityProviderTypeDef(_RequiredIdentityProviderTypeDef, _OptionalIdentityProviderTypeDef):
|
|
455
|
-
pass
|
|
456
|
-
|
|
457
424
|
|
|
458
425
|
GetIpAccessSettingsRequestRequestTypeDef = TypedDict(
|
|
459
426
|
"GetIpAccessSettingsRequestRequestTypeDef",
|
|
@@ -469,27 +436,16 @@ GetNetworkSettingsRequestRequestTypeDef = TypedDict(
|
|
|
469
436
|
},
|
|
470
437
|
)
|
|
471
438
|
|
|
472
|
-
|
|
473
|
-
"
|
|
439
|
+
NetworkSettingsTypeDef = TypedDict(
|
|
440
|
+
"NetworkSettingsTypeDef",
|
|
474
441
|
{
|
|
475
442
|
"networkSettingsArn": str,
|
|
443
|
+
"associatedPortalArns": NotRequired[List[str]],
|
|
444
|
+
"securityGroupIds": NotRequired[List[str]],
|
|
445
|
+
"subnetIds": NotRequired[List[str]],
|
|
446
|
+
"vpcId": NotRequired[str],
|
|
476
447
|
},
|
|
477
448
|
)
|
|
478
|
-
_OptionalNetworkSettingsTypeDef = TypedDict(
|
|
479
|
-
"_OptionalNetworkSettingsTypeDef",
|
|
480
|
-
{
|
|
481
|
-
"associatedPortalArns": List[str],
|
|
482
|
-
"securityGroupIds": List[str],
|
|
483
|
-
"subnetIds": List[str],
|
|
484
|
-
"vpcId": str,
|
|
485
|
-
},
|
|
486
|
-
total=False,
|
|
487
|
-
)
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
class NetworkSettingsTypeDef(_RequiredNetworkSettingsTypeDef, _OptionalNetworkSettingsTypeDef):
|
|
491
|
-
pass
|
|
492
|
-
|
|
493
449
|
|
|
494
450
|
GetPortalRequestRequestTypeDef = TypedDict(
|
|
495
451
|
"GetPortalRequestRequestTypeDef",
|
|
@@ -501,23 +457,22 @@ GetPortalRequestRequestTypeDef = TypedDict(
|
|
|
501
457
|
PortalTypeDef = TypedDict(
|
|
502
458
|
"PortalTypeDef",
|
|
503
459
|
{
|
|
504
|
-
"authenticationType": AuthenticationTypeType,
|
|
505
|
-
"browserSettingsArn": str,
|
|
506
|
-
"browserType": Literal["Chrome"],
|
|
507
|
-
"creationDate": datetime,
|
|
508
|
-
"displayName": str,
|
|
509
|
-
"ipAccessSettingsArn": str,
|
|
510
|
-
"networkSettingsArn": str,
|
|
511
460
|
"portalArn": str,
|
|
512
|
-
"
|
|
513
|
-
"
|
|
514
|
-
"
|
|
515
|
-
"
|
|
516
|
-
"
|
|
517
|
-
"
|
|
518
|
-
"
|
|
461
|
+
"authenticationType": NotRequired[AuthenticationTypeType],
|
|
462
|
+
"browserSettingsArn": NotRequired[str],
|
|
463
|
+
"browserType": NotRequired[Literal["Chrome"]],
|
|
464
|
+
"creationDate": NotRequired[datetime],
|
|
465
|
+
"displayName": NotRequired[str],
|
|
466
|
+
"ipAccessSettingsArn": NotRequired[str],
|
|
467
|
+
"networkSettingsArn": NotRequired[str],
|
|
468
|
+
"portalEndpoint": NotRequired[str],
|
|
469
|
+
"portalStatus": NotRequired[PortalStatusType],
|
|
470
|
+
"rendererType": NotRequired[Literal["AppStream"]],
|
|
471
|
+
"statusReason": NotRequired[str],
|
|
472
|
+
"trustStoreArn": NotRequired[str],
|
|
473
|
+
"userAccessLoggingSettingsArn": NotRequired[str],
|
|
474
|
+
"userSettingsArn": NotRequired[str],
|
|
519
475
|
},
|
|
520
|
-
total=False,
|
|
521
476
|
)
|
|
522
477
|
|
|
523
478
|
GetPortalServiceProviderMetadataRequestRequestTypeDef = TypedDict(
|
|
@@ -545,10 +500,9 @@ GetTrustStoreRequestRequestTypeDef = TypedDict(
|
|
|
545
500
|
TrustStoreTypeDef = TypedDict(
|
|
546
501
|
"TrustStoreTypeDef",
|
|
547
502
|
{
|
|
548
|
-
"associatedPortalArns": List[str],
|
|
549
503
|
"trustStoreArn": str,
|
|
504
|
+
"associatedPortalArns": NotRequired[List[str]],
|
|
550
505
|
},
|
|
551
|
-
total=False,
|
|
552
506
|
)
|
|
553
507
|
|
|
554
508
|
GetUserAccessLoggingSettingsRequestRequestTypeDef = TypedDict(
|
|
@@ -558,27 +512,14 @@ GetUserAccessLoggingSettingsRequestRequestTypeDef = TypedDict(
|
|
|
558
512
|
},
|
|
559
513
|
)
|
|
560
514
|
|
|
561
|
-
|
|
562
|
-
"
|
|
515
|
+
UserAccessLoggingSettingsTypeDef = TypedDict(
|
|
516
|
+
"UserAccessLoggingSettingsTypeDef",
|
|
563
517
|
{
|
|
564
518
|
"userAccessLoggingSettingsArn": str,
|
|
519
|
+
"associatedPortalArns": NotRequired[List[str]],
|
|
520
|
+
"kinesisStreamArn": NotRequired[str],
|
|
565
521
|
},
|
|
566
522
|
)
|
|
567
|
-
_OptionalUserAccessLoggingSettingsTypeDef = TypedDict(
|
|
568
|
-
"_OptionalUserAccessLoggingSettingsTypeDef",
|
|
569
|
-
{
|
|
570
|
-
"associatedPortalArns": List[str],
|
|
571
|
-
"kinesisStreamArn": str,
|
|
572
|
-
},
|
|
573
|
-
total=False,
|
|
574
|
-
)
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
class UserAccessLoggingSettingsTypeDef(
|
|
578
|
-
_RequiredUserAccessLoggingSettingsTypeDef, _OptionalUserAccessLoggingSettingsTypeDef
|
|
579
|
-
):
|
|
580
|
-
pass
|
|
581
|
-
|
|
582
523
|
|
|
583
524
|
GetUserSettingsRequestRequestTypeDef = TypedDict(
|
|
584
525
|
"GetUserSettingsRequestRequestTypeDef",
|
|
@@ -587,140 +528,92 @@ GetUserSettingsRequestRequestTypeDef = TypedDict(
|
|
|
587
528
|
},
|
|
588
529
|
)
|
|
589
530
|
|
|
590
|
-
_RequiredUserSettingsTypeDef = TypedDict(
|
|
591
|
-
"_RequiredUserSettingsTypeDef",
|
|
592
|
-
{
|
|
593
|
-
"userSettingsArn": str,
|
|
594
|
-
},
|
|
595
|
-
)
|
|
596
|
-
_OptionalUserSettingsTypeDef = TypedDict(
|
|
597
|
-
"_OptionalUserSettingsTypeDef",
|
|
598
|
-
{
|
|
599
|
-
"associatedPortalArns": List[str],
|
|
600
|
-
"copyAllowed": EnabledTypeType,
|
|
601
|
-
"disconnectTimeoutInMinutes": int,
|
|
602
|
-
"downloadAllowed": EnabledTypeType,
|
|
603
|
-
"idleDisconnectTimeoutInMinutes": int,
|
|
604
|
-
"pasteAllowed": EnabledTypeType,
|
|
605
|
-
"printAllowed": EnabledTypeType,
|
|
606
|
-
"uploadAllowed": EnabledTypeType,
|
|
607
|
-
},
|
|
608
|
-
total=False,
|
|
609
|
-
)
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
class UserSettingsTypeDef(_RequiredUserSettingsTypeDef, _OptionalUserSettingsTypeDef):
|
|
613
|
-
pass
|
|
614
|
-
|
|
615
|
-
|
|
616
531
|
IdentityProviderSummaryTypeDef = TypedDict(
|
|
617
532
|
"IdentityProviderSummaryTypeDef",
|
|
618
533
|
{
|
|
619
534
|
"identityProviderArn": str,
|
|
620
|
-
"identityProviderName": str,
|
|
621
|
-
"identityProviderType": IdentityProviderTypeType,
|
|
535
|
+
"identityProviderName": NotRequired[str],
|
|
536
|
+
"identityProviderType": NotRequired[IdentityProviderTypeType],
|
|
622
537
|
},
|
|
623
|
-
total=False,
|
|
624
538
|
)
|
|
625
539
|
|
|
626
540
|
IpAccessSettingsSummaryTypeDef = TypedDict(
|
|
627
541
|
"IpAccessSettingsSummaryTypeDef",
|
|
628
542
|
{
|
|
629
|
-
"creationDate": datetime,
|
|
630
|
-
"description": str,
|
|
631
|
-
"displayName": str,
|
|
632
543
|
"ipAccessSettingsArn": str,
|
|
544
|
+
"creationDate": NotRequired[datetime],
|
|
545
|
+
"description": NotRequired[str],
|
|
546
|
+
"displayName": NotRequired[str],
|
|
633
547
|
},
|
|
634
|
-
total=False,
|
|
635
548
|
)
|
|
636
549
|
|
|
637
550
|
ListBrowserSettingsRequestRequestTypeDef = TypedDict(
|
|
638
551
|
"ListBrowserSettingsRequestRequestTypeDef",
|
|
639
552
|
{
|
|
640
|
-
"maxResults": int,
|
|
641
|
-
"nextToken": str,
|
|
553
|
+
"maxResults": NotRequired[int],
|
|
554
|
+
"nextToken": NotRequired[str],
|
|
642
555
|
},
|
|
643
|
-
total=False,
|
|
644
556
|
)
|
|
645
557
|
|
|
646
|
-
|
|
647
|
-
"
|
|
558
|
+
ListIdentityProvidersRequestRequestTypeDef = TypedDict(
|
|
559
|
+
"ListIdentityProvidersRequestRequestTypeDef",
|
|
648
560
|
{
|
|
649
561
|
"portalArn": str,
|
|
562
|
+
"maxResults": NotRequired[int],
|
|
563
|
+
"nextToken": NotRequired[str],
|
|
650
564
|
},
|
|
651
565
|
)
|
|
652
|
-
_OptionalListIdentityProvidersRequestRequestTypeDef = TypedDict(
|
|
653
|
-
"_OptionalListIdentityProvidersRequestRequestTypeDef",
|
|
654
|
-
{
|
|
655
|
-
"maxResults": int,
|
|
656
|
-
"nextToken": str,
|
|
657
|
-
},
|
|
658
|
-
total=False,
|
|
659
|
-
)
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
class ListIdentityProvidersRequestRequestTypeDef(
|
|
663
|
-
_RequiredListIdentityProvidersRequestRequestTypeDef,
|
|
664
|
-
_OptionalListIdentityProvidersRequestRequestTypeDef,
|
|
665
|
-
):
|
|
666
|
-
pass
|
|
667
|
-
|
|
668
566
|
|
|
669
567
|
ListIpAccessSettingsRequestRequestTypeDef = TypedDict(
|
|
670
568
|
"ListIpAccessSettingsRequestRequestTypeDef",
|
|
671
569
|
{
|
|
672
|
-
"maxResults": int,
|
|
673
|
-
"nextToken": str,
|
|
570
|
+
"maxResults": NotRequired[int],
|
|
571
|
+
"nextToken": NotRequired[str],
|
|
674
572
|
},
|
|
675
|
-
total=False,
|
|
676
573
|
)
|
|
677
574
|
|
|
678
575
|
ListNetworkSettingsRequestRequestTypeDef = TypedDict(
|
|
679
576
|
"ListNetworkSettingsRequestRequestTypeDef",
|
|
680
577
|
{
|
|
681
|
-
"maxResults": int,
|
|
682
|
-
"nextToken": str,
|
|
578
|
+
"maxResults": NotRequired[int],
|
|
579
|
+
"nextToken": NotRequired[str],
|
|
683
580
|
},
|
|
684
|
-
total=False,
|
|
685
581
|
)
|
|
686
582
|
|
|
687
583
|
NetworkSettingsSummaryTypeDef = TypedDict(
|
|
688
584
|
"NetworkSettingsSummaryTypeDef",
|
|
689
585
|
{
|
|
690
586
|
"networkSettingsArn": str,
|
|
691
|
-
"vpcId": str,
|
|
587
|
+
"vpcId": NotRequired[str],
|
|
692
588
|
},
|
|
693
|
-
total=False,
|
|
694
589
|
)
|
|
695
590
|
|
|
696
591
|
ListPortalsRequestRequestTypeDef = TypedDict(
|
|
697
592
|
"ListPortalsRequestRequestTypeDef",
|
|
698
593
|
{
|
|
699
|
-
"maxResults": int,
|
|
700
|
-
"nextToken": str,
|
|
594
|
+
"maxResults": NotRequired[int],
|
|
595
|
+
"nextToken": NotRequired[str],
|
|
701
596
|
},
|
|
702
|
-
total=False,
|
|
703
597
|
)
|
|
704
598
|
|
|
705
599
|
PortalSummaryTypeDef = TypedDict(
|
|
706
600
|
"PortalSummaryTypeDef",
|
|
707
601
|
{
|
|
708
|
-
"authenticationType": AuthenticationTypeType,
|
|
709
|
-
"browserSettingsArn": str,
|
|
710
|
-
"browserType": Literal["Chrome"],
|
|
711
|
-
"creationDate": datetime,
|
|
712
|
-
"displayName": str,
|
|
713
|
-
"ipAccessSettingsArn": str,
|
|
714
|
-
"networkSettingsArn": str,
|
|
715
602
|
"portalArn": str,
|
|
716
|
-
"
|
|
717
|
-
"
|
|
718
|
-
"
|
|
719
|
-
"
|
|
720
|
-
"
|
|
721
|
-
"
|
|
603
|
+
"authenticationType": NotRequired[AuthenticationTypeType],
|
|
604
|
+
"browserSettingsArn": NotRequired[str],
|
|
605
|
+
"browserType": NotRequired[Literal["Chrome"]],
|
|
606
|
+
"creationDate": NotRequired[datetime],
|
|
607
|
+
"displayName": NotRequired[str],
|
|
608
|
+
"ipAccessSettingsArn": NotRequired[str],
|
|
609
|
+
"networkSettingsArn": NotRequired[str],
|
|
610
|
+
"portalEndpoint": NotRequired[str],
|
|
611
|
+
"portalStatus": NotRequired[PortalStatusType],
|
|
612
|
+
"rendererType": NotRequired[Literal["AppStream"]],
|
|
613
|
+
"trustStoreArn": NotRequired[str],
|
|
614
|
+
"userAccessLoggingSettingsArn": NotRequired[str],
|
|
615
|
+
"userSettingsArn": NotRequired[str],
|
|
722
616
|
},
|
|
723
|
-
total=False,
|
|
724
617
|
)
|
|
725
618
|
|
|
726
619
|
ListTagsForResourceRequestRequestTypeDef = TypedDict(
|
|
@@ -730,86 +623,52 @@ ListTagsForResourceRequestRequestTypeDef = TypedDict(
|
|
|
730
623
|
},
|
|
731
624
|
)
|
|
732
625
|
|
|
733
|
-
|
|
734
|
-
"
|
|
626
|
+
ListTrustStoreCertificatesRequestRequestTypeDef = TypedDict(
|
|
627
|
+
"ListTrustStoreCertificatesRequestRequestTypeDef",
|
|
735
628
|
{
|
|
736
629
|
"trustStoreArn": str,
|
|
630
|
+
"maxResults": NotRequired[int],
|
|
631
|
+
"nextToken": NotRequired[str],
|
|
737
632
|
},
|
|
738
633
|
)
|
|
739
|
-
_OptionalListTrustStoreCertificatesRequestRequestTypeDef = TypedDict(
|
|
740
|
-
"_OptionalListTrustStoreCertificatesRequestRequestTypeDef",
|
|
741
|
-
{
|
|
742
|
-
"maxResults": int,
|
|
743
|
-
"nextToken": str,
|
|
744
|
-
},
|
|
745
|
-
total=False,
|
|
746
|
-
)
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
class ListTrustStoreCertificatesRequestRequestTypeDef(
|
|
750
|
-
_RequiredListTrustStoreCertificatesRequestRequestTypeDef,
|
|
751
|
-
_OptionalListTrustStoreCertificatesRequestRequestTypeDef,
|
|
752
|
-
):
|
|
753
|
-
pass
|
|
754
|
-
|
|
755
634
|
|
|
756
635
|
ListTrustStoresRequestRequestTypeDef = TypedDict(
|
|
757
636
|
"ListTrustStoresRequestRequestTypeDef",
|
|
758
637
|
{
|
|
759
|
-
"maxResults": int,
|
|
760
|
-
"nextToken": str,
|
|
638
|
+
"maxResults": NotRequired[int],
|
|
639
|
+
"nextToken": NotRequired[str],
|
|
761
640
|
},
|
|
762
|
-
total=False,
|
|
763
641
|
)
|
|
764
642
|
|
|
765
643
|
TrustStoreSummaryTypeDef = TypedDict(
|
|
766
644
|
"TrustStoreSummaryTypeDef",
|
|
767
645
|
{
|
|
768
|
-
"trustStoreArn": str,
|
|
646
|
+
"trustStoreArn": NotRequired[str],
|
|
769
647
|
},
|
|
770
|
-
total=False,
|
|
771
648
|
)
|
|
772
649
|
|
|
773
650
|
ListUserAccessLoggingSettingsRequestRequestTypeDef = TypedDict(
|
|
774
651
|
"ListUserAccessLoggingSettingsRequestRequestTypeDef",
|
|
775
652
|
{
|
|
776
|
-
"maxResults": int,
|
|
777
|
-
"nextToken": str,
|
|
653
|
+
"maxResults": NotRequired[int],
|
|
654
|
+
"nextToken": NotRequired[str],
|
|
778
655
|
},
|
|
779
|
-
total=False,
|
|
780
656
|
)
|
|
781
657
|
|
|
782
658
|
UserAccessLoggingSettingsSummaryTypeDef = TypedDict(
|
|
783
659
|
"UserAccessLoggingSettingsSummaryTypeDef",
|
|
784
660
|
{
|
|
785
|
-
"kinesisStreamArn": str,
|
|
786
661
|
"userAccessLoggingSettingsArn": str,
|
|
662
|
+
"kinesisStreamArn": NotRequired[str],
|
|
787
663
|
},
|
|
788
|
-
total=False,
|
|
789
664
|
)
|
|
790
665
|
|
|
791
666
|
ListUserSettingsRequestRequestTypeDef = TypedDict(
|
|
792
667
|
"ListUserSettingsRequestRequestTypeDef",
|
|
793
668
|
{
|
|
794
|
-
"maxResults": int,
|
|
795
|
-
"nextToken": str,
|
|
669
|
+
"maxResults": NotRequired[int],
|
|
670
|
+
"nextToken": NotRequired[str],
|
|
796
671
|
},
|
|
797
|
-
total=False,
|
|
798
|
-
)
|
|
799
|
-
|
|
800
|
-
UserSettingsSummaryTypeDef = TypedDict(
|
|
801
|
-
"UserSettingsSummaryTypeDef",
|
|
802
|
-
{
|
|
803
|
-
"copyAllowed": EnabledTypeType,
|
|
804
|
-
"disconnectTimeoutInMinutes": int,
|
|
805
|
-
"downloadAllowed": EnabledTypeType,
|
|
806
|
-
"idleDisconnectTimeoutInMinutes": int,
|
|
807
|
-
"pasteAllowed": EnabledTypeType,
|
|
808
|
-
"printAllowed": EnabledTypeType,
|
|
809
|
-
"uploadAllowed": EnabledTypeType,
|
|
810
|
-
"userSettingsArn": str,
|
|
811
|
-
},
|
|
812
|
-
total=False,
|
|
813
672
|
)
|
|
814
673
|
|
|
815
674
|
UntagResourceRequestRequestTypeDef = TypedDict(
|
|
@@ -820,175 +679,54 @@ UntagResourceRequestRequestTypeDef = TypedDict(
|
|
|
820
679
|
},
|
|
821
680
|
)
|
|
822
681
|
|
|
823
|
-
|
|
824
|
-
"
|
|
682
|
+
UpdateBrowserSettingsRequestRequestTypeDef = TypedDict(
|
|
683
|
+
"UpdateBrowserSettingsRequestRequestTypeDef",
|
|
825
684
|
{
|
|
826
685
|
"browserSettingsArn": str,
|
|
686
|
+
"browserPolicy": NotRequired[str],
|
|
687
|
+
"clientToken": NotRequired[str],
|
|
827
688
|
},
|
|
828
689
|
)
|
|
829
|
-
_OptionalUpdateBrowserSettingsRequestRequestTypeDef = TypedDict(
|
|
830
|
-
"_OptionalUpdateBrowserSettingsRequestRequestTypeDef",
|
|
831
|
-
{
|
|
832
|
-
"browserPolicy": str,
|
|
833
|
-
"clientToken": str,
|
|
834
|
-
},
|
|
835
|
-
total=False,
|
|
836
|
-
)
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
class UpdateBrowserSettingsRequestRequestTypeDef(
|
|
840
|
-
_RequiredUpdateBrowserSettingsRequestRequestTypeDef,
|
|
841
|
-
_OptionalUpdateBrowserSettingsRequestRequestTypeDef,
|
|
842
|
-
):
|
|
843
|
-
pass
|
|
844
690
|
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
"_RequiredUpdateIdentityProviderRequestRequestTypeDef",
|
|
691
|
+
UpdateIdentityProviderRequestRequestTypeDef = TypedDict(
|
|
692
|
+
"UpdateIdentityProviderRequestRequestTypeDef",
|
|
848
693
|
{
|
|
849
694
|
"identityProviderArn": str,
|
|
695
|
+
"clientToken": NotRequired[str],
|
|
696
|
+
"identityProviderDetails": NotRequired[Mapping[str, str]],
|
|
697
|
+
"identityProviderName": NotRequired[str],
|
|
698
|
+
"identityProviderType": NotRequired[IdentityProviderTypeType],
|
|
850
699
|
},
|
|
851
700
|
)
|
|
852
|
-
_OptionalUpdateIdentityProviderRequestRequestTypeDef = TypedDict(
|
|
853
|
-
"_OptionalUpdateIdentityProviderRequestRequestTypeDef",
|
|
854
|
-
{
|
|
855
|
-
"clientToken": str,
|
|
856
|
-
"identityProviderDetails": Mapping[str, str],
|
|
857
|
-
"identityProviderName": str,
|
|
858
|
-
"identityProviderType": IdentityProviderTypeType,
|
|
859
|
-
},
|
|
860
|
-
total=False,
|
|
861
|
-
)
|
|
862
|
-
|
|
863
701
|
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
_OptionalUpdateIdentityProviderRequestRequestTypeDef,
|
|
867
|
-
):
|
|
868
|
-
pass
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
_RequiredUpdateNetworkSettingsRequestRequestTypeDef = TypedDict(
|
|
872
|
-
"_RequiredUpdateNetworkSettingsRequestRequestTypeDef",
|
|
702
|
+
UpdateNetworkSettingsRequestRequestTypeDef = TypedDict(
|
|
703
|
+
"UpdateNetworkSettingsRequestRequestTypeDef",
|
|
873
704
|
{
|
|
874
705
|
"networkSettingsArn": str,
|
|
706
|
+
"clientToken": NotRequired[str],
|
|
707
|
+
"securityGroupIds": NotRequired[Sequence[str]],
|
|
708
|
+
"subnetIds": NotRequired[Sequence[str]],
|
|
709
|
+
"vpcId": NotRequired[str],
|
|
875
710
|
},
|
|
876
711
|
)
|
|
877
|
-
_OptionalUpdateNetworkSettingsRequestRequestTypeDef = TypedDict(
|
|
878
|
-
"_OptionalUpdateNetworkSettingsRequestRequestTypeDef",
|
|
879
|
-
{
|
|
880
|
-
"clientToken": str,
|
|
881
|
-
"securityGroupIds": Sequence[str],
|
|
882
|
-
"subnetIds": Sequence[str],
|
|
883
|
-
"vpcId": str,
|
|
884
|
-
},
|
|
885
|
-
total=False,
|
|
886
|
-
)
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
class UpdateNetworkSettingsRequestRequestTypeDef(
|
|
890
|
-
_RequiredUpdateNetworkSettingsRequestRequestTypeDef,
|
|
891
|
-
_OptionalUpdateNetworkSettingsRequestRequestTypeDef,
|
|
892
|
-
):
|
|
893
|
-
pass
|
|
894
712
|
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
"_RequiredUpdatePortalRequestRequestTypeDef",
|
|
713
|
+
UpdatePortalRequestRequestTypeDef = TypedDict(
|
|
714
|
+
"UpdatePortalRequestRequestTypeDef",
|
|
898
715
|
{
|
|
899
716
|
"portalArn": str,
|
|
717
|
+
"authenticationType": NotRequired[AuthenticationTypeType],
|
|
718
|
+
"displayName": NotRequired[str],
|
|
900
719
|
},
|
|
901
720
|
)
|
|
902
|
-
_OptionalUpdatePortalRequestRequestTypeDef = TypedDict(
|
|
903
|
-
"_OptionalUpdatePortalRequestRequestTypeDef",
|
|
904
|
-
{
|
|
905
|
-
"authenticationType": AuthenticationTypeType,
|
|
906
|
-
"displayName": str,
|
|
907
|
-
},
|
|
908
|
-
total=False,
|
|
909
|
-
)
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
class UpdatePortalRequestRequestTypeDef(
|
|
913
|
-
_RequiredUpdatePortalRequestRequestTypeDef, _OptionalUpdatePortalRequestRequestTypeDef
|
|
914
|
-
):
|
|
915
|
-
pass
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
_RequiredUpdateTrustStoreRequestRequestTypeDef = TypedDict(
|
|
919
|
-
"_RequiredUpdateTrustStoreRequestRequestTypeDef",
|
|
920
|
-
{
|
|
921
|
-
"trustStoreArn": str,
|
|
922
|
-
},
|
|
923
|
-
)
|
|
924
|
-
_OptionalUpdateTrustStoreRequestRequestTypeDef = TypedDict(
|
|
925
|
-
"_OptionalUpdateTrustStoreRequestRequestTypeDef",
|
|
926
|
-
{
|
|
927
|
-
"certificatesToAdd": Sequence[Union[str, bytes, IO[Any], StreamingBody]],
|
|
928
|
-
"certificatesToDelete": Sequence[str],
|
|
929
|
-
"clientToken": str,
|
|
930
|
-
},
|
|
931
|
-
total=False,
|
|
932
|
-
)
|
|
933
721
|
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
_RequiredUpdateTrustStoreRequestRequestTypeDef, _OptionalUpdateTrustStoreRequestRequestTypeDef
|
|
937
|
-
):
|
|
938
|
-
pass
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
_RequiredUpdateUserAccessLoggingSettingsRequestRequestTypeDef = TypedDict(
|
|
942
|
-
"_RequiredUpdateUserAccessLoggingSettingsRequestRequestTypeDef",
|
|
722
|
+
UpdateUserAccessLoggingSettingsRequestRequestTypeDef = TypedDict(
|
|
723
|
+
"UpdateUserAccessLoggingSettingsRequestRequestTypeDef",
|
|
943
724
|
{
|
|
944
725
|
"userAccessLoggingSettingsArn": str,
|
|
726
|
+
"clientToken": NotRequired[str],
|
|
727
|
+
"kinesisStreamArn": NotRequired[str],
|
|
945
728
|
},
|
|
946
729
|
)
|
|
947
|
-
_OptionalUpdateUserAccessLoggingSettingsRequestRequestTypeDef = TypedDict(
|
|
948
|
-
"_OptionalUpdateUserAccessLoggingSettingsRequestRequestTypeDef",
|
|
949
|
-
{
|
|
950
|
-
"clientToken": str,
|
|
951
|
-
"kinesisStreamArn": str,
|
|
952
|
-
},
|
|
953
|
-
total=False,
|
|
954
|
-
)
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
class UpdateUserAccessLoggingSettingsRequestRequestTypeDef(
|
|
958
|
-
_RequiredUpdateUserAccessLoggingSettingsRequestRequestTypeDef,
|
|
959
|
-
_OptionalUpdateUserAccessLoggingSettingsRequestRequestTypeDef,
|
|
960
|
-
):
|
|
961
|
-
pass
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
_RequiredUpdateUserSettingsRequestRequestTypeDef = TypedDict(
|
|
965
|
-
"_RequiredUpdateUserSettingsRequestRequestTypeDef",
|
|
966
|
-
{
|
|
967
|
-
"userSettingsArn": str,
|
|
968
|
-
},
|
|
969
|
-
)
|
|
970
|
-
_OptionalUpdateUserSettingsRequestRequestTypeDef = TypedDict(
|
|
971
|
-
"_OptionalUpdateUserSettingsRequestRequestTypeDef",
|
|
972
|
-
{
|
|
973
|
-
"clientToken": str,
|
|
974
|
-
"copyAllowed": EnabledTypeType,
|
|
975
|
-
"disconnectTimeoutInMinutes": int,
|
|
976
|
-
"downloadAllowed": EnabledTypeType,
|
|
977
|
-
"idleDisconnectTimeoutInMinutes": int,
|
|
978
|
-
"pasteAllowed": EnabledTypeType,
|
|
979
|
-
"printAllowed": EnabledTypeType,
|
|
980
|
-
"uploadAllowed": EnabledTypeType,
|
|
981
|
-
},
|
|
982
|
-
total=False,
|
|
983
|
-
)
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
class UpdateUserSettingsRequestRequestTypeDef(
|
|
987
|
-
_RequiredUpdateUserSettingsRequestRequestTypeDef,
|
|
988
|
-
_OptionalUpdateUserSettingsRequestRequestTypeDef,
|
|
989
|
-
):
|
|
990
|
-
pass
|
|
991
|
-
|
|
992
730
|
|
|
993
731
|
AssociateBrowserSettingsResponseTypeDef = TypedDict(
|
|
994
732
|
"AssociateBrowserSettingsResponseTypeDef",
|
|
@@ -1126,6 +864,16 @@ UpdateTrustStoreResponseTypeDef = TypedDict(
|
|
|
1126
864
|
},
|
|
1127
865
|
)
|
|
1128
866
|
|
|
867
|
+
UpdateTrustStoreRequestRequestTypeDef = TypedDict(
|
|
868
|
+
"UpdateTrustStoreRequestRequestTypeDef",
|
|
869
|
+
{
|
|
870
|
+
"trustStoreArn": str,
|
|
871
|
+
"certificatesToAdd": NotRequired[Sequence[BlobTypeDef]],
|
|
872
|
+
"certificatesToDelete": NotRequired[Sequence[str]],
|
|
873
|
+
"clientToken": NotRequired[str],
|
|
874
|
+
},
|
|
875
|
+
)
|
|
876
|
+
|
|
1129
877
|
ListBrowserSettingsResponseTypeDef = TypedDict(
|
|
1130
878
|
"ListBrowserSettingsResponseTypeDef",
|
|
1131
879
|
{
|
|
@@ -1170,142 +918,65 @@ GetTrustStoreCertificateResponseTypeDef = TypedDict(
|
|
|
1170
918
|
},
|
|
1171
919
|
)
|
|
1172
920
|
|
|
1173
|
-
|
|
1174
|
-
"
|
|
921
|
+
CookieSynchronizationConfigurationTypeDef = TypedDict(
|
|
922
|
+
"CookieSynchronizationConfigurationTypeDef",
|
|
1175
923
|
{
|
|
1176
|
-
"
|
|
924
|
+
"allowlist": Sequence[CookieSpecificationTypeDef],
|
|
925
|
+
"blocklist": NotRequired[Sequence[CookieSpecificationTypeDef]],
|
|
1177
926
|
},
|
|
1178
927
|
)
|
|
1179
|
-
|
|
1180
|
-
|
|
928
|
+
|
|
929
|
+
CreateBrowserSettingsRequestRequestTypeDef = TypedDict(
|
|
930
|
+
"CreateBrowserSettingsRequestRequestTypeDef",
|
|
1181
931
|
{
|
|
1182
|
-
"
|
|
1183
|
-
"
|
|
1184
|
-
"
|
|
1185
|
-
"
|
|
932
|
+
"browserPolicy": str,
|
|
933
|
+
"additionalEncryptionContext": NotRequired[Mapping[str, str]],
|
|
934
|
+
"clientToken": NotRequired[str],
|
|
935
|
+
"customerManagedKey": NotRequired[str],
|
|
936
|
+
"tags": NotRequired[Sequence[TagTypeDef]],
|
|
1186
937
|
},
|
|
1187
|
-
total=False,
|
|
1188
938
|
)
|
|
1189
939
|
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
_RequiredCreateBrowserSettingsRequestRequestTypeDef,
|
|
1193
|
-
_OptionalCreateBrowserSettingsRequestRequestTypeDef,
|
|
1194
|
-
):
|
|
1195
|
-
pass
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
_RequiredCreateNetworkSettingsRequestRequestTypeDef = TypedDict(
|
|
1199
|
-
"_RequiredCreateNetworkSettingsRequestRequestTypeDef",
|
|
940
|
+
CreateNetworkSettingsRequestRequestTypeDef = TypedDict(
|
|
941
|
+
"CreateNetworkSettingsRequestRequestTypeDef",
|
|
1200
942
|
{
|
|
1201
943
|
"securityGroupIds": Sequence[str],
|
|
1202
944
|
"subnetIds": Sequence[str],
|
|
1203
945
|
"vpcId": str,
|
|
946
|
+
"clientToken": NotRequired[str],
|
|
947
|
+
"tags": NotRequired[Sequence[TagTypeDef]],
|
|
1204
948
|
},
|
|
1205
949
|
)
|
|
1206
|
-
_OptionalCreateNetworkSettingsRequestRequestTypeDef = TypedDict(
|
|
1207
|
-
"_OptionalCreateNetworkSettingsRequestRequestTypeDef",
|
|
1208
|
-
{
|
|
1209
|
-
"clientToken": str,
|
|
1210
|
-
"tags": Sequence[TagTypeDef],
|
|
1211
|
-
},
|
|
1212
|
-
total=False,
|
|
1213
|
-
)
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
class CreateNetworkSettingsRequestRequestTypeDef(
|
|
1217
|
-
_RequiredCreateNetworkSettingsRequestRequestTypeDef,
|
|
1218
|
-
_OptionalCreateNetworkSettingsRequestRequestTypeDef,
|
|
1219
|
-
):
|
|
1220
|
-
pass
|
|
1221
|
-
|
|
1222
950
|
|
|
1223
951
|
CreatePortalRequestRequestTypeDef = TypedDict(
|
|
1224
952
|
"CreatePortalRequestRequestTypeDef",
|
|
1225
953
|
{
|
|
1226
|
-
"additionalEncryptionContext": Mapping[str, str],
|
|
1227
|
-
"authenticationType": AuthenticationTypeType,
|
|
1228
|
-
"clientToken": str,
|
|
1229
|
-
"customerManagedKey": str,
|
|
1230
|
-
"displayName": str,
|
|
1231
|
-
"tags": Sequence[TagTypeDef],
|
|
954
|
+
"additionalEncryptionContext": NotRequired[Mapping[str, str]],
|
|
955
|
+
"authenticationType": NotRequired[AuthenticationTypeType],
|
|
956
|
+
"clientToken": NotRequired[str],
|
|
957
|
+
"customerManagedKey": NotRequired[str],
|
|
958
|
+
"displayName": NotRequired[str],
|
|
959
|
+
"tags": NotRequired[Sequence[TagTypeDef]],
|
|
1232
960
|
},
|
|
1233
|
-
total=False,
|
|
1234
961
|
)
|
|
1235
962
|
|
|
1236
|
-
|
|
1237
|
-
"
|
|
1238
|
-
{
|
|
1239
|
-
"certificateList": Sequence[Union[str, bytes, IO[Any], StreamingBody]],
|
|
1240
|
-
},
|
|
1241
|
-
)
|
|
1242
|
-
_OptionalCreateTrustStoreRequestRequestTypeDef = TypedDict(
|
|
1243
|
-
"_OptionalCreateTrustStoreRequestRequestTypeDef",
|
|
963
|
+
CreateTrustStoreRequestRequestTypeDef = TypedDict(
|
|
964
|
+
"CreateTrustStoreRequestRequestTypeDef",
|
|
1244
965
|
{
|
|
1245
|
-
"
|
|
1246
|
-
"
|
|
966
|
+
"certificateList": Sequence[BlobTypeDef],
|
|
967
|
+
"clientToken": NotRequired[str],
|
|
968
|
+
"tags": NotRequired[Sequence[TagTypeDef]],
|
|
1247
969
|
},
|
|
1248
|
-
total=False,
|
|
1249
970
|
)
|
|
1250
971
|
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
_RequiredCreateTrustStoreRequestRequestTypeDef, _OptionalCreateTrustStoreRequestRequestTypeDef
|
|
1254
|
-
):
|
|
1255
|
-
pass
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
_RequiredCreateUserAccessLoggingSettingsRequestRequestTypeDef = TypedDict(
|
|
1259
|
-
"_RequiredCreateUserAccessLoggingSettingsRequestRequestTypeDef",
|
|
972
|
+
CreateUserAccessLoggingSettingsRequestRequestTypeDef = TypedDict(
|
|
973
|
+
"CreateUserAccessLoggingSettingsRequestRequestTypeDef",
|
|
1260
974
|
{
|
|
1261
975
|
"kinesisStreamArn": str,
|
|
976
|
+
"clientToken": NotRequired[str],
|
|
977
|
+
"tags": NotRequired[Sequence[TagTypeDef]],
|
|
1262
978
|
},
|
|
1263
979
|
)
|
|
1264
|
-
_OptionalCreateUserAccessLoggingSettingsRequestRequestTypeDef = TypedDict(
|
|
1265
|
-
"_OptionalCreateUserAccessLoggingSettingsRequestRequestTypeDef",
|
|
1266
|
-
{
|
|
1267
|
-
"clientToken": str,
|
|
1268
|
-
"tags": Sequence[TagTypeDef],
|
|
1269
|
-
},
|
|
1270
|
-
total=False,
|
|
1271
|
-
)
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
class CreateUserAccessLoggingSettingsRequestRequestTypeDef(
|
|
1275
|
-
_RequiredCreateUserAccessLoggingSettingsRequestRequestTypeDef,
|
|
1276
|
-
_OptionalCreateUserAccessLoggingSettingsRequestRequestTypeDef,
|
|
1277
|
-
):
|
|
1278
|
-
pass
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
_RequiredCreateUserSettingsRequestRequestTypeDef = TypedDict(
|
|
1282
|
-
"_RequiredCreateUserSettingsRequestRequestTypeDef",
|
|
1283
|
-
{
|
|
1284
|
-
"copyAllowed": EnabledTypeType,
|
|
1285
|
-
"downloadAllowed": EnabledTypeType,
|
|
1286
|
-
"pasteAllowed": EnabledTypeType,
|
|
1287
|
-
"printAllowed": EnabledTypeType,
|
|
1288
|
-
"uploadAllowed": EnabledTypeType,
|
|
1289
|
-
},
|
|
1290
|
-
)
|
|
1291
|
-
_OptionalCreateUserSettingsRequestRequestTypeDef = TypedDict(
|
|
1292
|
-
"_OptionalCreateUserSettingsRequestRequestTypeDef",
|
|
1293
|
-
{
|
|
1294
|
-
"clientToken": str,
|
|
1295
|
-
"disconnectTimeoutInMinutes": int,
|
|
1296
|
-
"idleDisconnectTimeoutInMinutes": int,
|
|
1297
|
-
"tags": Sequence[TagTypeDef],
|
|
1298
|
-
},
|
|
1299
|
-
total=False,
|
|
1300
|
-
)
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
class CreateUserSettingsRequestRequestTypeDef(
|
|
1304
|
-
_RequiredCreateUserSettingsRequestRequestTypeDef,
|
|
1305
|
-
_OptionalCreateUserSettingsRequestRequestTypeDef,
|
|
1306
|
-
):
|
|
1307
|
-
pass
|
|
1308
|
-
|
|
1309
980
|
|
|
1310
981
|
ListTagsForResourceResponseTypeDef = TypedDict(
|
|
1311
982
|
"ListTagsForResourceResponseTypeDef",
|
|
@@ -1315,102 +986,50 @@ ListTagsForResourceResponseTypeDef = TypedDict(
|
|
|
1315
986
|
},
|
|
1316
987
|
)
|
|
1317
988
|
|
|
1318
|
-
|
|
1319
|
-
"
|
|
989
|
+
TagResourceRequestRequestTypeDef = TypedDict(
|
|
990
|
+
"TagResourceRequestRequestTypeDef",
|
|
1320
991
|
{
|
|
1321
992
|
"resourceArn": str,
|
|
1322
993
|
"tags": Sequence[TagTypeDef],
|
|
994
|
+
"clientToken": NotRequired[str],
|
|
1323
995
|
},
|
|
1324
996
|
)
|
|
1325
|
-
_OptionalTagResourceRequestRequestTypeDef = TypedDict(
|
|
1326
|
-
"_OptionalTagResourceRequestRequestTypeDef",
|
|
1327
|
-
{
|
|
1328
|
-
"clientToken": str,
|
|
1329
|
-
},
|
|
1330
|
-
total=False,
|
|
1331
|
-
)
|
|
1332
|
-
|
|
1333
997
|
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
):
|
|
1337
|
-
pass
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
_RequiredCreateIpAccessSettingsRequestRequestTypeDef = TypedDict(
|
|
1341
|
-
"_RequiredCreateIpAccessSettingsRequestRequestTypeDef",
|
|
998
|
+
CreateIpAccessSettingsRequestRequestTypeDef = TypedDict(
|
|
999
|
+
"CreateIpAccessSettingsRequestRequestTypeDef",
|
|
1342
1000
|
{
|
|
1343
1001
|
"ipRules": Sequence[IpRuleTypeDef],
|
|
1002
|
+
"additionalEncryptionContext": NotRequired[Mapping[str, str]],
|
|
1003
|
+
"clientToken": NotRequired[str],
|
|
1004
|
+
"customerManagedKey": NotRequired[str],
|
|
1005
|
+
"description": NotRequired[str],
|
|
1006
|
+
"displayName": NotRequired[str],
|
|
1007
|
+
"tags": NotRequired[Sequence[TagTypeDef]],
|
|
1344
1008
|
},
|
|
1345
1009
|
)
|
|
1346
|
-
_OptionalCreateIpAccessSettingsRequestRequestTypeDef = TypedDict(
|
|
1347
|
-
"_OptionalCreateIpAccessSettingsRequestRequestTypeDef",
|
|
1348
|
-
{
|
|
1349
|
-
"additionalEncryptionContext": Mapping[str, str],
|
|
1350
|
-
"clientToken": str,
|
|
1351
|
-
"customerManagedKey": str,
|
|
1352
|
-
"description": str,
|
|
1353
|
-
"displayName": str,
|
|
1354
|
-
"tags": Sequence[TagTypeDef],
|
|
1355
|
-
},
|
|
1356
|
-
total=False,
|
|
1357
|
-
)
|
|
1358
|
-
|
|
1359
1010
|
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
_OptionalCreateIpAccessSettingsRequestRequestTypeDef,
|
|
1363
|
-
):
|
|
1364
|
-
pass
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
_RequiredIpAccessSettingsTypeDef = TypedDict(
|
|
1368
|
-
"_RequiredIpAccessSettingsTypeDef",
|
|
1011
|
+
IpAccessSettingsTypeDef = TypedDict(
|
|
1012
|
+
"IpAccessSettingsTypeDef",
|
|
1369
1013
|
{
|
|
1370
1014
|
"ipAccessSettingsArn": str,
|
|
1015
|
+
"associatedPortalArns": NotRequired[List[str]],
|
|
1016
|
+
"creationDate": NotRequired[datetime],
|
|
1017
|
+
"description": NotRequired[str],
|
|
1018
|
+
"displayName": NotRequired[str],
|
|
1019
|
+
"ipRules": NotRequired[List[IpRuleTypeDef]],
|
|
1371
1020
|
},
|
|
1372
1021
|
)
|
|
1373
|
-
_OptionalIpAccessSettingsTypeDef = TypedDict(
|
|
1374
|
-
"_OptionalIpAccessSettingsTypeDef",
|
|
1375
|
-
{
|
|
1376
|
-
"associatedPortalArns": List[str],
|
|
1377
|
-
"creationDate": datetime,
|
|
1378
|
-
"description": str,
|
|
1379
|
-
"displayName": str,
|
|
1380
|
-
"ipRules": List[IpRuleTypeDef],
|
|
1381
|
-
},
|
|
1382
|
-
total=False,
|
|
1383
|
-
)
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
class IpAccessSettingsTypeDef(_RequiredIpAccessSettingsTypeDef, _OptionalIpAccessSettingsTypeDef):
|
|
1387
|
-
pass
|
|
1388
|
-
|
|
1389
1022
|
|
|
1390
|
-
|
|
1391
|
-
"
|
|
1023
|
+
UpdateIpAccessSettingsRequestRequestTypeDef = TypedDict(
|
|
1024
|
+
"UpdateIpAccessSettingsRequestRequestTypeDef",
|
|
1392
1025
|
{
|
|
1393
1026
|
"ipAccessSettingsArn": str,
|
|
1027
|
+
"clientToken": NotRequired[str],
|
|
1028
|
+
"description": NotRequired[str],
|
|
1029
|
+
"displayName": NotRequired[str],
|
|
1030
|
+
"ipRules": NotRequired[Sequence[IpRuleTypeDef]],
|
|
1394
1031
|
},
|
|
1395
1032
|
)
|
|
1396
|
-
_OptionalUpdateIpAccessSettingsRequestRequestTypeDef = TypedDict(
|
|
1397
|
-
"_OptionalUpdateIpAccessSettingsRequestRequestTypeDef",
|
|
1398
|
-
{
|
|
1399
|
-
"clientToken": str,
|
|
1400
|
-
"description": str,
|
|
1401
|
-
"displayName": str,
|
|
1402
|
-
"ipRules": Sequence[IpRuleTypeDef],
|
|
1403
|
-
},
|
|
1404
|
-
total=False,
|
|
1405
|
-
)
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
class UpdateIpAccessSettingsRequestRequestTypeDef(
|
|
1409
|
-
_RequiredUpdateIpAccessSettingsRequestRequestTypeDef,
|
|
1410
|
-
_OptionalUpdateIpAccessSettingsRequestRequestTypeDef,
|
|
1411
|
-
):
|
|
1412
|
-
pass
|
|
1413
|
-
|
|
1414
1033
|
|
|
1415
1034
|
GetIdentityProviderResponseTypeDef = TypedDict(
|
|
1416
1035
|
"GetIdentityProviderResponseTypeDef",
|
|
@@ -1484,22 +1103,6 @@ UpdateUserAccessLoggingSettingsResponseTypeDef = TypedDict(
|
|
|
1484
1103
|
},
|
|
1485
1104
|
)
|
|
1486
1105
|
|
|
1487
|
-
GetUserSettingsResponseTypeDef = TypedDict(
|
|
1488
|
-
"GetUserSettingsResponseTypeDef",
|
|
1489
|
-
{
|
|
1490
|
-
"userSettings": UserSettingsTypeDef,
|
|
1491
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1492
|
-
},
|
|
1493
|
-
)
|
|
1494
|
-
|
|
1495
|
-
UpdateUserSettingsResponseTypeDef = TypedDict(
|
|
1496
|
-
"UpdateUserSettingsResponseTypeDef",
|
|
1497
|
-
{
|
|
1498
|
-
"userSettings": UserSettingsTypeDef,
|
|
1499
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1500
|
-
},
|
|
1501
|
-
)
|
|
1502
|
-
|
|
1503
1106
|
ListIdentityProvidersResponseTypeDef = TypedDict(
|
|
1504
1107
|
"ListIdentityProvidersResponseTypeDef",
|
|
1505
1108
|
{
|
|
@@ -1554,12 +1157,76 @@ ListUserAccessLoggingSettingsResponseTypeDef = TypedDict(
|
|
|
1554
1157
|
},
|
|
1555
1158
|
)
|
|
1556
1159
|
|
|
1557
|
-
|
|
1558
|
-
"
|
|
1160
|
+
CreateUserSettingsRequestRequestTypeDef = TypedDict(
|
|
1161
|
+
"CreateUserSettingsRequestRequestTypeDef",
|
|
1559
1162
|
{
|
|
1560
|
-
"
|
|
1561
|
-
"
|
|
1562
|
-
"
|
|
1163
|
+
"copyAllowed": EnabledTypeType,
|
|
1164
|
+
"downloadAllowed": EnabledTypeType,
|
|
1165
|
+
"pasteAllowed": EnabledTypeType,
|
|
1166
|
+
"printAllowed": EnabledTypeType,
|
|
1167
|
+
"uploadAllowed": EnabledTypeType,
|
|
1168
|
+
"additionalEncryptionContext": NotRequired[Mapping[str, str]],
|
|
1169
|
+
"clientToken": NotRequired[str],
|
|
1170
|
+
"cookieSynchronizationConfiguration": NotRequired[
|
|
1171
|
+
CookieSynchronizationConfigurationTypeDef
|
|
1172
|
+
],
|
|
1173
|
+
"customerManagedKey": NotRequired[str],
|
|
1174
|
+
"disconnectTimeoutInMinutes": NotRequired[int],
|
|
1175
|
+
"idleDisconnectTimeoutInMinutes": NotRequired[int],
|
|
1176
|
+
"tags": NotRequired[Sequence[TagTypeDef]],
|
|
1177
|
+
},
|
|
1178
|
+
)
|
|
1179
|
+
|
|
1180
|
+
UpdateUserSettingsRequestRequestTypeDef = TypedDict(
|
|
1181
|
+
"UpdateUserSettingsRequestRequestTypeDef",
|
|
1182
|
+
{
|
|
1183
|
+
"userSettingsArn": str,
|
|
1184
|
+
"clientToken": NotRequired[str],
|
|
1185
|
+
"cookieSynchronizationConfiguration": NotRequired[
|
|
1186
|
+
CookieSynchronizationConfigurationTypeDef
|
|
1187
|
+
],
|
|
1188
|
+
"copyAllowed": NotRequired[EnabledTypeType],
|
|
1189
|
+
"disconnectTimeoutInMinutes": NotRequired[int],
|
|
1190
|
+
"downloadAllowed": NotRequired[EnabledTypeType],
|
|
1191
|
+
"idleDisconnectTimeoutInMinutes": NotRequired[int],
|
|
1192
|
+
"pasteAllowed": NotRequired[EnabledTypeType],
|
|
1193
|
+
"printAllowed": NotRequired[EnabledTypeType],
|
|
1194
|
+
"uploadAllowed": NotRequired[EnabledTypeType],
|
|
1195
|
+
},
|
|
1196
|
+
)
|
|
1197
|
+
|
|
1198
|
+
UserSettingsSummaryTypeDef = TypedDict(
|
|
1199
|
+
"UserSettingsSummaryTypeDef",
|
|
1200
|
+
{
|
|
1201
|
+
"userSettingsArn": str,
|
|
1202
|
+
"cookieSynchronizationConfiguration": NotRequired[
|
|
1203
|
+
CookieSynchronizationConfigurationTypeDef
|
|
1204
|
+
],
|
|
1205
|
+
"copyAllowed": NotRequired[EnabledTypeType],
|
|
1206
|
+
"disconnectTimeoutInMinutes": NotRequired[int],
|
|
1207
|
+
"downloadAllowed": NotRequired[EnabledTypeType],
|
|
1208
|
+
"idleDisconnectTimeoutInMinutes": NotRequired[int],
|
|
1209
|
+
"pasteAllowed": NotRequired[EnabledTypeType],
|
|
1210
|
+
"printAllowed": NotRequired[EnabledTypeType],
|
|
1211
|
+
"uploadAllowed": NotRequired[EnabledTypeType],
|
|
1212
|
+
},
|
|
1213
|
+
)
|
|
1214
|
+
|
|
1215
|
+
UserSettingsTypeDef = TypedDict(
|
|
1216
|
+
"UserSettingsTypeDef",
|
|
1217
|
+
{
|
|
1218
|
+
"userSettingsArn": str,
|
|
1219
|
+
"associatedPortalArns": NotRequired[List[str]],
|
|
1220
|
+
"cookieSynchronizationConfiguration": NotRequired[
|
|
1221
|
+
CookieSynchronizationConfigurationTypeDef
|
|
1222
|
+
],
|
|
1223
|
+
"copyAllowed": NotRequired[EnabledTypeType],
|
|
1224
|
+
"disconnectTimeoutInMinutes": NotRequired[int],
|
|
1225
|
+
"downloadAllowed": NotRequired[EnabledTypeType],
|
|
1226
|
+
"idleDisconnectTimeoutInMinutes": NotRequired[int],
|
|
1227
|
+
"pasteAllowed": NotRequired[EnabledTypeType],
|
|
1228
|
+
"printAllowed": NotRequired[EnabledTypeType],
|
|
1229
|
+
"uploadAllowed": NotRequired[EnabledTypeType],
|
|
1563
1230
|
},
|
|
1564
1231
|
)
|
|
1565
1232
|
|
|
@@ -1578,3 +1245,28 @@ UpdateIpAccessSettingsResponseTypeDef = TypedDict(
|
|
|
1578
1245
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1579
1246
|
},
|
|
1580
1247
|
)
|
|
1248
|
+
|
|
1249
|
+
ListUserSettingsResponseTypeDef = TypedDict(
|
|
1250
|
+
"ListUserSettingsResponseTypeDef",
|
|
1251
|
+
{
|
|
1252
|
+
"nextToken": str,
|
|
1253
|
+
"userSettings": List[UserSettingsSummaryTypeDef],
|
|
1254
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1255
|
+
},
|
|
1256
|
+
)
|
|
1257
|
+
|
|
1258
|
+
GetUserSettingsResponseTypeDef = TypedDict(
|
|
1259
|
+
"GetUserSettingsResponseTypeDef",
|
|
1260
|
+
{
|
|
1261
|
+
"userSettings": UserSettingsTypeDef,
|
|
1262
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1263
|
+
},
|
|
1264
|
+
)
|
|
1265
|
+
|
|
1266
|
+
UpdateUserSettingsResponseTypeDef = TypedDict(
|
|
1267
|
+
"UpdateUserSettingsResponseTypeDef",
|
|
1268
|
+
{
|
|
1269
|
+
"userSettings": UserSettingsTypeDef,
|
|
1270
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1271
|
+
},
|
|
1272
|
+
)
|