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