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