mypy-boto3-workspaces-web 1.33.0__py3-none-any.whl → 1.36.0__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.
@@ -1,7 +1,7 @@
1
1
  """
2
2
  Type annotations for workspaces-web service type definitions.
3
3
 
4
- [Open documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/type_defs/)
4
+ [Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/type_defs/)
5
5
 
6
6
  Usage::
7
7
 
@@ -10,11 +10,15 @@ Usage::
10
10
 
11
11
  data: AssociateBrowserSettingsRequestRequestTypeDef = ...
12
12
  ```
13
+
14
+ Copyright 2025 Vlad Emelianov
13
15
  """
14
16
 
17
+ from __future__ import annotations
18
+
15
19
  import sys
16
20
  from datetime import datetime
17
- from typing import IO, Any, Dict, List, Mapping, Sequence, Union
21
+ from typing import IO, Any, Union
18
22
 
19
23
  from botocore.response import StreamingBody
20
24
 
@@ -22,1130 +26,1141 @@ from .literals import (
22
26
  AuthenticationTypeType,
23
27
  EnabledTypeType,
24
28
  IdentityProviderTypeType,
29
+ InstanceTypeType,
25
30
  PortalStatusType,
31
+ SessionSortByType,
32
+ SessionStatusType,
26
33
  )
27
34
 
28
- if sys.version_info >= (3, 12):
29
- from typing import Literal
30
- else:
31
- from typing_extensions import Literal
32
- if sys.version_info >= (3, 12):
33
- from typing import NotRequired
35
+ if sys.version_info >= (3, 9):
36
+ from builtins import dict as Dict
37
+ from builtins import list as List
38
+ from collections.abc import Mapping, Sequence
34
39
  else:
35
- from typing_extensions import NotRequired
40
+ from typing import Dict, List, Mapping, Sequence
36
41
  if sys.version_info >= (3, 12):
37
- from typing import TypedDict
42
+ from typing import Literal, NotRequired, TypedDict
38
43
  else:
39
- from typing_extensions import TypedDict
44
+ from typing_extensions import Literal, NotRequired, TypedDict
40
45
 
41
46
 
42
47
  __all__ = (
43
48
  "AssociateBrowserSettingsRequestRequestTypeDef",
44
- "ResponseMetadataTypeDef",
49
+ "AssociateBrowserSettingsResponseTypeDef",
50
+ "AssociateDataProtectionSettingsRequestRequestTypeDef",
51
+ "AssociateDataProtectionSettingsResponseTypeDef",
45
52
  "AssociateIpAccessSettingsRequestRequestTypeDef",
53
+ "AssociateIpAccessSettingsResponseTypeDef",
46
54
  "AssociateNetworkSettingsRequestRequestTypeDef",
55
+ "AssociateNetworkSettingsResponseTypeDef",
47
56
  "AssociateTrustStoreRequestRequestTypeDef",
57
+ "AssociateTrustStoreResponseTypeDef",
48
58
  "AssociateUserAccessLoggingSettingsRequestRequestTypeDef",
59
+ "AssociateUserAccessLoggingSettingsResponseTypeDef",
49
60
  "AssociateUserSettingsRequestRequestTypeDef",
61
+ "AssociateUserSettingsResponseTypeDef",
50
62
  "BlobTypeDef",
51
63
  "BrowserSettingsSummaryTypeDef",
52
64
  "BrowserSettingsTypeDef",
53
65
  "CertificateSummaryTypeDef",
54
66
  "CertificateTypeDef",
55
67
  "CookieSpecificationTypeDef",
56
- "TagTypeDef",
57
- "CreateIdentityProviderRequestRequestTypeDef",
58
- "IpRuleTypeDef",
59
- "DeleteBrowserSettingsRequestRequestTypeDef",
60
- "DeleteIdentityProviderRequestRequestTypeDef",
61
- "DeleteIpAccessSettingsRequestRequestTypeDef",
62
- "DeleteNetworkSettingsRequestRequestTypeDef",
63
- "DeletePortalRequestRequestTypeDef",
64
- "DeleteTrustStoreRequestRequestTypeDef",
65
- "DeleteUserAccessLoggingSettingsRequestRequestTypeDef",
66
- "DeleteUserSettingsRequestRequestTypeDef",
67
- "DisassociateBrowserSettingsRequestRequestTypeDef",
68
- "DisassociateIpAccessSettingsRequestRequestTypeDef",
69
- "DisassociateNetworkSettingsRequestRequestTypeDef",
70
- "DisassociateTrustStoreRequestRequestTypeDef",
71
- "DisassociateUserAccessLoggingSettingsRequestRequestTypeDef",
72
- "DisassociateUserSettingsRequestRequestTypeDef",
73
- "GetBrowserSettingsRequestRequestTypeDef",
74
- "GetIdentityProviderRequestRequestTypeDef",
75
- "IdentityProviderTypeDef",
76
- "GetIpAccessSettingsRequestRequestTypeDef",
77
- "GetNetworkSettingsRequestRequestTypeDef",
78
- "NetworkSettingsTypeDef",
79
- "GetPortalRequestRequestTypeDef",
80
- "PortalTypeDef",
81
- "GetPortalServiceProviderMetadataRequestRequestTypeDef",
82
- "GetTrustStoreCertificateRequestRequestTypeDef",
83
- "GetTrustStoreRequestRequestTypeDef",
84
- "TrustStoreTypeDef",
85
- "GetUserAccessLoggingSettingsRequestRequestTypeDef",
86
- "UserAccessLoggingSettingsTypeDef",
87
- "GetUserSettingsRequestRequestTypeDef",
88
- "IdentityProviderSummaryTypeDef",
89
- "IpAccessSettingsSummaryTypeDef",
90
- "ListBrowserSettingsRequestRequestTypeDef",
91
- "ListIdentityProvidersRequestRequestTypeDef",
92
- "ListIpAccessSettingsRequestRequestTypeDef",
93
- "ListNetworkSettingsRequestRequestTypeDef",
94
- "NetworkSettingsSummaryTypeDef",
95
- "ListPortalsRequestRequestTypeDef",
96
- "PortalSummaryTypeDef",
97
- "ListTagsForResourceRequestRequestTypeDef",
98
- "ListTrustStoreCertificatesRequestRequestTypeDef",
99
- "ListTrustStoresRequestRequestTypeDef",
100
- "TrustStoreSummaryTypeDef",
101
- "ListUserAccessLoggingSettingsRequestRequestTypeDef",
102
- "UserAccessLoggingSettingsSummaryTypeDef",
103
- "ListUserSettingsRequestRequestTypeDef",
104
- "UntagResourceRequestRequestTypeDef",
105
- "UpdateBrowserSettingsRequestRequestTypeDef",
106
- "UpdateIdentityProviderRequestRequestTypeDef",
107
- "UpdateNetworkSettingsRequestRequestTypeDef",
108
- "UpdatePortalRequestRequestTypeDef",
109
- "UpdateUserAccessLoggingSettingsRequestRequestTypeDef",
110
- "AssociateBrowserSettingsResponseTypeDef",
111
- "AssociateIpAccessSettingsResponseTypeDef",
112
- "AssociateNetworkSettingsResponseTypeDef",
113
- "AssociateTrustStoreResponseTypeDef",
114
- "AssociateUserAccessLoggingSettingsResponseTypeDef",
115
- "AssociateUserSettingsResponseTypeDef",
68
+ "CookieSynchronizationConfigurationOutputTypeDef",
69
+ "CookieSynchronizationConfigurationTypeDef",
70
+ "CreateBrowserSettingsRequestRequestTypeDef",
116
71
  "CreateBrowserSettingsResponseTypeDef",
72
+ "CreateDataProtectionSettingsRequestRequestTypeDef",
73
+ "CreateDataProtectionSettingsResponseTypeDef",
74
+ "CreateIdentityProviderRequestRequestTypeDef",
117
75
  "CreateIdentityProviderResponseTypeDef",
76
+ "CreateIpAccessSettingsRequestRequestTypeDef",
118
77
  "CreateIpAccessSettingsResponseTypeDef",
119
- "CreateNetworkSettingsResponseTypeDef",
120
- "CreatePortalResponseTypeDef",
121
- "CreateTrustStoreResponseTypeDef",
122
- "CreateUserAccessLoggingSettingsResponseTypeDef",
123
- "CreateUserSettingsResponseTypeDef",
124
- "GetPortalServiceProviderMetadataResponseTypeDef",
125
- "UpdateTrustStoreResponseTypeDef",
126
- "UpdateTrustStoreRequestRequestTypeDef",
127
- "ListBrowserSettingsResponseTypeDef",
128
- "GetBrowserSettingsResponseTypeDef",
129
- "UpdateBrowserSettingsResponseTypeDef",
130
- "ListTrustStoreCertificatesResponseTypeDef",
131
- "GetTrustStoreCertificateResponseTypeDef",
132
- "CookieSynchronizationConfigurationTypeDef",
133
- "CreateBrowserSettingsRequestRequestTypeDef",
134
78
  "CreateNetworkSettingsRequestRequestTypeDef",
79
+ "CreateNetworkSettingsResponseTypeDef",
135
80
  "CreatePortalRequestRequestTypeDef",
81
+ "CreatePortalResponseTypeDef",
136
82
  "CreateTrustStoreRequestRequestTypeDef",
83
+ "CreateTrustStoreResponseTypeDef",
137
84
  "CreateUserAccessLoggingSettingsRequestRequestTypeDef",
138
- "ListTagsForResourceResponseTypeDef",
139
- "TagResourceRequestRequestTypeDef",
140
- "CreateIpAccessSettingsRequestRequestTypeDef",
141
- "IpAccessSettingsTypeDef",
142
- "UpdateIpAccessSettingsRequestRequestTypeDef",
143
- "GetIdentityProviderResponseTypeDef",
144
- "UpdateIdentityProviderResponseTypeDef",
145
- "GetNetworkSettingsResponseTypeDef",
146
- "UpdateNetworkSettingsResponseTypeDef",
147
- "GetPortalResponseTypeDef",
148
- "UpdatePortalResponseTypeDef",
149
- "GetTrustStoreResponseTypeDef",
150
- "GetUserAccessLoggingSettingsResponseTypeDef",
151
- "UpdateUserAccessLoggingSettingsResponseTypeDef",
152
- "ListIdentityProvidersResponseTypeDef",
153
- "ListIpAccessSettingsResponseTypeDef",
154
- "ListNetworkSettingsResponseTypeDef",
155
- "ListPortalsResponseTypeDef",
156
- "ListTrustStoresResponseTypeDef",
157
- "ListUserAccessLoggingSettingsResponseTypeDef",
85
+ "CreateUserAccessLoggingSettingsResponseTypeDef",
158
86
  "CreateUserSettingsRequestRequestTypeDef",
159
- "UpdateUserSettingsRequestRequestTypeDef",
160
- "UserSettingsSummaryTypeDef",
161
- "UserSettingsTypeDef",
162
- "GetIpAccessSettingsResponseTypeDef",
163
- "UpdateIpAccessSettingsResponseTypeDef",
164
- "ListUserSettingsResponseTypeDef",
165
- "GetUserSettingsResponseTypeDef",
166
- "UpdateUserSettingsResponseTypeDef",
167
- )
168
-
169
- AssociateBrowserSettingsRequestRequestTypeDef = TypedDict(
170
- "AssociateBrowserSettingsRequestRequestTypeDef",
171
- {
172
- "browserSettingsArn": str,
173
- "portalArn": str,
174
- },
175
- )
176
- ResponseMetadataTypeDef = TypedDict(
177
- "ResponseMetadataTypeDef",
178
- {
179
- "RequestId": str,
180
- "HostId": str,
181
- "HTTPStatusCode": int,
182
- "HTTPHeaders": Dict[str, str],
183
- "RetryAttempts": int,
184
- },
185
- )
186
- AssociateIpAccessSettingsRequestRequestTypeDef = TypedDict(
187
- "AssociateIpAccessSettingsRequestRequestTypeDef",
188
- {
189
- "ipAccessSettingsArn": str,
190
- "portalArn": str,
191
- },
192
- )
193
- AssociateNetworkSettingsRequestRequestTypeDef = TypedDict(
194
- "AssociateNetworkSettingsRequestRequestTypeDef",
195
- {
196
- "networkSettingsArn": str,
197
- "portalArn": str,
198
- },
199
- )
200
- AssociateTrustStoreRequestRequestTypeDef = TypedDict(
201
- "AssociateTrustStoreRequestRequestTypeDef",
202
- {
203
- "portalArn": str,
204
- "trustStoreArn": str,
205
- },
206
- )
207
- AssociateUserAccessLoggingSettingsRequestRequestTypeDef = TypedDict(
208
- "AssociateUserAccessLoggingSettingsRequestRequestTypeDef",
209
- {
210
- "portalArn": str,
211
- "userAccessLoggingSettingsArn": str,
212
- },
213
- )
214
- AssociateUserSettingsRequestRequestTypeDef = TypedDict(
215
- "AssociateUserSettingsRequestRequestTypeDef",
216
- {
217
- "portalArn": str,
218
- "userSettingsArn": str,
219
- },
220
- )
221
- BlobTypeDef = Union[str, bytes, IO[Any], StreamingBody]
222
- BrowserSettingsSummaryTypeDef = TypedDict(
223
- "BrowserSettingsSummaryTypeDef",
224
- {
225
- "browserSettingsArn": str,
226
- },
227
- )
228
- BrowserSettingsTypeDef = TypedDict(
229
- "BrowserSettingsTypeDef",
230
- {
231
- "browserSettingsArn": str,
232
- "associatedPortalArns": NotRequired[List[str]],
233
- "browserPolicy": NotRequired[str],
234
- },
235
- )
236
- CertificateSummaryTypeDef = TypedDict(
237
- "CertificateSummaryTypeDef",
238
- {
239
- "issuer": NotRequired[str],
240
- "notValidAfter": NotRequired[datetime],
241
- "notValidBefore": NotRequired[datetime],
242
- "subject": NotRequired[str],
243
- "thumbprint": NotRequired[str],
244
- },
245
- )
246
- CertificateTypeDef = TypedDict(
247
- "CertificateTypeDef",
248
- {
249
- "body": NotRequired[bytes],
250
- "issuer": NotRequired[str],
251
- "notValidAfter": NotRequired[datetime],
252
- "notValidBefore": NotRequired[datetime],
253
- "subject": NotRequired[str],
254
- "thumbprint": NotRequired[str],
255
- },
256
- )
257
- CookieSpecificationTypeDef = TypedDict(
258
- "CookieSpecificationTypeDef",
259
- {
260
- "domain": str,
261
- "name": NotRequired[str],
262
- "path": NotRequired[str],
263
- },
264
- )
265
- TagTypeDef = TypedDict(
266
- "TagTypeDef",
267
- {
268
- "Key": str,
269
- "Value": str,
270
- },
271
- )
272
- CreateIdentityProviderRequestRequestTypeDef = TypedDict(
273
- "CreateIdentityProviderRequestRequestTypeDef",
274
- {
275
- "identityProviderDetails": Mapping[str, str],
276
- "identityProviderName": str,
277
- "identityProviderType": IdentityProviderTypeType,
278
- "portalArn": str,
279
- "clientToken": NotRequired[str],
280
- },
281
- )
282
- IpRuleTypeDef = TypedDict(
283
- "IpRuleTypeDef",
284
- {
285
- "ipRange": str,
286
- "description": NotRequired[str],
287
- },
288
- )
289
- DeleteBrowserSettingsRequestRequestTypeDef = TypedDict(
87
+ "CreateUserSettingsResponseTypeDef",
88
+ "CustomPatternTypeDef",
89
+ "DataProtectionSettingsSummaryTypeDef",
90
+ "DataProtectionSettingsTypeDef",
290
91
  "DeleteBrowserSettingsRequestRequestTypeDef",
291
- {
292
- "browserSettingsArn": str,
293
- },
294
- )
295
- DeleteIdentityProviderRequestRequestTypeDef = TypedDict(
92
+ "DeleteDataProtectionSettingsRequestRequestTypeDef",
296
93
  "DeleteIdentityProviderRequestRequestTypeDef",
297
- {
298
- "identityProviderArn": str,
299
- },
300
- )
301
- DeleteIpAccessSettingsRequestRequestTypeDef = TypedDict(
302
94
  "DeleteIpAccessSettingsRequestRequestTypeDef",
303
- {
304
- "ipAccessSettingsArn": str,
305
- },
306
- )
307
- DeleteNetworkSettingsRequestRequestTypeDef = TypedDict(
308
95
  "DeleteNetworkSettingsRequestRequestTypeDef",
309
- {
310
- "networkSettingsArn": str,
311
- },
312
- )
313
- DeletePortalRequestRequestTypeDef = TypedDict(
314
96
  "DeletePortalRequestRequestTypeDef",
315
- {
316
- "portalArn": str,
317
- },
318
- )
319
- DeleteTrustStoreRequestRequestTypeDef = TypedDict(
320
97
  "DeleteTrustStoreRequestRequestTypeDef",
321
- {
322
- "trustStoreArn": str,
323
- },
324
- )
325
- DeleteUserAccessLoggingSettingsRequestRequestTypeDef = TypedDict(
326
98
  "DeleteUserAccessLoggingSettingsRequestRequestTypeDef",
327
- {
328
- "userAccessLoggingSettingsArn": str,
329
- },
330
- )
331
- DeleteUserSettingsRequestRequestTypeDef = TypedDict(
332
99
  "DeleteUserSettingsRequestRequestTypeDef",
333
- {
334
- "userSettingsArn": str,
335
- },
336
- )
337
- DisassociateBrowserSettingsRequestRequestTypeDef = TypedDict(
338
100
  "DisassociateBrowserSettingsRequestRequestTypeDef",
339
- {
340
- "portalArn": str,
341
- },
342
- )
343
- DisassociateIpAccessSettingsRequestRequestTypeDef = TypedDict(
101
+ "DisassociateDataProtectionSettingsRequestRequestTypeDef",
344
102
  "DisassociateIpAccessSettingsRequestRequestTypeDef",
345
- {
346
- "portalArn": str,
347
- },
348
- )
349
- DisassociateNetworkSettingsRequestRequestTypeDef = TypedDict(
350
103
  "DisassociateNetworkSettingsRequestRequestTypeDef",
351
- {
352
- "portalArn": str,
353
- },
354
- )
355
- DisassociateTrustStoreRequestRequestTypeDef = TypedDict(
356
104
  "DisassociateTrustStoreRequestRequestTypeDef",
357
- {
358
- "portalArn": str,
359
- },
360
- )
361
- DisassociateUserAccessLoggingSettingsRequestRequestTypeDef = TypedDict(
362
105
  "DisassociateUserAccessLoggingSettingsRequestRequestTypeDef",
363
- {
364
- "portalArn": str,
365
- },
366
- )
367
- DisassociateUserSettingsRequestRequestTypeDef = TypedDict(
368
106
  "DisassociateUserSettingsRequestRequestTypeDef",
369
- {
370
- "portalArn": str,
371
- },
372
- )
373
- GetBrowserSettingsRequestRequestTypeDef = TypedDict(
107
+ "ExpireSessionRequestRequestTypeDef",
374
108
  "GetBrowserSettingsRequestRequestTypeDef",
375
- {
376
- "browserSettingsArn": str,
377
- },
378
- )
379
- GetIdentityProviderRequestRequestTypeDef = TypedDict(
109
+ "GetBrowserSettingsResponseTypeDef",
110
+ "GetDataProtectionSettingsRequestRequestTypeDef",
111
+ "GetDataProtectionSettingsResponseTypeDef",
380
112
  "GetIdentityProviderRequestRequestTypeDef",
381
- {
382
- "identityProviderArn": str,
383
- },
384
- )
385
- IdentityProviderTypeDef = TypedDict(
386
- "IdentityProviderTypeDef",
387
- {
388
- "identityProviderArn": str,
389
- "identityProviderDetails": NotRequired[Dict[str, str]],
390
- "identityProviderName": NotRequired[str],
391
- "identityProviderType": NotRequired[IdentityProviderTypeType],
392
- },
393
- )
394
- GetIpAccessSettingsRequestRequestTypeDef = TypedDict(
113
+ "GetIdentityProviderResponseTypeDef",
395
114
  "GetIpAccessSettingsRequestRequestTypeDef",
396
- {
397
- "ipAccessSettingsArn": str,
398
- },
399
- )
400
- GetNetworkSettingsRequestRequestTypeDef = TypedDict(
115
+ "GetIpAccessSettingsResponseTypeDef",
401
116
  "GetNetworkSettingsRequestRequestTypeDef",
402
- {
403
- "networkSettingsArn": str,
404
- },
405
- )
406
- NetworkSettingsTypeDef = TypedDict(
407
- "NetworkSettingsTypeDef",
408
- {
409
- "networkSettingsArn": str,
410
- "associatedPortalArns": NotRequired[List[str]],
411
- "securityGroupIds": NotRequired[List[str]],
412
- "subnetIds": NotRequired[List[str]],
413
- "vpcId": NotRequired[str],
414
- },
415
- )
416
- GetPortalRequestRequestTypeDef = TypedDict(
117
+ "GetNetworkSettingsResponseTypeDef",
417
118
  "GetPortalRequestRequestTypeDef",
418
- {
419
- "portalArn": str,
420
- },
421
- )
422
- PortalTypeDef = TypedDict(
423
- "PortalTypeDef",
424
- {
425
- "portalArn": str,
426
- "authenticationType": NotRequired[AuthenticationTypeType],
427
- "browserSettingsArn": NotRequired[str],
428
- "browserType": NotRequired[Literal["Chrome"]],
429
- "creationDate": NotRequired[datetime],
430
- "displayName": NotRequired[str],
431
- "ipAccessSettingsArn": NotRequired[str],
432
- "networkSettingsArn": NotRequired[str],
433
- "portalEndpoint": NotRequired[str],
434
- "portalStatus": NotRequired[PortalStatusType],
435
- "rendererType": NotRequired[Literal["AppStream"]],
436
- "statusReason": NotRequired[str],
437
- "trustStoreArn": NotRequired[str],
438
- "userAccessLoggingSettingsArn": NotRequired[str],
439
- "userSettingsArn": NotRequired[str],
440
- },
441
- )
442
- GetPortalServiceProviderMetadataRequestRequestTypeDef = TypedDict(
119
+ "GetPortalResponseTypeDef",
443
120
  "GetPortalServiceProviderMetadataRequestRequestTypeDef",
444
- {
445
- "portalArn": str,
446
- },
447
- )
448
- GetTrustStoreCertificateRequestRequestTypeDef = TypedDict(
121
+ "GetPortalServiceProviderMetadataResponseTypeDef",
122
+ "GetSessionRequestRequestTypeDef",
123
+ "GetSessionResponseTypeDef",
449
124
  "GetTrustStoreCertificateRequestRequestTypeDef",
450
- {
451
- "thumbprint": str,
452
- "trustStoreArn": str,
453
- },
454
- )
455
- GetTrustStoreRequestRequestTypeDef = TypedDict(
125
+ "GetTrustStoreCertificateResponseTypeDef",
456
126
  "GetTrustStoreRequestRequestTypeDef",
457
- {
458
- "trustStoreArn": str,
459
- },
460
- )
461
- TrustStoreTypeDef = TypedDict(
462
- "TrustStoreTypeDef",
463
- {
464
- "trustStoreArn": str,
465
- "associatedPortalArns": NotRequired[List[str]],
466
- },
467
- )
468
- GetUserAccessLoggingSettingsRequestRequestTypeDef = TypedDict(
127
+ "GetTrustStoreResponseTypeDef",
469
128
  "GetUserAccessLoggingSettingsRequestRequestTypeDef",
470
- {
471
- "userAccessLoggingSettingsArn": str,
472
- },
473
- )
474
- UserAccessLoggingSettingsTypeDef = TypedDict(
475
- "UserAccessLoggingSettingsTypeDef",
476
- {
477
- "userAccessLoggingSettingsArn": str,
478
- "associatedPortalArns": NotRequired[List[str]],
479
- "kinesisStreamArn": NotRequired[str],
480
- },
481
- )
482
- GetUserSettingsRequestRequestTypeDef = TypedDict(
129
+ "GetUserAccessLoggingSettingsResponseTypeDef",
483
130
  "GetUserSettingsRequestRequestTypeDef",
484
- {
485
- "userSettingsArn": str,
486
- },
487
- )
488
- IdentityProviderSummaryTypeDef = TypedDict(
131
+ "GetUserSettingsResponseTypeDef",
489
132
  "IdentityProviderSummaryTypeDef",
490
- {
491
- "identityProviderArn": str,
492
- "identityProviderName": NotRequired[str],
493
- "identityProviderType": NotRequired[IdentityProviderTypeType],
494
- },
495
- )
496
- IpAccessSettingsSummaryTypeDef = TypedDict(
133
+ "IdentityProviderTypeDef",
134
+ "InlineRedactionConfigurationOutputTypeDef",
135
+ "InlineRedactionConfigurationTypeDef",
136
+ "InlineRedactionPatternOutputTypeDef",
137
+ "InlineRedactionPatternTypeDef",
138
+ "InlineRedactionPatternUnionTypeDef",
497
139
  "IpAccessSettingsSummaryTypeDef",
498
- {
499
- "ipAccessSettingsArn": str,
500
- "creationDate": NotRequired[datetime],
501
- "description": NotRequired[str],
502
- "displayName": NotRequired[str],
503
- },
504
- )
505
- ListBrowserSettingsRequestRequestTypeDef = TypedDict(
140
+ "IpAccessSettingsTypeDef",
141
+ "IpRuleTypeDef",
506
142
  "ListBrowserSettingsRequestRequestTypeDef",
507
- {
508
- "maxResults": NotRequired[int],
509
- "nextToken": NotRequired[str],
510
- },
511
- )
512
- ListIdentityProvidersRequestRequestTypeDef = TypedDict(
143
+ "ListBrowserSettingsResponseTypeDef",
144
+ "ListDataProtectionSettingsRequestPaginateTypeDef",
145
+ "ListDataProtectionSettingsRequestRequestTypeDef",
146
+ "ListDataProtectionSettingsResponseTypeDef",
513
147
  "ListIdentityProvidersRequestRequestTypeDef",
514
- {
515
- "portalArn": str,
516
- "maxResults": NotRequired[int],
517
- "nextToken": NotRequired[str],
518
- },
519
- )
520
- ListIpAccessSettingsRequestRequestTypeDef = TypedDict(
148
+ "ListIdentityProvidersResponseTypeDef",
521
149
  "ListIpAccessSettingsRequestRequestTypeDef",
522
- {
523
- "maxResults": NotRequired[int],
524
- "nextToken": NotRequired[str],
525
- },
526
- )
527
- ListNetworkSettingsRequestRequestTypeDef = TypedDict(
150
+ "ListIpAccessSettingsResponseTypeDef",
528
151
  "ListNetworkSettingsRequestRequestTypeDef",
529
- {
530
- "maxResults": NotRequired[int],
531
- "nextToken": NotRequired[str],
532
- },
533
- )
534
- NetworkSettingsSummaryTypeDef = TypedDict(
535
- "NetworkSettingsSummaryTypeDef",
536
- {
537
- "networkSettingsArn": str,
538
- "vpcId": NotRequired[str],
539
- },
540
- )
541
- ListPortalsRequestRequestTypeDef = TypedDict(
152
+ "ListNetworkSettingsResponseTypeDef",
542
153
  "ListPortalsRequestRequestTypeDef",
543
- {
544
- "maxResults": NotRequired[int],
545
- "nextToken": NotRequired[str],
546
- },
547
- )
548
- PortalSummaryTypeDef = TypedDict(
549
- "PortalSummaryTypeDef",
550
- {
551
- "portalArn": str,
552
- "authenticationType": NotRequired[AuthenticationTypeType],
553
- "browserSettingsArn": NotRequired[str],
554
- "browserType": NotRequired[Literal["Chrome"]],
555
- "creationDate": NotRequired[datetime],
556
- "displayName": NotRequired[str],
557
- "ipAccessSettingsArn": NotRequired[str],
558
- "networkSettingsArn": NotRequired[str],
559
- "portalEndpoint": NotRequired[str],
560
- "portalStatus": NotRequired[PortalStatusType],
561
- "rendererType": NotRequired[Literal["AppStream"]],
562
- "trustStoreArn": NotRequired[str],
563
- "userAccessLoggingSettingsArn": NotRequired[str],
564
- "userSettingsArn": NotRequired[str],
565
- },
566
- )
567
- ListTagsForResourceRequestRequestTypeDef = TypedDict(
154
+ "ListPortalsResponseTypeDef",
155
+ "ListSessionsRequestPaginateTypeDef",
156
+ "ListSessionsRequestRequestTypeDef",
157
+ "ListSessionsResponseTypeDef",
568
158
  "ListTagsForResourceRequestRequestTypeDef",
569
- {
570
- "resourceArn": str,
571
- },
572
- )
573
- ListTrustStoreCertificatesRequestRequestTypeDef = TypedDict(
159
+ "ListTagsForResourceResponseTypeDef",
574
160
  "ListTrustStoreCertificatesRequestRequestTypeDef",
575
- {
576
- "trustStoreArn": str,
577
- "maxResults": NotRequired[int],
578
- "nextToken": NotRequired[str],
579
- },
580
- )
581
- ListTrustStoresRequestRequestTypeDef = TypedDict(
161
+ "ListTrustStoreCertificatesResponseTypeDef",
582
162
  "ListTrustStoresRequestRequestTypeDef",
583
- {
584
- "maxResults": NotRequired[int],
585
- "nextToken": NotRequired[str],
586
- },
587
- )
588
- TrustStoreSummaryTypeDef = TypedDict(
589
- "TrustStoreSummaryTypeDef",
590
- {
591
- "trustStoreArn": NotRequired[str],
592
- },
593
- )
594
- ListUserAccessLoggingSettingsRequestRequestTypeDef = TypedDict(
163
+ "ListTrustStoresResponseTypeDef",
595
164
  "ListUserAccessLoggingSettingsRequestRequestTypeDef",
596
- {
597
- "maxResults": NotRequired[int],
598
- "nextToken": NotRequired[str],
599
- },
600
- )
601
- UserAccessLoggingSettingsSummaryTypeDef = TypedDict(
602
- "UserAccessLoggingSettingsSummaryTypeDef",
603
- {
604
- "userAccessLoggingSettingsArn": str,
605
- "kinesisStreamArn": NotRequired[str],
606
- },
607
- )
608
- ListUserSettingsRequestRequestTypeDef = TypedDict(
165
+ "ListUserAccessLoggingSettingsResponseTypeDef",
609
166
  "ListUserSettingsRequestRequestTypeDef",
610
- {
611
- "maxResults": NotRequired[int],
612
- "nextToken": NotRequired[str],
613
- },
614
- )
615
- UntagResourceRequestRequestTypeDef = TypedDict(
167
+ "ListUserSettingsResponseTypeDef",
168
+ "NetworkSettingsSummaryTypeDef",
169
+ "NetworkSettingsTypeDef",
170
+ "PaginatorConfigTypeDef",
171
+ "PortalSummaryTypeDef",
172
+ "PortalTypeDef",
173
+ "RedactionPlaceHolderTypeDef",
174
+ "ResponseMetadataTypeDef",
175
+ "SessionSummaryTypeDef",
176
+ "SessionTypeDef",
177
+ "TagResourceRequestRequestTypeDef",
178
+ "TagTypeDef",
179
+ "TrustStoreSummaryTypeDef",
180
+ "TrustStoreTypeDef",
616
181
  "UntagResourceRequestRequestTypeDef",
617
- {
618
- "resourceArn": str,
619
- "tagKeys": Sequence[str],
620
- },
621
- )
622
- UpdateBrowserSettingsRequestRequestTypeDef = TypedDict(
623
182
  "UpdateBrowserSettingsRequestRequestTypeDef",
624
- {
625
- "browserSettingsArn": str,
626
- "browserPolicy": NotRequired[str],
627
- "clientToken": NotRequired[str],
628
- },
629
- )
630
- UpdateIdentityProviderRequestRequestTypeDef = TypedDict(
183
+ "UpdateBrowserSettingsResponseTypeDef",
184
+ "UpdateDataProtectionSettingsRequestRequestTypeDef",
185
+ "UpdateDataProtectionSettingsResponseTypeDef",
631
186
  "UpdateIdentityProviderRequestRequestTypeDef",
632
- {
633
- "identityProviderArn": str,
634
- "clientToken": NotRequired[str],
635
- "identityProviderDetails": NotRequired[Mapping[str, str]],
636
- "identityProviderName": NotRequired[str],
637
- "identityProviderType": NotRequired[IdentityProviderTypeType],
638
- },
639
- )
640
- UpdateNetworkSettingsRequestRequestTypeDef = TypedDict(
187
+ "UpdateIdentityProviderResponseTypeDef",
188
+ "UpdateIpAccessSettingsRequestRequestTypeDef",
189
+ "UpdateIpAccessSettingsResponseTypeDef",
641
190
  "UpdateNetworkSettingsRequestRequestTypeDef",
642
- {
643
- "networkSettingsArn": str,
644
- "clientToken": NotRequired[str],
645
- "securityGroupIds": NotRequired[Sequence[str]],
646
- "subnetIds": NotRequired[Sequence[str]],
647
- "vpcId": NotRequired[str],
648
- },
649
- )
650
- UpdatePortalRequestRequestTypeDef = TypedDict(
191
+ "UpdateNetworkSettingsResponseTypeDef",
651
192
  "UpdatePortalRequestRequestTypeDef",
652
- {
653
- "portalArn": str,
654
- "authenticationType": NotRequired[AuthenticationTypeType],
655
- "displayName": NotRequired[str],
656
- },
657
- )
658
- UpdateUserAccessLoggingSettingsRequestRequestTypeDef = TypedDict(
193
+ "UpdatePortalResponseTypeDef",
194
+ "UpdateTrustStoreRequestRequestTypeDef",
195
+ "UpdateTrustStoreResponseTypeDef",
659
196
  "UpdateUserAccessLoggingSettingsRequestRequestTypeDef",
660
- {
661
- "userAccessLoggingSettingsArn": str,
662
- "clientToken": NotRequired[str],
663
- "kinesisStreamArn": NotRequired[str],
664
- },
665
- )
666
- AssociateBrowserSettingsResponseTypeDef = TypedDict(
667
- "AssociateBrowserSettingsResponseTypeDef",
668
- {
669
- "browserSettingsArn": str,
670
- "portalArn": str,
671
- "ResponseMetadata": ResponseMetadataTypeDef,
672
- },
673
- )
674
- AssociateIpAccessSettingsResponseTypeDef = TypedDict(
675
- "AssociateIpAccessSettingsResponseTypeDef",
676
- {
677
- "ipAccessSettingsArn": str,
678
- "portalArn": str,
679
- "ResponseMetadata": ResponseMetadataTypeDef,
680
- },
681
- )
682
- AssociateNetworkSettingsResponseTypeDef = TypedDict(
683
- "AssociateNetworkSettingsResponseTypeDef",
684
- {
685
- "networkSettingsArn": str,
686
- "portalArn": str,
687
- "ResponseMetadata": ResponseMetadataTypeDef,
688
- },
689
- )
690
- AssociateTrustStoreResponseTypeDef = TypedDict(
691
- "AssociateTrustStoreResponseTypeDef",
692
- {
693
- "portalArn": str,
694
- "trustStoreArn": str,
695
- "ResponseMetadata": ResponseMetadataTypeDef,
696
- },
697
- )
698
- AssociateUserAccessLoggingSettingsResponseTypeDef = TypedDict(
699
- "AssociateUserAccessLoggingSettingsResponseTypeDef",
700
- {
701
- "portalArn": str,
702
- "userAccessLoggingSettingsArn": str,
703
- "ResponseMetadata": ResponseMetadataTypeDef,
704
- },
705
- )
706
- AssociateUserSettingsResponseTypeDef = TypedDict(
707
- "AssociateUserSettingsResponseTypeDef",
708
- {
709
- "portalArn": str,
710
- "userSettingsArn": str,
711
- "ResponseMetadata": ResponseMetadataTypeDef,
712
- },
713
- )
714
- CreateBrowserSettingsResponseTypeDef = TypedDict(
715
- "CreateBrowserSettingsResponseTypeDef",
716
- {
717
- "browserSettingsArn": str,
718
- "ResponseMetadata": ResponseMetadataTypeDef,
719
- },
720
- )
721
- CreateIdentityProviderResponseTypeDef = TypedDict(
722
- "CreateIdentityProviderResponseTypeDef",
723
- {
724
- "identityProviderArn": str,
725
- "ResponseMetadata": ResponseMetadataTypeDef,
726
- },
727
- )
728
- CreateIpAccessSettingsResponseTypeDef = TypedDict(
729
- "CreateIpAccessSettingsResponseTypeDef",
730
- {
731
- "ipAccessSettingsArn": str,
732
- "ResponseMetadata": ResponseMetadataTypeDef,
733
- },
734
- )
735
- CreateNetworkSettingsResponseTypeDef = TypedDict(
736
- "CreateNetworkSettingsResponseTypeDef",
737
- {
738
- "networkSettingsArn": str,
739
- "ResponseMetadata": ResponseMetadataTypeDef,
740
- },
741
- )
742
- CreatePortalResponseTypeDef = TypedDict(
743
- "CreatePortalResponseTypeDef",
744
- {
745
- "portalArn": str,
746
- "portalEndpoint": str,
747
- "ResponseMetadata": ResponseMetadataTypeDef,
748
- },
749
- )
750
- CreateTrustStoreResponseTypeDef = TypedDict(
751
- "CreateTrustStoreResponseTypeDef",
752
- {
753
- "trustStoreArn": str,
754
- "ResponseMetadata": ResponseMetadataTypeDef,
755
- },
756
- )
757
- CreateUserAccessLoggingSettingsResponseTypeDef = TypedDict(
758
- "CreateUserAccessLoggingSettingsResponseTypeDef",
759
- {
760
- "userAccessLoggingSettingsArn": str,
761
- "ResponseMetadata": ResponseMetadataTypeDef,
762
- },
763
- )
764
- CreateUserSettingsResponseTypeDef = TypedDict(
765
- "CreateUserSettingsResponseTypeDef",
766
- {
767
- "userSettingsArn": str,
768
- "ResponseMetadata": ResponseMetadataTypeDef,
769
- },
770
- )
771
- GetPortalServiceProviderMetadataResponseTypeDef = TypedDict(
772
- "GetPortalServiceProviderMetadataResponseTypeDef",
773
- {
774
- "portalArn": str,
775
- "serviceProviderSamlMetadata": str,
776
- "ResponseMetadata": ResponseMetadataTypeDef,
777
- },
778
- )
779
- UpdateTrustStoreResponseTypeDef = TypedDict(
780
- "UpdateTrustStoreResponseTypeDef",
781
- {
782
- "trustStoreArn": str,
783
- "ResponseMetadata": ResponseMetadataTypeDef,
784
- },
785
- )
786
- UpdateTrustStoreRequestRequestTypeDef = TypedDict(
787
- "UpdateTrustStoreRequestRequestTypeDef",
788
- {
789
- "trustStoreArn": str,
790
- "certificatesToAdd": NotRequired[Sequence[BlobTypeDef]],
791
- "certificatesToDelete": NotRequired[Sequence[str]],
792
- "clientToken": NotRequired[str],
793
- },
794
- )
795
- ListBrowserSettingsResponseTypeDef = TypedDict(
796
- "ListBrowserSettingsResponseTypeDef",
797
- {
798
- "browserSettings": List[BrowserSettingsSummaryTypeDef],
799
- "nextToken": str,
800
- "ResponseMetadata": ResponseMetadataTypeDef,
801
- },
802
- )
803
- GetBrowserSettingsResponseTypeDef = TypedDict(
804
- "GetBrowserSettingsResponseTypeDef",
805
- {
806
- "browserSettings": BrowserSettingsTypeDef,
807
- "ResponseMetadata": ResponseMetadataTypeDef,
808
- },
809
- )
810
- UpdateBrowserSettingsResponseTypeDef = TypedDict(
811
- "UpdateBrowserSettingsResponseTypeDef",
812
- {
813
- "browserSettings": BrowserSettingsTypeDef,
814
- "ResponseMetadata": ResponseMetadataTypeDef,
815
- },
816
- )
817
- ListTrustStoreCertificatesResponseTypeDef = TypedDict(
818
- "ListTrustStoreCertificatesResponseTypeDef",
819
- {
820
- "certificateList": List[CertificateSummaryTypeDef],
821
- "nextToken": str,
822
- "trustStoreArn": str,
823
- "ResponseMetadata": ResponseMetadataTypeDef,
824
- },
825
- )
826
- GetTrustStoreCertificateResponseTypeDef = TypedDict(
827
- "GetTrustStoreCertificateResponseTypeDef",
828
- {
829
- "certificate": CertificateTypeDef,
830
- "trustStoreArn": str,
831
- "ResponseMetadata": ResponseMetadataTypeDef,
832
- },
833
- )
834
- CookieSynchronizationConfigurationTypeDef = TypedDict(
835
- "CookieSynchronizationConfigurationTypeDef",
836
- {
837
- "allowlist": Sequence[CookieSpecificationTypeDef],
838
- "blocklist": NotRequired[Sequence[CookieSpecificationTypeDef]],
839
- },
840
- )
841
- CreateBrowserSettingsRequestRequestTypeDef = TypedDict(
842
- "CreateBrowserSettingsRequestRequestTypeDef",
843
- {
844
- "browserPolicy": str,
845
- "additionalEncryptionContext": NotRequired[Mapping[str, str]],
846
- "clientToken": NotRequired[str],
847
- "customerManagedKey": NotRequired[str],
848
- "tags": NotRequired[Sequence[TagTypeDef]],
849
- },
850
- )
851
- CreateNetworkSettingsRequestRequestTypeDef = TypedDict(
852
- "CreateNetworkSettingsRequestRequestTypeDef",
853
- {
854
- "securityGroupIds": Sequence[str],
855
- "subnetIds": Sequence[str],
856
- "vpcId": str,
857
- "clientToken": NotRequired[str],
858
- "tags": NotRequired[Sequence[TagTypeDef]],
859
- },
860
- )
861
- CreatePortalRequestRequestTypeDef = TypedDict(
862
- "CreatePortalRequestRequestTypeDef",
863
- {
864
- "additionalEncryptionContext": NotRequired[Mapping[str, str]],
865
- "authenticationType": NotRequired[AuthenticationTypeType],
866
- "clientToken": NotRequired[str],
867
- "customerManagedKey": NotRequired[str],
868
- "displayName": NotRequired[str],
869
- "tags": NotRequired[Sequence[TagTypeDef]],
870
- },
871
- )
872
- CreateTrustStoreRequestRequestTypeDef = TypedDict(
873
- "CreateTrustStoreRequestRequestTypeDef",
874
- {
875
- "certificateList": Sequence[BlobTypeDef],
876
- "clientToken": NotRequired[str],
877
- "tags": NotRequired[Sequence[TagTypeDef]],
878
- },
879
- )
880
- CreateUserAccessLoggingSettingsRequestRequestTypeDef = TypedDict(
881
- "CreateUserAccessLoggingSettingsRequestRequestTypeDef",
882
- {
883
- "kinesisStreamArn": str,
884
- "clientToken": NotRequired[str],
885
- "tags": NotRequired[Sequence[TagTypeDef]],
886
- },
887
- )
888
- ListTagsForResourceResponseTypeDef = TypedDict(
889
- "ListTagsForResourceResponseTypeDef",
890
- {
891
- "tags": List[TagTypeDef],
892
- "ResponseMetadata": ResponseMetadataTypeDef,
893
- },
894
- )
895
- TagResourceRequestRequestTypeDef = TypedDict(
896
- "TagResourceRequestRequestTypeDef",
897
- {
898
- "resourceArn": str,
899
- "tags": Sequence[TagTypeDef],
900
- "clientToken": NotRequired[str],
901
- },
902
- )
903
- CreateIpAccessSettingsRequestRequestTypeDef = TypedDict(
904
- "CreateIpAccessSettingsRequestRequestTypeDef",
905
- {
906
- "ipRules": Sequence[IpRuleTypeDef],
907
- "additionalEncryptionContext": NotRequired[Mapping[str, str]],
908
- "clientToken": NotRequired[str],
909
- "customerManagedKey": NotRequired[str],
910
- "description": NotRequired[str],
911
- "displayName": NotRequired[str],
912
- "tags": NotRequired[Sequence[TagTypeDef]],
913
- },
914
- )
915
- IpAccessSettingsTypeDef = TypedDict(
916
- "IpAccessSettingsTypeDef",
917
- {
918
- "ipAccessSettingsArn": str,
919
- "associatedPortalArns": NotRequired[List[str]],
920
- "creationDate": NotRequired[datetime],
921
- "description": NotRequired[str],
922
- "displayName": NotRequired[str],
923
- "ipRules": NotRequired[List[IpRuleTypeDef]],
924
- },
925
- )
926
- UpdateIpAccessSettingsRequestRequestTypeDef = TypedDict(
927
- "UpdateIpAccessSettingsRequestRequestTypeDef",
928
- {
929
- "ipAccessSettingsArn": str,
930
- "clientToken": NotRequired[str],
931
- "description": NotRequired[str],
932
- "displayName": NotRequired[str],
933
- "ipRules": NotRequired[Sequence[IpRuleTypeDef]],
934
- },
935
- )
936
- GetIdentityProviderResponseTypeDef = TypedDict(
937
- "GetIdentityProviderResponseTypeDef",
938
- {
939
- "identityProvider": IdentityProviderTypeDef,
940
- "ResponseMetadata": ResponseMetadataTypeDef,
941
- },
942
- )
943
- UpdateIdentityProviderResponseTypeDef = TypedDict(
944
- "UpdateIdentityProviderResponseTypeDef",
945
- {
946
- "identityProvider": IdentityProviderTypeDef,
947
- "ResponseMetadata": ResponseMetadataTypeDef,
948
- },
949
- )
950
- GetNetworkSettingsResponseTypeDef = TypedDict(
951
- "GetNetworkSettingsResponseTypeDef",
952
- {
953
- "networkSettings": NetworkSettingsTypeDef,
954
- "ResponseMetadata": ResponseMetadataTypeDef,
955
- },
956
- )
957
- UpdateNetworkSettingsResponseTypeDef = TypedDict(
958
- "UpdateNetworkSettingsResponseTypeDef",
959
- {
960
- "networkSettings": NetworkSettingsTypeDef,
961
- "ResponseMetadata": ResponseMetadataTypeDef,
962
- },
963
- )
964
- GetPortalResponseTypeDef = TypedDict(
965
- "GetPortalResponseTypeDef",
966
- {
967
- "portal": PortalTypeDef,
968
- "ResponseMetadata": ResponseMetadataTypeDef,
969
- },
970
- )
971
- UpdatePortalResponseTypeDef = TypedDict(
972
- "UpdatePortalResponseTypeDef",
973
- {
974
- "portal": PortalTypeDef,
975
- "ResponseMetadata": ResponseMetadataTypeDef,
976
- },
977
- )
978
- GetTrustStoreResponseTypeDef = TypedDict(
979
- "GetTrustStoreResponseTypeDef",
980
- {
981
- "trustStore": TrustStoreTypeDef,
982
- "ResponseMetadata": ResponseMetadataTypeDef,
983
- },
984
- )
985
- GetUserAccessLoggingSettingsResponseTypeDef = TypedDict(
986
- "GetUserAccessLoggingSettingsResponseTypeDef",
987
- {
988
- "userAccessLoggingSettings": UserAccessLoggingSettingsTypeDef,
989
- "ResponseMetadata": ResponseMetadataTypeDef,
990
- },
991
- )
992
- UpdateUserAccessLoggingSettingsResponseTypeDef = TypedDict(
993
197
  "UpdateUserAccessLoggingSettingsResponseTypeDef",
994
- {
995
- "userAccessLoggingSettings": UserAccessLoggingSettingsTypeDef,
996
- "ResponseMetadata": ResponseMetadataTypeDef,
997
- },
998
- )
999
- ListIdentityProvidersResponseTypeDef = TypedDict(
1000
- "ListIdentityProvidersResponseTypeDef",
1001
- {
1002
- "identityProviders": List[IdentityProviderSummaryTypeDef],
1003
- "nextToken": str,
1004
- "ResponseMetadata": ResponseMetadataTypeDef,
1005
- },
1006
- )
1007
- ListIpAccessSettingsResponseTypeDef = TypedDict(
1008
- "ListIpAccessSettingsResponseTypeDef",
1009
- {
1010
- "ipAccessSettings": List[IpAccessSettingsSummaryTypeDef],
1011
- "nextToken": str,
1012
- "ResponseMetadata": ResponseMetadataTypeDef,
1013
- },
1014
- )
1015
- ListNetworkSettingsResponseTypeDef = TypedDict(
1016
- "ListNetworkSettingsResponseTypeDef",
1017
- {
1018
- "networkSettings": List[NetworkSettingsSummaryTypeDef],
1019
- "nextToken": str,
1020
- "ResponseMetadata": ResponseMetadataTypeDef,
1021
- },
1022
- )
1023
- ListPortalsResponseTypeDef = TypedDict(
1024
- "ListPortalsResponseTypeDef",
1025
- {
1026
- "nextToken": str,
1027
- "portals": List[PortalSummaryTypeDef],
1028
- "ResponseMetadata": ResponseMetadataTypeDef,
1029
- },
1030
- )
1031
- ListTrustStoresResponseTypeDef = TypedDict(
1032
- "ListTrustStoresResponseTypeDef",
1033
- {
1034
- "nextToken": str,
1035
- "trustStores": List[TrustStoreSummaryTypeDef],
1036
- "ResponseMetadata": ResponseMetadataTypeDef,
1037
- },
1038
- )
1039
- ListUserAccessLoggingSettingsResponseTypeDef = TypedDict(
1040
- "ListUserAccessLoggingSettingsResponseTypeDef",
1041
- {
1042
- "nextToken": str,
1043
- "userAccessLoggingSettings": List[UserAccessLoggingSettingsSummaryTypeDef],
1044
- "ResponseMetadata": ResponseMetadataTypeDef,
1045
- },
1046
- )
1047
- CreateUserSettingsRequestRequestTypeDef = TypedDict(
1048
- "CreateUserSettingsRequestRequestTypeDef",
1049
- {
1050
- "copyAllowed": EnabledTypeType,
1051
- "downloadAllowed": EnabledTypeType,
1052
- "pasteAllowed": EnabledTypeType,
1053
- "printAllowed": EnabledTypeType,
1054
- "uploadAllowed": EnabledTypeType,
1055
- "additionalEncryptionContext": NotRequired[Mapping[str, str]],
1056
- "clientToken": NotRequired[str],
1057
- "cookieSynchronizationConfiguration": NotRequired[
1058
- CookieSynchronizationConfigurationTypeDef
1059
- ],
1060
- "customerManagedKey": NotRequired[str],
1061
- "disconnectTimeoutInMinutes": NotRequired[int],
1062
- "idleDisconnectTimeoutInMinutes": NotRequired[int],
1063
- "tags": NotRequired[Sequence[TagTypeDef]],
1064
- },
1065
- )
1066
- UpdateUserSettingsRequestRequestTypeDef = TypedDict(
1067
198
  "UpdateUserSettingsRequestRequestTypeDef",
1068
- {
1069
- "userSettingsArn": str,
1070
- "clientToken": NotRequired[str],
1071
- "cookieSynchronizationConfiguration": NotRequired[
1072
- CookieSynchronizationConfigurationTypeDef
1073
- ],
1074
- "copyAllowed": NotRequired[EnabledTypeType],
1075
- "disconnectTimeoutInMinutes": NotRequired[int],
1076
- "downloadAllowed": NotRequired[EnabledTypeType],
1077
- "idleDisconnectTimeoutInMinutes": NotRequired[int],
1078
- "pasteAllowed": NotRequired[EnabledTypeType],
1079
- "printAllowed": NotRequired[EnabledTypeType],
1080
- "uploadAllowed": NotRequired[EnabledTypeType],
1081
- },
1082
- )
1083
- UserSettingsSummaryTypeDef = TypedDict(
199
+ "UpdateUserSettingsResponseTypeDef",
200
+ "UserAccessLoggingSettingsSummaryTypeDef",
201
+ "UserAccessLoggingSettingsTypeDef",
1084
202
  "UserSettingsSummaryTypeDef",
1085
- {
1086
- "userSettingsArn": str,
1087
- "cookieSynchronizationConfiguration": NotRequired[
1088
- CookieSynchronizationConfigurationTypeDef
1089
- ],
1090
- "copyAllowed": NotRequired[EnabledTypeType],
1091
- "disconnectTimeoutInMinutes": NotRequired[int],
1092
- "downloadAllowed": NotRequired[EnabledTypeType],
1093
- "idleDisconnectTimeoutInMinutes": NotRequired[int],
1094
- "pasteAllowed": NotRequired[EnabledTypeType],
1095
- "printAllowed": NotRequired[EnabledTypeType],
1096
- "uploadAllowed": NotRequired[EnabledTypeType],
1097
- },
1098
- )
1099
- UserSettingsTypeDef = TypedDict(
1100
203
  "UserSettingsTypeDef",
1101
- {
1102
- "userSettingsArn": str,
1103
- "associatedPortalArns": NotRequired[List[str]],
1104
- "cookieSynchronizationConfiguration": NotRequired[
1105
- CookieSynchronizationConfigurationTypeDef
1106
- ],
1107
- "copyAllowed": NotRequired[EnabledTypeType],
1108
- "disconnectTimeoutInMinutes": NotRequired[int],
1109
- "downloadAllowed": NotRequired[EnabledTypeType],
1110
- "idleDisconnectTimeoutInMinutes": NotRequired[int],
1111
- "pasteAllowed": NotRequired[EnabledTypeType],
1112
- "printAllowed": NotRequired[EnabledTypeType],
1113
- "uploadAllowed": NotRequired[EnabledTypeType],
1114
- },
1115
- )
1116
- GetIpAccessSettingsResponseTypeDef = TypedDict(
1117
- "GetIpAccessSettingsResponseTypeDef",
1118
- {
1119
- "ipAccessSettings": IpAccessSettingsTypeDef,
1120
- "ResponseMetadata": ResponseMetadataTypeDef,
1121
- },
1122
- )
1123
- UpdateIpAccessSettingsResponseTypeDef = TypedDict(
1124
- "UpdateIpAccessSettingsResponseTypeDef",
1125
- {
1126
- "ipAccessSettings": IpAccessSettingsTypeDef,
1127
- "ResponseMetadata": ResponseMetadataTypeDef,
1128
- },
1129
- )
1130
- ListUserSettingsResponseTypeDef = TypedDict(
1131
- "ListUserSettingsResponseTypeDef",
1132
- {
1133
- "nextToken": str,
1134
- "userSettings": List[UserSettingsSummaryTypeDef],
1135
- "ResponseMetadata": ResponseMetadataTypeDef,
1136
- },
1137
- )
1138
- GetUserSettingsResponseTypeDef = TypedDict(
1139
- "GetUserSettingsResponseTypeDef",
1140
- {
1141
- "userSettings": UserSettingsTypeDef,
1142
- "ResponseMetadata": ResponseMetadataTypeDef,
1143
- },
1144
- )
1145
- UpdateUserSettingsResponseTypeDef = TypedDict(
1146
- "UpdateUserSettingsResponseTypeDef",
1147
- {
1148
- "userSettings": UserSettingsTypeDef,
1149
- "ResponseMetadata": ResponseMetadataTypeDef,
1150
- },
1151
204
  )
205
+
206
+
207
+ class AssociateBrowserSettingsRequestRequestTypeDef(TypedDict):
208
+ browserSettingsArn: str
209
+ portalArn: str
210
+
211
+
212
+ class ResponseMetadataTypeDef(TypedDict):
213
+ RequestId: str
214
+ HTTPStatusCode: int
215
+ HTTPHeaders: Dict[str, str]
216
+ RetryAttempts: int
217
+ HostId: NotRequired[str]
218
+
219
+
220
+ class AssociateDataProtectionSettingsRequestRequestTypeDef(TypedDict):
221
+ dataProtectionSettingsArn: str
222
+ portalArn: str
223
+
224
+
225
+ class AssociateIpAccessSettingsRequestRequestTypeDef(TypedDict):
226
+ ipAccessSettingsArn: str
227
+ portalArn: str
228
+
229
+
230
+ class AssociateNetworkSettingsRequestRequestTypeDef(TypedDict):
231
+ networkSettingsArn: str
232
+ portalArn: str
233
+
234
+
235
+ class AssociateTrustStoreRequestRequestTypeDef(TypedDict):
236
+ portalArn: str
237
+ trustStoreArn: str
238
+
239
+
240
+ class AssociateUserAccessLoggingSettingsRequestRequestTypeDef(TypedDict):
241
+ portalArn: str
242
+ userAccessLoggingSettingsArn: str
243
+
244
+
245
+ class AssociateUserSettingsRequestRequestTypeDef(TypedDict):
246
+ portalArn: str
247
+ userSettingsArn: str
248
+
249
+
250
+ BlobTypeDef = Union[str, bytes, IO[Any], StreamingBody]
251
+
252
+
253
+ class BrowserSettingsSummaryTypeDef(TypedDict):
254
+ browserSettingsArn: str
255
+
256
+
257
+ class BrowserSettingsTypeDef(TypedDict):
258
+ browserSettingsArn: str
259
+ additionalEncryptionContext: NotRequired[Dict[str, str]]
260
+ associatedPortalArns: NotRequired[List[str]]
261
+ browserPolicy: NotRequired[str]
262
+ customerManagedKey: NotRequired[str]
263
+
264
+
265
+ class CertificateSummaryTypeDef(TypedDict):
266
+ issuer: NotRequired[str]
267
+ notValidAfter: NotRequired[datetime]
268
+ notValidBefore: NotRequired[datetime]
269
+ subject: NotRequired[str]
270
+ thumbprint: NotRequired[str]
271
+
272
+
273
+ class CertificateTypeDef(TypedDict):
274
+ body: NotRequired[bytes]
275
+ issuer: NotRequired[str]
276
+ notValidAfter: NotRequired[datetime]
277
+ notValidBefore: NotRequired[datetime]
278
+ subject: NotRequired[str]
279
+ thumbprint: NotRequired[str]
280
+
281
+
282
+ class CookieSpecificationTypeDef(TypedDict):
283
+ domain: str
284
+ name: NotRequired[str]
285
+ path: NotRequired[str]
286
+
287
+
288
+ class TagTypeDef(TypedDict):
289
+ Key: str
290
+ Value: str
291
+
292
+
293
+ class IpRuleTypeDef(TypedDict):
294
+ ipRange: str
295
+ description: NotRequired[str]
296
+
297
+
298
+ class CustomPatternTypeDef(TypedDict):
299
+ patternName: str
300
+ patternRegex: str
301
+ keywordRegex: NotRequired[str]
302
+ patternDescription: NotRequired[str]
303
+
304
+
305
+ class DataProtectionSettingsSummaryTypeDef(TypedDict):
306
+ dataProtectionSettingsArn: str
307
+ creationDate: NotRequired[datetime]
308
+ description: NotRequired[str]
309
+ displayName: NotRequired[str]
310
+
311
+
312
+ class DeleteBrowserSettingsRequestRequestTypeDef(TypedDict):
313
+ browserSettingsArn: str
314
+
315
+
316
+ class DeleteDataProtectionSettingsRequestRequestTypeDef(TypedDict):
317
+ dataProtectionSettingsArn: str
318
+
319
+
320
+ class DeleteIdentityProviderRequestRequestTypeDef(TypedDict):
321
+ identityProviderArn: str
322
+
323
+
324
+ class DeleteIpAccessSettingsRequestRequestTypeDef(TypedDict):
325
+ ipAccessSettingsArn: str
326
+
327
+
328
+ class DeleteNetworkSettingsRequestRequestTypeDef(TypedDict):
329
+ networkSettingsArn: str
330
+
331
+
332
+ class DeletePortalRequestRequestTypeDef(TypedDict):
333
+ portalArn: str
334
+
335
+
336
+ class DeleteTrustStoreRequestRequestTypeDef(TypedDict):
337
+ trustStoreArn: str
338
+
339
+
340
+ class DeleteUserAccessLoggingSettingsRequestRequestTypeDef(TypedDict):
341
+ userAccessLoggingSettingsArn: str
342
+
343
+
344
+ class DeleteUserSettingsRequestRequestTypeDef(TypedDict):
345
+ userSettingsArn: str
346
+
347
+
348
+ class DisassociateBrowserSettingsRequestRequestTypeDef(TypedDict):
349
+ portalArn: str
350
+
351
+
352
+ class DisassociateDataProtectionSettingsRequestRequestTypeDef(TypedDict):
353
+ portalArn: str
354
+
355
+
356
+ class DisassociateIpAccessSettingsRequestRequestTypeDef(TypedDict):
357
+ portalArn: str
358
+
359
+
360
+ class DisassociateNetworkSettingsRequestRequestTypeDef(TypedDict):
361
+ portalArn: str
362
+
363
+
364
+ class DisassociateTrustStoreRequestRequestTypeDef(TypedDict):
365
+ portalArn: str
366
+
367
+
368
+ class DisassociateUserAccessLoggingSettingsRequestRequestTypeDef(TypedDict):
369
+ portalArn: str
370
+
371
+
372
+ class DisassociateUserSettingsRequestRequestTypeDef(TypedDict):
373
+ portalArn: str
374
+
375
+
376
+ class ExpireSessionRequestRequestTypeDef(TypedDict):
377
+ portalId: str
378
+ sessionId: str
379
+
380
+
381
+ class GetBrowserSettingsRequestRequestTypeDef(TypedDict):
382
+ browserSettingsArn: str
383
+
384
+
385
+ class GetDataProtectionSettingsRequestRequestTypeDef(TypedDict):
386
+ dataProtectionSettingsArn: str
387
+
388
+
389
+ class GetIdentityProviderRequestRequestTypeDef(TypedDict):
390
+ identityProviderArn: str
391
+
392
+
393
+ class IdentityProviderTypeDef(TypedDict):
394
+ identityProviderArn: str
395
+ identityProviderDetails: NotRequired[Dict[str, str]]
396
+ identityProviderName: NotRequired[str]
397
+ identityProviderType: NotRequired[IdentityProviderTypeType]
398
+
399
+
400
+ class GetIpAccessSettingsRequestRequestTypeDef(TypedDict):
401
+ ipAccessSettingsArn: str
402
+
403
+
404
+ class GetNetworkSettingsRequestRequestTypeDef(TypedDict):
405
+ networkSettingsArn: str
406
+
407
+
408
+ class NetworkSettingsTypeDef(TypedDict):
409
+ networkSettingsArn: str
410
+ associatedPortalArns: NotRequired[List[str]]
411
+ securityGroupIds: NotRequired[List[str]]
412
+ subnetIds: NotRequired[List[str]]
413
+ vpcId: NotRequired[str]
414
+
415
+
416
+ class GetPortalRequestRequestTypeDef(TypedDict):
417
+ portalArn: str
418
+
419
+
420
+ class PortalTypeDef(TypedDict):
421
+ portalArn: str
422
+ additionalEncryptionContext: NotRequired[Dict[str, str]]
423
+ authenticationType: NotRequired[AuthenticationTypeType]
424
+ browserSettingsArn: NotRequired[str]
425
+ browserType: NotRequired[Literal["Chrome"]]
426
+ creationDate: NotRequired[datetime]
427
+ customerManagedKey: NotRequired[str]
428
+ dataProtectionSettingsArn: NotRequired[str]
429
+ displayName: NotRequired[str]
430
+ instanceType: NotRequired[InstanceTypeType]
431
+ ipAccessSettingsArn: NotRequired[str]
432
+ maxConcurrentSessions: NotRequired[int]
433
+ networkSettingsArn: NotRequired[str]
434
+ portalEndpoint: NotRequired[str]
435
+ portalStatus: NotRequired[PortalStatusType]
436
+ rendererType: NotRequired[Literal["AppStream"]]
437
+ statusReason: NotRequired[str]
438
+ trustStoreArn: NotRequired[str]
439
+ userAccessLoggingSettingsArn: NotRequired[str]
440
+ userSettingsArn: NotRequired[str]
441
+
442
+
443
+ class GetPortalServiceProviderMetadataRequestRequestTypeDef(TypedDict):
444
+ portalArn: str
445
+
446
+
447
+ class GetSessionRequestRequestTypeDef(TypedDict):
448
+ portalId: str
449
+ sessionId: str
450
+
451
+
452
+ class SessionTypeDef(TypedDict):
453
+ clientIpAddresses: NotRequired[List[str]]
454
+ endTime: NotRequired[datetime]
455
+ portalArn: NotRequired[str]
456
+ sessionId: NotRequired[str]
457
+ startTime: NotRequired[datetime]
458
+ status: NotRequired[SessionStatusType]
459
+ username: NotRequired[str]
460
+
461
+
462
+ class GetTrustStoreCertificateRequestRequestTypeDef(TypedDict):
463
+ thumbprint: str
464
+ trustStoreArn: str
465
+
466
+
467
+ class GetTrustStoreRequestRequestTypeDef(TypedDict):
468
+ trustStoreArn: str
469
+
470
+
471
+ class TrustStoreTypeDef(TypedDict):
472
+ trustStoreArn: str
473
+ associatedPortalArns: NotRequired[List[str]]
474
+
475
+
476
+ class GetUserAccessLoggingSettingsRequestRequestTypeDef(TypedDict):
477
+ userAccessLoggingSettingsArn: str
478
+
479
+
480
+ class UserAccessLoggingSettingsTypeDef(TypedDict):
481
+ userAccessLoggingSettingsArn: str
482
+ associatedPortalArns: NotRequired[List[str]]
483
+ kinesisStreamArn: NotRequired[str]
484
+
485
+
486
+ class GetUserSettingsRequestRequestTypeDef(TypedDict):
487
+ userSettingsArn: str
488
+
489
+
490
+ class IdentityProviderSummaryTypeDef(TypedDict):
491
+ identityProviderArn: str
492
+ identityProviderName: NotRequired[str]
493
+ identityProviderType: NotRequired[IdentityProviderTypeType]
494
+
495
+
496
+ class RedactionPlaceHolderTypeDef(TypedDict):
497
+ redactionPlaceHolderType: Literal["CustomText"]
498
+ redactionPlaceHolderText: NotRequired[str]
499
+
500
+
501
+ class IpAccessSettingsSummaryTypeDef(TypedDict):
502
+ ipAccessSettingsArn: str
503
+ creationDate: NotRequired[datetime]
504
+ description: NotRequired[str]
505
+ displayName: NotRequired[str]
506
+
507
+
508
+ class ListBrowserSettingsRequestRequestTypeDef(TypedDict):
509
+ maxResults: NotRequired[int]
510
+ nextToken: NotRequired[str]
511
+
512
+
513
+ class PaginatorConfigTypeDef(TypedDict):
514
+ MaxItems: NotRequired[int]
515
+ PageSize: NotRequired[int]
516
+ StartingToken: NotRequired[str]
517
+
518
+
519
+ class ListDataProtectionSettingsRequestRequestTypeDef(TypedDict):
520
+ maxResults: NotRequired[int]
521
+ nextToken: NotRequired[str]
522
+
523
+
524
+ class ListIdentityProvidersRequestRequestTypeDef(TypedDict):
525
+ portalArn: str
526
+ maxResults: NotRequired[int]
527
+ nextToken: NotRequired[str]
528
+
529
+
530
+ class ListIpAccessSettingsRequestRequestTypeDef(TypedDict):
531
+ maxResults: NotRequired[int]
532
+ nextToken: NotRequired[str]
533
+
534
+
535
+ class ListNetworkSettingsRequestRequestTypeDef(TypedDict):
536
+ maxResults: NotRequired[int]
537
+ nextToken: NotRequired[str]
538
+
539
+
540
+ class NetworkSettingsSummaryTypeDef(TypedDict):
541
+ networkSettingsArn: str
542
+ vpcId: NotRequired[str]
543
+
544
+
545
+ class ListPortalsRequestRequestTypeDef(TypedDict):
546
+ maxResults: NotRequired[int]
547
+ nextToken: NotRequired[str]
548
+
549
+
550
+ class PortalSummaryTypeDef(TypedDict):
551
+ portalArn: str
552
+ authenticationType: NotRequired[AuthenticationTypeType]
553
+ browserSettingsArn: NotRequired[str]
554
+ browserType: NotRequired[Literal["Chrome"]]
555
+ creationDate: NotRequired[datetime]
556
+ dataProtectionSettingsArn: NotRequired[str]
557
+ displayName: NotRequired[str]
558
+ instanceType: NotRequired[InstanceTypeType]
559
+ ipAccessSettingsArn: NotRequired[str]
560
+ maxConcurrentSessions: NotRequired[int]
561
+ networkSettingsArn: NotRequired[str]
562
+ portalEndpoint: NotRequired[str]
563
+ portalStatus: NotRequired[PortalStatusType]
564
+ rendererType: NotRequired[Literal["AppStream"]]
565
+ trustStoreArn: NotRequired[str]
566
+ userAccessLoggingSettingsArn: NotRequired[str]
567
+ userSettingsArn: NotRequired[str]
568
+
569
+
570
+ class ListSessionsRequestRequestTypeDef(TypedDict):
571
+ portalId: str
572
+ maxResults: NotRequired[int]
573
+ nextToken: NotRequired[str]
574
+ sessionId: NotRequired[str]
575
+ sortBy: NotRequired[SessionSortByType]
576
+ status: NotRequired[SessionStatusType]
577
+ username: NotRequired[str]
578
+
579
+
580
+ class SessionSummaryTypeDef(TypedDict):
581
+ endTime: NotRequired[datetime]
582
+ portalArn: NotRequired[str]
583
+ sessionId: NotRequired[str]
584
+ startTime: NotRequired[datetime]
585
+ status: NotRequired[SessionStatusType]
586
+ username: NotRequired[str]
587
+
588
+
589
+ class ListTagsForResourceRequestRequestTypeDef(TypedDict):
590
+ resourceArn: str
591
+
592
+
593
+ class ListTrustStoreCertificatesRequestRequestTypeDef(TypedDict):
594
+ trustStoreArn: str
595
+ maxResults: NotRequired[int]
596
+ nextToken: NotRequired[str]
597
+
598
+
599
+ class ListTrustStoresRequestRequestTypeDef(TypedDict):
600
+ maxResults: NotRequired[int]
601
+ nextToken: NotRequired[str]
602
+
603
+
604
+ class TrustStoreSummaryTypeDef(TypedDict):
605
+ trustStoreArn: NotRequired[str]
606
+
607
+
608
+ class ListUserAccessLoggingSettingsRequestRequestTypeDef(TypedDict):
609
+ maxResults: NotRequired[int]
610
+ nextToken: NotRequired[str]
611
+
612
+
613
+ class UserAccessLoggingSettingsSummaryTypeDef(TypedDict):
614
+ userAccessLoggingSettingsArn: str
615
+ kinesisStreamArn: NotRequired[str]
616
+
617
+
618
+ class ListUserSettingsRequestRequestTypeDef(TypedDict):
619
+ maxResults: NotRequired[int]
620
+ nextToken: NotRequired[str]
621
+
622
+
623
+ class UntagResourceRequestRequestTypeDef(TypedDict):
624
+ resourceArn: str
625
+ tagKeys: Sequence[str]
626
+
627
+
628
+ class UpdateBrowserSettingsRequestRequestTypeDef(TypedDict):
629
+ browserSettingsArn: str
630
+ browserPolicy: NotRequired[str]
631
+ clientToken: NotRequired[str]
632
+
633
+
634
+ class UpdateIdentityProviderRequestRequestTypeDef(TypedDict):
635
+ identityProviderArn: str
636
+ clientToken: NotRequired[str]
637
+ identityProviderDetails: NotRequired[Mapping[str, str]]
638
+ identityProviderName: NotRequired[str]
639
+ identityProviderType: NotRequired[IdentityProviderTypeType]
640
+
641
+
642
+ class UpdateNetworkSettingsRequestRequestTypeDef(TypedDict):
643
+ networkSettingsArn: str
644
+ clientToken: NotRequired[str]
645
+ securityGroupIds: NotRequired[Sequence[str]]
646
+ subnetIds: NotRequired[Sequence[str]]
647
+ vpcId: NotRequired[str]
648
+
649
+
650
+ class UpdatePortalRequestRequestTypeDef(TypedDict):
651
+ portalArn: str
652
+ authenticationType: NotRequired[AuthenticationTypeType]
653
+ displayName: NotRequired[str]
654
+ instanceType: NotRequired[InstanceTypeType]
655
+ maxConcurrentSessions: NotRequired[int]
656
+
657
+
658
+ class UpdateUserAccessLoggingSettingsRequestRequestTypeDef(TypedDict):
659
+ userAccessLoggingSettingsArn: str
660
+ clientToken: NotRequired[str]
661
+ kinesisStreamArn: NotRequired[str]
662
+
663
+
664
+ class AssociateBrowserSettingsResponseTypeDef(TypedDict):
665
+ browserSettingsArn: str
666
+ portalArn: str
667
+ ResponseMetadata: ResponseMetadataTypeDef
668
+
669
+
670
+ class AssociateDataProtectionSettingsResponseTypeDef(TypedDict):
671
+ dataProtectionSettingsArn: str
672
+ portalArn: str
673
+ ResponseMetadata: ResponseMetadataTypeDef
674
+
675
+
676
+ class AssociateIpAccessSettingsResponseTypeDef(TypedDict):
677
+ ipAccessSettingsArn: str
678
+ portalArn: str
679
+ ResponseMetadata: ResponseMetadataTypeDef
680
+
681
+
682
+ class AssociateNetworkSettingsResponseTypeDef(TypedDict):
683
+ networkSettingsArn: str
684
+ portalArn: str
685
+ ResponseMetadata: ResponseMetadataTypeDef
686
+
687
+
688
+ class AssociateTrustStoreResponseTypeDef(TypedDict):
689
+ portalArn: str
690
+ trustStoreArn: str
691
+ ResponseMetadata: ResponseMetadataTypeDef
692
+
693
+
694
+ class AssociateUserAccessLoggingSettingsResponseTypeDef(TypedDict):
695
+ portalArn: str
696
+ userAccessLoggingSettingsArn: str
697
+ ResponseMetadata: ResponseMetadataTypeDef
698
+
699
+
700
+ class AssociateUserSettingsResponseTypeDef(TypedDict):
701
+ portalArn: str
702
+ userSettingsArn: str
703
+ ResponseMetadata: ResponseMetadataTypeDef
704
+
705
+
706
+ class CreateBrowserSettingsResponseTypeDef(TypedDict):
707
+ browserSettingsArn: str
708
+ ResponseMetadata: ResponseMetadataTypeDef
709
+
710
+
711
+ class CreateDataProtectionSettingsResponseTypeDef(TypedDict):
712
+ dataProtectionSettingsArn: str
713
+ ResponseMetadata: ResponseMetadataTypeDef
714
+
715
+
716
+ class CreateIdentityProviderResponseTypeDef(TypedDict):
717
+ identityProviderArn: str
718
+ ResponseMetadata: ResponseMetadataTypeDef
719
+
720
+
721
+ class CreateIpAccessSettingsResponseTypeDef(TypedDict):
722
+ ipAccessSettingsArn: str
723
+ ResponseMetadata: ResponseMetadataTypeDef
724
+
725
+
726
+ class CreateNetworkSettingsResponseTypeDef(TypedDict):
727
+ networkSettingsArn: str
728
+ ResponseMetadata: ResponseMetadataTypeDef
729
+
730
+
731
+ class CreatePortalResponseTypeDef(TypedDict):
732
+ portalArn: str
733
+ portalEndpoint: str
734
+ ResponseMetadata: ResponseMetadataTypeDef
735
+
736
+
737
+ class CreateTrustStoreResponseTypeDef(TypedDict):
738
+ trustStoreArn: str
739
+ ResponseMetadata: ResponseMetadataTypeDef
740
+
741
+
742
+ class CreateUserAccessLoggingSettingsResponseTypeDef(TypedDict):
743
+ userAccessLoggingSettingsArn: str
744
+ ResponseMetadata: ResponseMetadataTypeDef
745
+
746
+
747
+ class CreateUserSettingsResponseTypeDef(TypedDict):
748
+ userSettingsArn: str
749
+ ResponseMetadata: ResponseMetadataTypeDef
750
+
751
+
752
+ class GetPortalServiceProviderMetadataResponseTypeDef(TypedDict):
753
+ portalArn: str
754
+ serviceProviderSamlMetadata: str
755
+ ResponseMetadata: ResponseMetadataTypeDef
756
+
757
+
758
+ class UpdateTrustStoreResponseTypeDef(TypedDict):
759
+ trustStoreArn: str
760
+ ResponseMetadata: ResponseMetadataTypeDef
761
+
762
+
763
+ class UpdateTrustStoreRequestRequestTypeDef(TypedDict):
764
+ trustStoreArn: str
765
+ certificatesToAdd: NotRequired[Sequence[BlobTypeDef]]
766
+ certificatesToDelete: NotRequired[Sequence[str]]
767
+ clientToken: NotRequired[str]
768
+
769
+
770
+ class ListBrowserSettingsResponseTypeDef(TypedDict):
771
+ browserSettings: List[BrowserSettingsSummaryTypeDef]
772
+ ResponseMetadata: ResponseMetadataTypeDef
773
+ nextToken: NotRequired[str]
774
+
775
+
776
+ class GetBrowserSettingsResponseTypeDef(TypedDict):
777
+ browserSettings: BrowserSettingsTypeDef
778
+ ResponseMetadata: ResponseMetadataTypeDef
779
+
780
+
781
+ class UpdateBrowserSettingsResponseTypeDef(TypedDict):
782
+ browserSettings: BrowserSettingsTypeDef
783
+ ResponseMetadata: ResponseMetadataTypeDef
784
+
785
+
786
+ class ListTrustStoreCertificatesResponseTypeDef(TypedDict):
787
+ certificateList: List[CertificateSummaryTypeDef]
788
+ trustStoreArn: str
789
+ ResponseMetadata: ResponseMetadataTypeDef
790
+ nextToken: NotRequired[str]
791
+
792
+
793
+ class GetTrustStoreCertificateResponseTypeDef(TypedDict):
794
+ certificate: CertificateTypeDef
795
+ trustStoreArn: str
796
+ ResponseMetadata: ResponseMetadataTypeDef
797
+
798
+
799
+ class CookieSynchronizationConfigurationOutputTypeDef(TypedDict):
800
+ allowlist: List[CookieSpecificationTypeDef]
801
+ blocklist: NotRequired[List[CookieSpecificationTypeDef]]
802
+
803
+
804
+ class CookieSynchronizationConfigurationTypeDef(TypedDict):
805
+ allowlist: Sequence[CookieSpecificationTypeDef]
806
+ blocklist: NotRequired[Sequence[CookieSpecificationTypeDef]]
807
+
808
+
809
+ class CreateBrowserSettingsRequestRequestTypeDef(TypedDict):
810
+ browserPolicy: str
811
+ additionalEncryptionContext: NotRequired[Mapping[str, str]]
812
+ clientToken: NotRequired[str]
813
+ customerManagedKey: NotRequired[str]
814
+ tags: NotRequired[Sequence[TagTypeDef]]
815
+
816
+
817
+ class CreateIdentityProviderRequestRequestTypeDef(TypedDict):
818
+ identityProviderDetails: Mapping[str, str]
819
+ identityProviderName: str
820
+ identityProviderType: IdentityProviderTypeType
821
+ portalArn: str
822
+ clientToken: NotRequired[str]
823
+ tags: NotRequired[Sequence[TagTypeDef]]
824
+
825
+
826
+ class CreateNetworkSettingsRequestRequestTypeDef(TypedDict):
827
+ securityGroupIds: Sequence[str]
828
+ subnetIds: Sequence[str]
829
+ vpcId: str
830
+ clientToken: NotRequired[str]
831
+ tags: NotRequired[Sequence[TagTypeDef]]
832
+
833
+
834
+ class CreatePortalRequestRequestTypeDef(TypedDict):
835
+ additionalEncryptionContext: NotRequired[Mapping[str, str]]
836
+ authenticationType: NotRequired[AuthenticationTypeType]
837
+ clientToken: NotRequired[str]
838
+ customerManagedKey: NotRequired[str]
839
+ displayName: NotRequired[str]
840
+ instanceType: NotRequired[InstanceTypeType]
841
+ maxConcurrentSessions: NotRequired[int]
842
+ tags: NotRequired[Sequence[TagTypeDef]]
843
+
844
+
845
+ class CreateTrustStoreRequestRequestTypeDef(TypedDict):
846
+ certificateList: Sequence[BlobTypeDef]
847
+ clientToken: NotRequired[str]
848
+ tags: NotRequired[Sequence[TagTypeDef]]
849
+
850
+
851
+ class CreateUserAccessLoggingSettingsRequestRequestTypeDef(TypedDict):
852
+ kinesisStreamArn: str
853
+ clientToken: NotRequired[str]
854
+ tags: NotRequired[Sequence[TagTypeDef]]
855
+
856
+
857
+ class ListTagsForResourceResponseTypeDef(TypedDict):
858
+ tags: List[TagTypeDef]
859
+ ResponseMetadata: ResponseMetadataTypeDef
860
+
861
+
862
+ class TagResourceRequestRequestTypeDef(TypedDict):
863
+ resourceArn: str
864
+ tags: Sequence[TagTypeDef]
865
+ clientToken: NotRequired[str]
866
+
867
+
868
+ class CreateIpAccessSettingsRequestRequestTypeDef(TypedDict):
869
+ ipRules: Sequence[IpRuleTypeDef]
870
+ additionalEncryptionContext: NotRequired[Mapping[str, str]]
871
+ clientToken: NotRequired[str]
872
+ customerManagedKey: NotRequired[str]
873
+ description: NotRequired[str]
874
+ displayName: NotRequired[str]
875
+ tags: NotRequired[Sequence[TagTypeDef]]
876
+
877
+
878
+ class IpAccessSettingsTypeDef(TypedDict):
879
+ ipAccessSettingsArn: str
880
+ additionalEncryptionContext: NotRequired[Dict[str, str]]
881
+ associatedPortalArns: NotRequired[List[str]]
882
+ creationDate: NotRequired[datetime]
883
+ customerManagedKey: NotRequired[str]
884
+ description: NotRequired[str]
885
+ displayName: NotRequired[str]
886
+ ipRules: NotRequired[List[IpRuleTypeDef]]
887
+
888
+
889
+ class UpdateIpAccessSettingsRequestRequestTypeDef(TypedDict):
890
+ ipAccessSettingsArn: str
891
+ clientToken: NotRequired[str]
892
+ description: NotRequired[str]
893
+ displayName: NotRequired[str]
894
+ ipRules: NotRequired[Sequence[IpRuleTypeDef]]
895
+
896
+
897
+ class ListDataProtectionSettingsResponseTypeDef(TypedDict):
898
+ dataProtectionSettings: List[DataProtectionSettingsSummaryTypeDef]
899
+ ResponseMetadata: ResponseMetadataTypeDef
900
+ nextToken: NotRequired[str]
901
+
902
+
903
+ class GetIdentityProviderResponseTypeDef(TypedDict):
904
+ identityProvider: IdentityProviderTypeDef
905
+ ResponseMetadata: ResponseMetadataTypeDef
906
+
907
+
908
+ class UpdateIdentityProviderResponseTypeDef(TypedDict):
909
+ identityProvider: IdentityProviderTypeDef
910
+ ResponseMetadata: ResponseMetadataTypeDef
911
+
912
+
913
+ class GetNetworkSettingsResponseTypeDef(TypedDict):
914
+ networkSettings: NetworkSettingsTypeDef
915
+ ResponseMetadata: ResponseMetadataTypeDef
916
+
917
+
918
+ class UpdateNetworkSettingsResponseTypeDef(TypedDict):
919
+ networkSettings: NetworkSettingsTypeDef
920
+ ResponseMetadata: ResponseMetadataTypeDef
921
+
922
+
923
+ class GetPortalResponseTypeDef(TypedDict):
924
+ portal: PortalTypeDef
925
+ ResponseMetadata: ResponseMetadataTypeDef
926
+
927
+
928
+ class UpdatePortalResponseTypeDef(TypedDict):
929
+ portal: PortalTypeDef
930
+ ResponseMetadata: ResponseMetadataTypeDef
931
+
932
+
933
+ class GetSessionResponseTypeDef(TypedDict):
934
+ session: SessionTypeDef
935
+ ResponseMetadata: ResponseMetadataTypeDef
936
+
937
+
938
+ class GetTrustStoreResponseTypeDef(TypedDict):
939
+ trustStore: TrustStoreTypeDef
940
+ ResponseMetadata: ResponseMetadataTypeDef
941
+
942
+
943
+ class GetUserAccessLoggingSettingsResponseTypeDef(TypedDict):
944
+ userAccessLoggingSettings: UserAccessLoggingSettingsTypeDef
945
+ ResponseMetadata: ResponseMetadataTypeDef
946
+
947
+
948
+ class UpdateUserAccessLoggingSettingsResponseTypeDef(TypedDict):
949
+ userAccessLoggingSettings: UserAccessLoggingSettingsTypeDef
950
+ ResponseMetadata: ResponseMetadataTypeDef
951
+
952
+
953
+ class ListIdentityProvidersResponseTypeDef(TypedDict):
954
+ identityProviders: List[IdentityProviderSummaryTypeDef]
955
+ ResponseMetadata: ResponseMetadataTypeDef
956
+ nextToken: NotRequired[str]
957
+
958
+
959
+ class InlineRedactionPatternOutputTypeDef(TypedDict):
960
+ redactionPlaceHolder: RedactionPlaceHolderTypeDef
961
+ builtInPatternId: NotRequired[str]
962
+ confidenceLevel: NotRequired[int]
963
+ customPattern: NotRequired[CustomPatternTypeDef]
964
+ enforcedUrls: NotRequired[List[str]]
965
+ exemptUrls: NotRequired[List[str]]
966
+
967
+
968
+ class InlineRedactionPatternTypeDef(TypedDict):
969
+ redactionPlaceHolder: RedactionPlaceHolderTypeDef
970
+ builtInPatternId: NotRequired[str]
971
+ confidenceLevel: NotRequired[int]
972
+ customPattern: NotRequired[CustomPatternTypeDef]
973
+ enforcedUrls: NotRequired[Sequence[str]]
974
+ exemptUrls: NotRequired[Sequence[str]]
975
+
976
+
977
+ class ListIpAccessSettingsResponseTypeDef(TypedDict):
978
+ ipAccessSettings: List[IpAccessSettingsSummaryTypeDef]
979
+ ResponseMetadata: ResponseMetadataTypeDef
980
+ nextToken: NotRequired[str]
981
+
982
+
983
+ class ListDataProtectionSettingsRequestPaginateTypeDef(TypedDict):
984
+ PaginationConfig: NotRequired[PaginatorConfigTypeDef]
985
+
986
+
987
+ class ListSessionsRequestPaginateTypeDef(TypedDict):
988
+ portalId: str
989
+ sessionId: NotRequired[str]
990
+ sortBy: NotRequired[SessionSortByType]
991
+ status: NotRequired[SessionStatusType]
992
+ username: NotRequired[str]
993
+ PaginationConfig: NotRequired[PaginatorConfigTypeDef]
994
+
995
+
996
+ class ListNetworkSettingsResponseTypeDef(TypedDict):
997
+ networkSettings: List[NetworkSettingsSummaryTypeDef]
998
+ ResponseMetadata: ResponseMetadataTypeDef
999
+ nextToken: NotRequired[str]
1000
+
1001
+
1002
+ class ListPortalsResponseTypeDef(TypedDict):
1003
+ portals: List[PortalSummaryTypeDef]
1004
+ ResponseMetadata: ResponseMetadataTypeDef
1005
+ nextToken: NotRequired[str]
1006
+
1007
+
1008
+ class ListSessionsResponseTypeDef(TypedDict):
1009
+ sessions: List[SessionSummaryTypeDef]
1010
+ ResponseMetadata: ResponseMetadataTypeDef
1011
+ nextToken: NotRequired[str]
1012
+
1013
+
1014
+ class ListTrustStoresResponseTypeDef(TypedDict):
1015
+ trustStores: List[TrustStoreSummaryTypeDef]
1016
+ ResponseMetadata: ResponseMetadataTypeDef
1017
+ nextToken: NotRequired[str]
1018
+
1019
+
1020
+ class ListUserAccessLoggingSettingsResponseTypeDef(TypedDict):
1021
+ userAccessLoggingSettings: List[UserAccessLoggingSettingsSummaryTypeDef]
1022
+ ResponseMetadata: ResponseMetadataTypeDef
1023
+ nextToken: NotRequired[str]
1024
+
1025
+
1026
+ class UserSettingsSummaryTypeDef(TypedDict):
1027
+ userSettingsArn: str
1028
+ cookieSynchronizationConfiguration: NotRequired[CookieSynchronizationConfigurationOutputTypeDef]
1029
+ copyAllowed: NotRequired[EnabledTypeType]
1030
+ deepLinkAllowed: NotRequired[EnabledTypeType]
1031
+ disconnectTimeoutInMinutes: NotRequired[int]
1032
+ downloadAllowed: NotRequired[EnabledTypeType]
1033
+ idleDisconnectTimeoutInMinutes: NotRequired[int]
1034
+ pasteAllowed: NotRequired[EnabledTypeType]
1035
+ printAllowed: NotRequired[EnabledTypeType]
1036
+ uploadAllowed: NotRequired[EnabledTypeType]
1037
+
1038
+
1039
+ class UserSettingsTypeDef(TypedDict):
1040
+ userSettingsArn: str
1041
+ additionalEncryptionContext: NotRequired[Dict[str, str]]
1042
+ associatedPortalArns: NotRequired[List[str]]
1043
+ cookieSynchronizationConfiguration: NotRequired[CookieSynchronizationConfigurationOutputTypeDef]
1044
+ copyAllowed: NotRequired[EnabledTypeType]
1045
+ customerManagedKey: NotRequired[str]
1046
+ deepLinkAllowed: NotRequired[EnabledTypeType]
1047
+ disconnectTimeoutInMinutes: NotRequired[int]
1048
+ downloadAllowed: NotRequired[EnabledTypeType]
1049
+ idleDisconnectTimeoutInMinutes: NotRequired[int]
1050
+ pasteAllowed: NotRequired[EnabledTypeType]
1051
+ printAllowed: NotRequired[EnabledTypeType]
1052
+ uploadAllowed: NotRequired[EnabledTypeType]
1053
+
1054
+
1055
+ class CreateUserSettingsRequestRequestTypeDef(TypedDict):
1056
+ copyAllowed: EnabledTypeType
1057
+ downloadAllowed: EnabledTypeType
1058
+ pasteAllowed: EnabledTypeType
1059
+ printAllowed: EnabledTypeType
1060
+ uploadAllowed: EnabledTypeType
1061
+ additionalEncryptionContext: NotRequired[Mapping[str, str]]
1062
+ clientToken: NotRequired[str]
1063
+ cookieSynchronizationConfiguration: NotRequired[CookieSynchronizationConfigurationTypeDef]
1064
+ customerManagedKey: NotRequired[str]
1065
+ deepLinkAllowed: NotRequired[EnabledTypeType]
1066
+ disconnectTimeoutInMinutes: NotRequired[int]
1067
+ idleDisconnectTimeoutInMinutes: NotRequired[int]
1068
+ tags: NotRequired[Sequence[TagTypeDef]]
1069
+
1070
+
1071
+ class UpdateUserSettingsRequestRequestTypeDef(TypedDict):
1072
+ userSettingsArn: str
1073
+ clientToken: NotRequired[str]
1074
+ cookieSynchronizationConfiguration: NotRequired[CookieSynchronizationConfigurationTypeDef]
1075
+ copyAllowed: NotRequired[EnabledTypeType]
1076
+ deepLinkAllowed: NotRequired[EnabledTypeType]
1077
+ disconnectTimeoutInMinutes: NotRequired[int]
1078
+ downloadAllowed: NotRequired[EnabledTypeType]
1079
+ idleDisconnectTimeoutInMinutes: NotRequired[int]
1080
+ pasteAllowed: NotRequired[EnabledTypeType]
1081
+ printAllowed: NotRequired[EnabledTypeType]
1082
+ uploadAllowed: NotRequired[EnabledTypeType]
1083
+
1084
+
1085
+ class GetIpAccessSettingsResponseTypeDef(TypedDict):
1086
+ ipAccessSettings: IpAccessSettingsTypeDef
1087
+ ResponseMetadata: ResponseMetadataTypeDef
1088
+
1089
+
1090
+ class UpdateIpAccessSettingsResponseTypeDef(TypedDict):
1091
+ ipAccessSettings: IpAccessSettingsTypeDef
1092
+ ResponseMetadata: ResponseMetadataTypeDef
1093
+
1094
+
1095
+ class InlineRedactionConfigurationOutputTypeDef(TypedDict):
1096
+ inlineRedactionPatterns: List[InlineRedactionPatternOutputTypeDef]
1097
+ globalConfidenceLevel: NotRequired[int]
1098
+ globalEnforcedUrls: NotRequired[List[str]]
1099
+ globalExemptUrls: NotRequired[List[str]]
1100
+
1101
+
1102
+ InlineRedactionPatternUnionTypeDef = Union[
1103
+ InlineRedactionPatternTypeDef, InlineRedactionPatternOutputTypeDef
1104
+ ]
1105
+
1106
+
1107
+ class ListUserSettingsResponseTypeDef(TypedDict):
1108
+ userSettings: List[UserSettingsSummaryTypeDef]
1109
+ ResponseMetadata: ResponseMetadataTypeDef
1110
+ nextToken: NotRequired[str]
1111
+
1112
+
1113
+ class GetUserSettingsResponseTypeDef(TypedDict):
1114
+ userSettings: UserSettingsTypeDef
1115
+ ResponseMetadata: ResponseMetadataTypeDef
1116
+
1117
+
1118
+ class UpdateUserSettingsResponseTypeDef(TypedDict):
1119
+ userSettings: UserSettingsTypeDef
1120
+ ResponseMetadata: ResponseMetadataTypeDef
1121
+
1122
+
1123
+ class DataProtectionSettingsTypeDef(TypedDict):
1124
+ dataProtectionSettingsArn: str
1125
+ additionalEncryptionContext: NotRequired[Dict[str, str]]
1126
+ associatedPortalArns: NotRequired[List[str]]
1127
+ creationDate: NotRequired[datetime]
1128
+ customerManagedKey: NotRequired[str]
1129
+ description: NotRequired[str]
1130
+ displayName: NotRequired[str]
1131
+ inlineRedactionConfiguration: NotRequired[InlineRedactionConfigurationOutputTypeDef]
1132
+
1133
+
1134
+ class InlineRedactionConfigurationTypeDef(TypedDict):
1135
+ inlineRedactionPatterns: Sequence[InlineRedactionPatternUnionTypeDef]
1136
+ globalConfidenceLevel: NotRequired[int]
1137
+ globalEnforcedUrls: NotRequired[Sequence[str]]
1138
+ globalExemptUrls: NotRequired[Sequence[str]]
1139
+
1140
+
1141
+ class GetDataProtectionSettingsResponseTypeDef(TypedDict):
1142
+ dataProtectionSettings: DataProtectionSettingsTypeDef
1143
+ ResponseMetadata: ResponseMetadataTypeDef
1144
+
1145
+
1146
+ class UpdateDataProtectionSettingsResponseTypeDef(TypedDict):
1147
+ dataProtectionSettings: DataProtectionSettingsTypeDef
1148
+ ResponseMetadata: ResponseMetadataTypeDef
1149
+
1150
+
1151
+ class CreateDataProtectionSettingsRequestRequestTypeDef(TypedDict):
1152
+ additionalEncryptionContext: NotRequired[Mapping[str, str]]
1153
+ clientToken: NotRequired[str]
1154
+ customerManagedKey: NotRequired[str]
1155
+ description: NotRequired[str]
1156
+ displayName: NotRequired[str]
1157
+ inlineRedactionConfiguration: NotRequired[InlineRedactionConfigurationTypeDef]
1158
+ tags: NotRequired[Sequence[TagTypeDef]]
1159
+
1160
+
1161
+ class UpdateDataProtectionSettingsRequestRequestTypeDef(TypedDict):
1162
+ dataProtectionSettingsArn: str
1163
+ clientToken: NotRequired[str]
1164
+ description: NotRequired[str]
1165
+ displayName: NotRequired[str]
1166
+ inlineRedactionConfiguration: NotRequired[InlineRedactionConfigurationTypeDef]