mypy-boto3-transfer 1.40.52__py3-none-any.whl → 1.41.2__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_transfer/__main__.py +4 -4
- mypy_boto3_transfer/client.py +12 -17
- mypy_boto3_transfer/client.pyi +12 -17
- mypy_boto3_transfer/literals.py +7 -7
- mypy_boto3_transfer/literals.pyi +7 -7
- mypy_boto3_transfer/type_defs.py +106 -71
- mypy_boto3_transfer/type_defs.pyi +98 -69
- mypy_boto3_transfer/version.py +1 -1
- {mypy_boto3_transfer-1.40.52.dist-info → mypy_boto3_transfer-1.41.2.dist-info}/METADATA +11 -25
- mypy_boto3_transfer-1.41.2.dist-info/RECORD +20 -0
- mypy_boto3_transfer-1.40.52.dist-info/RECORD +0 -20
- {mypy_boto3_transfer-1.40.52.dist-info → mypy_boto3_transfer-1.41.2.dist-info}/WHEEL +0 -0
- {mypy_boto3_transfer-1.40.52.dist-info → mypy_boto3_transfer-1.41.2.dist-info}/licenses/LICENSE +0 -0
- {mypy_boto3_transfer-1.40.52.dist-info → mypy_boto3_transfer-1.41.2.dist-info}/top_level.txt +0 -0
mypy_boto3_transfer/type_defs.py
CHANGED
|
@@ -17,6 +17,7 @@ Usage::
|
|
|
17
17
|
from __future__ import annotations
|
|
18
18
|
|
|
19
19
|
import sys
|
|
20
|
+
from collections.abc import Sequence
|
|
20
21
|
from datetime import datetime
|
|
21
22
|
from typing import IO, Any, Union
|
|
22
23
|
|
|
@@ -58,15 +59,10 @@ from .literals import (
|
|
|
58
59
|
TlsSessionResumptionModeType,
|
|
59
60
|
TransferTableStatusType,
|
|
60
61
|
WebAppEndpointPolicyType,
|
|
62
|
+
WebAppEndpointTypeType,
|
|
61
63
|
WorkflowStepTypeType,
|
|
62
64
|
)
|
|
63
65
|
|
|
64
|
-
if sys.version_info >= (3, 9):
|
|
65
|
-
from builtins import dict as Dict
|
|
66
|
-
from builtins import list as List
|
|
67
|
-
from collections.abc import Sequence
|
|
68
|
-
else:
|
|
69
|
-
from typing import Dict, List, Sequence
|
|
70
66
|
if sys.version_info >= (3, 12):
|
|
71
67
|
from typing import Literal, NotRequired, TypedDict
|
|
72
68
|
else:
|
|
@@ -154,8 +150,10 @@ __all__ = (
|
|
|
154
150
|
"DescribedServerTypeDef",
|
|
155
151
|
"DescribedUserTypeDef",
|
|
156
152
|
"DescribedWebAppCustomizationTypeDef",
|
|
153
|
+
"DescribedWebAppEndpointDetailsTypeDef",
|
|
157
154
|
"DescribedWebAppIdentityProviderDetailsTypeDef",
|
|
158
155
|
"DescribedWebAppTypeDef",
|
|
156
|
+
"DescribedWebAppVpcConfigTypeDef",
|
|
159
157
|
"DescribedWorkflowTypeDef",
|
|
160
158
|
"EfsFileLocationTypeDef",
|
|
161
159
|
"EmptyResponseMetadataTypeDef",
|
|
@@ -289,14 +287,18 @@ __all__ = (
|
|
|
289
287
|
"UpdateUserResponseTypeDef",
|
|
290
288
|
"UpdateWebAppCustomizationRequestTypeDef",
|
|
291
289
|
"UpdateWebAppCustomizationResponseTypeDef",
|
|
290
|
+
"UpdateWebAppEndpointDetailsTypeDef",
|
|
292
291
|
"UpdateWebAppIdentityCenterConfigTypeDef",
|
|
293
292
|
"UpdateWebAppIdentityProviderDetailsTypeDef",
|
|
294
293
|
"UpdateWebAppRequestTypeDef",
|
|
295
294
|
"UpdateWebAppResponseTypeDef",
|
|
295
|
+
"UpdateWebAppVpcConfigTypeDef",
|
|
296
296
|
"UserDetailsTypeDef",
|
|
297
297
|
"WaiterConfigTypeDef",
|
|
298
|
+
"WebAppEndpointDetailsTypeDef",
|
|
298
299
|
"WebAppIdentityProviderDetailsTypeDef",
|
|
299
300
|
"WebAppUnitsTypeDef",
|
|
301
|
+
"WebAppVpcConfigTypeDef",
|
|
300
302
|
"WorkflowDetailTypeDef",
|
|
301
303
|
"WorkflowDetailsOutputTypeDef",
|
|
302
304
|
"WorkflowDetailsTypeDef",
|
|
@@ -348,7 +350,7 @@ HomeDirectoryMapEntryTypeDef = TypedDict(
|
|
|
348
350
|
class ResponseMetadataTypeDef(TypedDict):
|
|
349
351
|
RequestId: str
|
|
350
352
|
HTTPStatusCode: int
|
|
351
|
-
HTTPHeaders:
|
|
353
|
+
HTTPHeaders: dict[str, str]
|
|
352
354
|
RetryAttempts: int
|
|
353
355
|
HostId: NotRequired[str]
|
|
354
356
|
|
|
@@ -489,13 +491,13 @@ DescribedSecurityPolicyTypeDef = TypedDict(
|
|
|
489
491
|
{
|
|
490
492
|
"SecurityPolicyName": str,
|
|
491
493
|
"Fips": NotRequired[bool],
|
|
492
|
-
"SshCiphers": NotRequired[
|
|
493
|
-
"SshKexs": NotRequired[
|
|
494
|
-
"SshMacs": NotRequired[
|
|
495
|
-
"TlsCiphers": NotRequired[
|
|
496
|
-
"SshHostKeyAlgorithms": NotRequired[
|
|
494
|
+
"SshCiphers": NotRequired[list[str]],
|
|
495
|
+
"SshKexs": NotRequired[list[str]],
|
|
496
|
+
"SshMacs": NotRequired[list[str]],
|
|
497
|
+
"TlsCiphers": NotRequired[list[str]],
|
|
498
|
+
"SshHostKeyAlgorithms": NotRequired[list[str]],
|
|
497
499
|
"Type": NotRequired[SecurityPolicyResourceTypeType],
|
|
498
|
-
"Protocols": NotRequired[
|
|
500
|
+
"Protocols": NotRequired[list[SecurityPolicyProtocolType]],
|
|
499
501
|
},
|
|
500
502
|
)
|
|
501
503
|
|
|
@@ -537,7 +539,7 @@ class DescribeWorkflowRequestTypeDef(TypedDict):
|
|
|
537
539
|
class PosixProfileOutputTypeDef(TypedDict):
|
|
538
540
|
Uid: int
|
|
539
541
|
Gid: int
|
|
540
|
-
SecondaryGids: NotRequired[
|
|
542
|
+
SecondaryGids: NotRequired[list[int]]
|
|
541
543
|
|
|
542
544
|
|
|
543
545
|
class DescribedConnectorVpcLatticeEgressConfigTypeDef(TypedDict):
|
|
@@ -547,7 +549,7 @@ class DescribedConnectorVpcLatticeEgressConfigTypeDef(TypedDict):
|
|
|
547
549
|
|
|
548
550
|
class SftpConnectorConfigOutputTypeDef(TypedDict):
|
|
549
551
|
UserSecretId: NotRequired[str]
|
|
550
|
-
TrustedHostKeys: NotRequired[
|
|
552
|
+
TrustedHostKeys: NotRequired[list[str]]
|
|
551
553
|
MaxConcurrentConnections: NotRequired[int]
|
|
552
554
|
|
|
553
555
|
|
|
@@ -563,18 +565,18 @@ class DescribedIdentityCenterConfigTypeDef(TypedDict):
|
|
|
563
565
|
|
|
564
566
|
|
|
565
567
|
class EndpointDetailsOutputTypeDef(TypedDict):
|
|
566
|
-
AddressAllocationIds: NotRequired[
|
|
567
|
-
SubnetIds: NotRequired[
|
|
568
|
+
AddressAllocationIds: NotRequired[list[str]]
|
|
569
|
+
SubnetIds: NotRequired[list[str]]
|
|
568
570
|
VpcEndpointId: NotRequired[str]
|
|
569
571
|
VpcId: NotRequired[str]
|
|
570
|
-
SecurityGroupIds: NotRequired[
|
|
572
|
+
SecurityGroupIds: NotRequired[list[str]]
|
|
571
573
|
|
|
572
574
|
|
|
573
575
|
class ProtocolDetailsOutputTypeDef(TypedDict):
|
|
574
576
|
PassiveIp: NotRequired[str]
|
|
575
577
|
TlsSessionResumptionMode: NotRequired[TlsSessionResumptionModeType]
|
|
576
578
|
SetStatOption: NotRequired[SetStatOptionType]
|
|
577
|
-
As2Transports: NotRequired[
|
|
579
|
+
As2Transports: NotRequired[list[Literal["HTTP"]]]
|
|
578
580
|
|
|
579
581
|
|
|
580
582
|
class SshPublicKeyTypeDef(TypedDict):
|
|
@@ -583,6 +585,12 @@ class SshPublicKeyTypeDef(TypedDict):
|
|
|
583
585
|
SshPublicKeyId: str
|
|
584
586
|
|
|
585
587
|
|
|
588
|
+
class DescribedWebAppVpcConfigTypeDef(TypedDict):
|
|
589
|
+
SubnetIds: NotRequired[list[str]]
|
|
590
|
+
VpcId: NotRequired[str]
|
|
591
|
+
VpcEndpointId: NotRequired[str]
|
|
592
|
+
|
|
593
|
+
|
|
586
594
|
class EfsFileLocationTypeDef(TypedDict):
|
|
587
595
|
FileSystemId: NotRequired[str]
|
|
588
596
|
Path: NotRequired[str]
|
|
@@ -794,6 +802,7 @@ class ListedWebAppTypeDef(TypedDict):
|
|
|
794
802
|
WebAppId: str
|
|
795
803
|
AccessEndpoint: NotRequired[str]
|
|
796
804
|
WebAppEndpoint: NotRequired[str]
|
|
805
|
+
EndpointType: NotRequired[WebAppEndpointTypeType]
|
|
797
806
|
|
|
798
807
|
|
|
799
808
|
class ListWorkflowsRequestTypeDef(TypedDict):
|
|
@@ -915,10 +924,20 @@ class UpdateProfileRequestTypeDef(TypedDict):
|
|
|
915
924
|
CertificateIds: NotRequired[Sequence[str]]
|
|
916
925
|
|
|
917
926
|
|
|
927
|
+
class UpdateWebAppVpcConfigTypeDef(TypedDict):
|
|
928
|
+
SubnetIds: NotRequired[Sequence[str]]
|
|
929
|
+
|
|
930
|
+
|
|
918
931
|
class UpdateWebAppIdentityCenterConfigTypeDef(TypedDict):
|
|
919
932
|
Role: NotRequired[str]
|
|
920
933
|
|
|
921
934
|
|
|
935
|
+
class WebAppVpcConfigTypeDef(TypedDict):
|
|
936
|
+
SubnetIds: NotRequired[Sequence[str]]
|
|
937
|
+
VpcId: NotRequired[str]
|
|
938
|
+
SecurityGroupIds: NotRequired[Sequence[str]]
|
|
939
|
+
|
|
940
|
+
|
|
922
941
|
class WorkflowDetailTypeDef(TypedDict):
|
|
923
942
|
WorkflowId: str
|
|
924
943
|
ExecutionRole: str
|
|
@@ -1000,13 +1019,13 @@ class ImportSshPublicKeyResponseTypeDef(TypedDict):
|
|
|
1000
1019
|
|
|
1001
1020
|
|
|
1002
1021
|
class ListFileTransferResultsResponseTypeDef(TypedDict):
|
|
1003
|
-
FileTransferResults:
|
|
1022
|
+
FileTransferResults: list[ConnectorFileTransferResultTypeDef]
|
|
1004
1023
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1005
1024
|
NextToken: NotRequired[str]
|
|
1006
1025
|
|
|
1007
1026
|
|
|
1008
1027
|
class ListSecurityPoliciesResponseTypeDef(TypedDict):
|
|
1009
|
-
SecurityPolicyNames:
|
|
1028
|
+
SecurityPolicyNames: list[str]
|
|
1010
1029
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1011
1030
|
NextToken: NotRequired[str]
|
|
1012
1031
|
|
|
@@ -1138,7 +1157,7 @@ class DescribedAgreementTypeDef(TypedDict):
|
|
|
1138
1157
|
PartnerProfileId: NotRequired[str]
|
|
1139
1158
|
BaseDirectory: NotRequired[str]
|
|
1140
1159
|
AccessRole: NotRequired[str]
|
|
1141
|
-
Tags: NotRequired[
|
|
1160
|
+
Tags: NotRequired[list[TagTypeDef]]
|
|
1142
1161
|
PreserveFilename: NotRequired[PreserveFilenameTypeType]
|
|
1143
1162
|
EnforceMessageSigning: NotRequired[EnforceMessageSigningTypeType]
|
|
1144
1163
|
CustomDirectories: NotRequired[CustomDirectoriesTypeTypeDef]
|
|
@@ -1160,7 +1179,7 @@ DescribedCertificateTypeDef = TypedDict(
|
|
|
1160
1179
|
"NotAfterDate": NotRequired[datetime],
|
|
1161
1180
|
"Type": NotRequired[CertificateTypeType],
|
|
1162
1181
|
"Description": NotRequired[str],
|
|
1163
|
-
"Tags": NotRequired[
|
|
1182
|
+
"Tags": NotRequired[list[TagTypeDef]],
|
|
1164
1183
|
},
|
|
1165
1184
|
)
|
|
1166
1185
|
DescribedHostKeyTypeDef = TypedDict(
|
|
@@ -1172,7 +1191,7 @@ DescribedHostKeyTypeDef = TypedDict(
|
|
|
1172
1191
|
"Description": NotRequired[str],
|
|
1173
1192
|
"Type": NotRequired[str],
|
|
1174
1193
|
"DateImported": NotRequired[datetime],
|
|
1175
|
-
"Tags": NotRequired[
|
|
1194
|
+
"Tags": NotRequired[list[TagTypeDef]],
|
|
1176
1195
|
},
|
|
1177
1196
|
)
|
|
1178
1197
|
|
|
@@ -1182,8 +1201,8 @@ class DescribedProfileTypeDef(TypedDict):
|
|
|
1182
1201
|
ProfileId: NotRequired[str]
|
|
1183
1202
|
ProfileType: NotRequired[ProfileTypeType]
|
|
1184
1203
|
As2Id: NotRequired[str]
|
|
1185
|
-
CertificateIds: NotRequired[
|
|
1186
|
-
Tags: NotRequired[
|
|
1204
|
+
CertificateIds: NotRequired[list[str]]
|
|
1205
|
+
Tags: NotRequired[list[TagTypeDef]]
|
|
1187
1206
|
|
|
1188
1207
|
|
|
1189
1208
|
class ImportHostKeyRequestTypeDef(TypedDict):
|
|
@@ -1195,7 +1214,7 @@ class ImportHostKeyRequestTypeDef(TypedDict):
|
|
|
1195
1214
|
|
|
1196
1215
|
class ListTagsForResourceResponseTypeDef(TypedDict):
|
|
1197
1216
|
Arn: str
|
|
1198
|
-
Tags:
|
|
1217
|
+
Tags: list[TagTypeDef]
|
|
1199
1218
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1200
1219
|
NextToken: NotRequired[str]
|
|
1201
1220
|
|
|
@@ -1227,7 +1246,7 @@ class DescribeWebAppCustomizationResponseTypeDef(TypedDict):
|
|
|
1227
1246
|
|
|
1228
1247
|
class DescribedAccessTypeDef(TypedDict):
|
|
1229
1248
|
HomeDirectory: NotRequired[str]
|
|
1230
|
-
HomeDirectoryMappings: NotRequired[
|
|
1249
|
+
HomeDirectoryMappings: NotRequired[list[HomeDirectoryMapEntryTypeDef]]
|
|
1231
1250
|
HomeDirectoryType: NotRequired[HomeDirectoryTypeType]
|
|
1232
1251
|
Policy: NotRequired[str]
|
|
1233
1252
|
PosixProfile: NotRequired[PosixProfileOutputTypeDef]
|
|
@@ -1246,16 +1265,20 @@ class DescribedWebAppIdentityProviderDetailsTypeDef(TypedDict):
|
|
|
1246
1265
|
class DescribedUserTypeDef(TypedDict):
|
|
1247
1266
|
Arn: str
|
|
1248
1267
|
HomeDirectory: NotRequired[str]
|
|
1249
|
-
HomeDirectoryMappings: NotRequired[
|
|
1268
|
+
HomeDirectoryMappings: NotRequired[list[HomeDirectoryMapEntryTypeDef]]
|
|
1250
1269
|
HomeDirectoryType: NotRequired[HomeDirectoryTypeType]
|
|
1251
1270
|
Policy: NotRequired[str]
|
|
1252
1271
|
PosixProfile: NotRequired[PosixProfileOutputTypeDef]
|
|
1253
1272
|
Role: NotRequired[str]
|
|
1254
|
-
SshPublicKeys: NotRequired[
|
|
1255
|
-
Tags: NotRequired[
|
|
1273
|
+
SshPublicKeys: NotRequired[list[SshPublicKeyTypeDef]]
|
|
1274
|
+
Tags: NotRequired[list[TagTypeDef]]
|
|
1256
1275
|
UserName: NotRequired[str]
|
|
1257
1276
|
|
|
1258
1277
|
|
|
1278
|
+
class DescribedWebAppEndpointDetailsTypeDef(TypedDict):
|
|
1279
|
+
Vpc: NotRequired[DescribedWebAppVpcConfigTypeDef]
|
|
1280
|
+
|
|
1281
|
+
|
|
1259
1282
|
EndpointDetailsUnionTypeDef = Union[EndpointDetailsTypeDef, EndpointDetailsOutputTypeDef]
|
|
1260
1283
|
|
|
1261
1284
|
|
|
@@ -1359,63 +1382,63 @@ class ListWorkflowsRequestPaginateTypeDef(TypedDict):
|
|
|
1359
1382
|
|
|
1360
1383
|
class ListAccessesResponseTypeDef(TypedDict):
|
|
1361
1384
|
ServerId: str
|
|
1362
|
-
Accesses:
|
|
1385
|
+
Accesses: list[ListedAccessTypeDef]
|
|
1363
1386
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1364
1387
|
NextToken: NotRequired[str]
|
|
1365
1388
|
|
|
1366
1389
|
|
|
1367
1390
|
class ListAgreementsResponseTypeDef(TypedDict):
|
|
1368
|
-
Agreements:
|
|
1391
|
+
Agreements: list[ListedAgreementTypeDef]
|
|
1369
1392
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1370
1393
|
NextToken: NotRequired[str]
|
|
1371
1394
|
|
|
1372
1395
|
|
|
1373
1396
|
class ListCertificatesResponseTypeDef(TypedDict):
|
|
1374
|
-
Certificates:
|
|
1397
|
+
Certificates: list[ListedCertificateTypeDef]
|
|
1375
1398
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1376
1399
|
NextToken: NotRequired[str]
|
|
1377
1400
|
|
|
1378
1401
|
|
|
1379
1402
|
class ListConnectorsResponseTypeDef(TypedDict):
|
|
1380
|
-
Connectors:
|
|
1403
|
+
Connectors: list[ListedConnectorTypeDef]
|
|
1381
1404
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1382
1405
|
NextToken: NotRequired[str]
|
|
1383
1406
|
|
|
1384
1407
|
|
|
1385
1408
|
class ListHostKeysResponseTypeDef(TypedDict):
|
|
1386
1409
|
ServerId: str
|
|
1387
|
-
HostKeys:
|
|
1410
|
+
HostKeys: list[ListedHostKeyTypeDef]
|
|
1388
1411
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1389
1412
|
NextToken: NotRequired[str]
|
|
1390
1413
|
|
|
1391
1414
|
|
|
1392
1415
|
class ListProfilesResponseTypeDef(TypedDict):
|
|
1393
|
-
Profiles:
|
|
1416
|
+
Profiles: list[ListedProfileTypeDef]
|
|
1394
1417
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1395
1418
|
NextToken: NotRequired[str]
|
|
1396
1419
|
|
|
1397
1420
|
|
|
1398
1421
|
class ListServersResponseTypeDef(TypedDict):
|
|
1399
|
-
Servers:
|
|
1422
|
+
Servers: list[ListedServerTypeDef]
|
|
1400
1423
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1401
1424
|
NextToken: NotRequired[str]
|
|
1402
1425
|
|
|
1403
1426
|
|
|
1404
1427
|
class ListUsersResponseTypeDef(TypedDict):
|
|
1405
1428
|
ServerId: str
|
|
1406
|
-
Users:
|
|
1429
|
+
Users: list[ListedUserTypeDef]
|
|
1407
1430
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1408
1431
|
NextToken: NotRequired[str]
|
|
1409
1432
|
|
|
1410
1433
|
|
|
1411
1434
|
class ListWebAppsResponseTypeDef(TypedDict):
|
|
1412
|
-
WebApps:
|
|
1435
|
+
WebApps: list[ListedWebAppTypeDef]
|
|
1413
1436
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1414
1437
|
NextToken: NotRequired[str]
|
|
1415
1438
|
|
|
1416
1439
|
|
|
1417
1440
|
class ListWorkflowsResponseTypeDef(TypedDict):
|
|
1418
|
-
Workflows:
|
|
1441
|
+
Workflows: list[ListedWorkflowTypeDef]
|
|
1419
1442
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1420
1443
|
NextToken: NotRequired[str]
|
|
1421
1444
|
|
|
@@ -1426,7 +1449,7 @@ ProtocolDetailsUnionTypeDef = Union[ProtocolDetailsTypeDef, ProtocolDetailsOutpu
|
|
|
1426
1449
|
|
|
1427
1450
|
class TagStepDetailsOutputTypeDef(TypedDict):
|
|
1428
1451
|
Name: NotRequired[str]
|
|
1429
|
-
Tags: NotRequired[
|
|
1452
|
+
Tags: NotRequired[list[S3TagTypeDef]]
|
|
1430
1453
|
SourceFileLocation: NotRequired[str]
|
|
1431
1454
|
|
|
1432
1455
|
|
|
@@ -1457,13 +1480,21 @@ class UpdateConnectorEgressConfigTypeDef(TypedDict):
|
|
|
1457
1480
|
VpcLattice: NotRequired[UpdateConnectorVpcLatticeEgressConfigTypeDef]
|
|
1458
1481
|
|
|
1459
1482
|
|
|
1483
|
+
class UpdateWebAppEndpointDetailsTypeDef(TypedDict):
|
|
1484
|
+
Vpc: NotRequired[UpdateWebAppVpcConfigTypeDef]
|
|
1485
|
+
|
|
1486
|
+
|
|
1460
1487
|
class UpdateWebAppIdentityProviderDetailsTypeDef(TypedDict):
|
|
1461
1488
|
IdentityCenterConfig: NotRequired[UpdateWebAppIdentityCenterConfigTypeDef]
|
|
1462
1489
|
|
|
1463
1490
|
|
|
1491
|
+
class WebAppEndpointDetailsTypeDef(TypedDict):
|
|
1492
|
+
Vpc: NotRequired[WebAppVpcConfigTypeDef]
|
|
1493
|
+
|
|
1494
|
+
|
|
1464
1495
|
class WorkflowDetailsOutputTypeDef(TypedDict):
|
|
1465
|
-
OnUpload: NotRequired[
|
|
1466
|
-
OnPartialUpload: NotRequired[
|
|
1496
|
+
OnUpload: NotRequired[list[WorkflowDetailTypeDef]]
|
|
1497
|
+
OnPartialUpload: NotRequired[list[WorkflowDetailTypeDef]]
|
|
1467
1498
|
|
|
1468
1499
|
|
|
1469
1500
|
class WorkflowDetailsTypeDef(TypedDict):
|
|
@@ -1506,14 +1537,20 @@ class DescribedConnectorTypeDef(TypedDict):
|
|
|
1506
1537
|
As2Config: NotRequired[As2ConnectorConfigTypeDef]
|
|
1507
1538
|
AccessRole: NotRequired[str]
|
|
1508
1539
|
LoggingRole: NotRequired[str]
|
|
1509
|
-
Tags: NotRequired[
|
|
1540
|
+
Tags: NotRequired[list[TagTypeDef]]
|
|
1510
1541
|
SftpConfig: NotRequired[SftpConnectorConfigOutputTypeDef]
|
|
1511
|
-
ServiceManagedEgressIpAddresses: NotRequired[
|
|
1542
|
+
ServiceManagedEgressIpAddresses: NotRequired[list[str]]
|
|
1512
1543
|
SecurityPolicyName: NotRequired[str]
|
|
1513
1544
|
EgressConfig: NotRequired[DescribedConnectorEgressConfigTypeDef]
|
|
1514
1545
|
ErrorMessage: NotRequired[str]
|
|
1515
1546
|
|
|
1516
1547
|
|
|
1548
|
+
class DescribeUserResponseTypeDef(TypedDict):
|
|
1549
|
+
ServerId: str
|
|
1550
|
+
User: DescribedUserTypeDef
|
|
1551
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1552
|
+
|
|
1553
|
+
|
|
1517
1554
|
class DescribedWebAppTypeDef(TypedDict):
|
|
1518
1555
|
Arn: str
|
|
1519
1556
|
WebAppId: str
|
|
@@ -1521,27 +1558,15 @@ class DescribedWebAppTypeDef(TypedDict):
|
|
|
1521
1558
|
AccessEndpoint: NotRequired[str]
|
|
1522
1559
|
WebAppEndpoint: NotRequired[str]
|
|
1523
1560
|
WebAppUnits: NotRequired[WebAppUnitsTypeDef]
|
|
1524
|
-
Tags: NotRequired[
|
|
1561
|
+
Tags: NotRequired[list[TagTypeDef]]
|
|
1525
1562
|
WebAppEndpointPolicy: NotRequired[WebAppEndpointPolicyType]
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
class DescribeUserResponseTypeDef(TypedDict):
|
|
1529
|
-
ServerId: str
|
|
1530
|
-
User: DescribedUserTypeDef
|
|
1531
|
-
ResponseMetadata: ResponseMetadataTypeDef
|
|
1563
|
+
EndpointType: NotRequired[WebAppEndpointTypeType]
|
|
1564
|
+
DescribedEndpointDetails: NotRequired[DescribedWebAppEndpointDetailsTypeDef]
|
|
1532
1565
|
|
|
1533
1566
|
|
|
1534
1567
|
class ExecutionResultsTypeDef(TypedDict):
|
|
1535
|
-
Steps: NotRequired[
|
|
1536
|
-
OnExceptionSteps: NotRequired[
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
class CreateWebAppRequestTypeDef(TypedDict):
|
|
1540
|
-
IdentityProviderDetails: WebAppIdentityProviderDetailsTypeDef
|
|
1541
|
-
AccessEndpoint: NotRequired[str]
|
|
1542
|
-
WebAppUnits: NotRequired[WebAppUnitsTypeDef]
|
|
1543
|
-
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
1544
|
-
WebAppEndpointPolicy: NotRequired[WebAppEndpointPolicyType]
|
|
1568
|
+
Steps: NotRequired[list[ExecutionStepResultTypeDef]]
|
|
1569
|
+
OnExceptionSteps: NotRequired[list[ExecutionStepResultTypeDef]]
|
|
1545
1570
|
|
|
1546
1571
|
|
|
1547
1572
|
class CopyStepDetailsTypeDef(TypedDict):
|
|
@@ -1646,6 +1671,16 @@ class UpdateWebAppRequestTypeDef(TypedDict):
|
|
|
1646
1671
|
IdentityProviderDetails: NotRequired[UpdateWebAppIdentityProviderDetailsTypeDef]
|
|
1647
1672
|
AccessEndpoint: NotRequired[str]
|
|
1648
1673
|
WebAppUnits: NotRequired[WebAppUnitsTypeDef]
|
|
1674
|
+
EndpointDetails: NotRequired[UpdateWebAppEndpointDetailsTypeDef]
|
|
1675
|
+
|
|
1676
|
+
|
|
1677
|
+
class CreateWebAppRequestTypeDef(TypedDict):
|
|
1678
|
+
IdentityProviderDetails: WebAppIdentityProviderDetailsTypeDef
|
|
1679
|
+
AccessEndpoint: NotRequired[str]
|
|
1680
|
+
WebAppUnits: NotRequired[WebAppUnitsTypeDef]
|
|
1681
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
1682
|
+
WebAppEndpointPolicy: NotRequired[WebAppEndpointPolicyType]
|
|
1683
|
+
EndpointDetails: NotRequired[WebAppEndpointDetailsTypeDef]
|
|
1649
1684
|
|
|
1650
1685
|
|
|
1651
1686
|
class DescribedServerTypeDef(TypedDict):
|
|
@@ -1661,16 +1696,16 @@ class DescribedServerTypeDef(TypedDict):
|
|
|
1661
1696
|
LoggingRole: NotRequired[str]
|
|
1662
1697
|
PostAuthenticationLoginBanner: NotRequired[str]
|
|
1663
1698
|
PreAuthenticationLoginBanner: NotRequired[str]
|
|
1664
|
-
Protocols: NotRequired[
|
|
1699
|
+
Protocols: NotRequired[list[ProtocolType]]
|
|
1665
1700
|
SecurityPolicyName: NotRequired[str]
|
|
1666
1701
|
ServerId: NotRequired[str]
|
|
1667
1702
|
State: NotRequired[StateType]
|
|
1668
|
-
Tags: NotRequired[
|
|
1703
|
+
Tags: NotRequired[list[TagTypeDef]]
|
|
1669
1704
|
UserCount: NotRequired[int]
|
|
1670
1705
|
WorkflowDetails: NotRequired[WorkflowDetailsOutputTypeDef]
|
|
1671
|
-
StructuredLogDestinations: NotRequired[
|
|
1706
|
+
StructuredLogDestinations: NotRequired[list[str]]
|
|
1672
1707
|
S3StorageOptions: NotRequired[S3StorageOptionsTypeDef]
|
|
1673
|
-
As2ServiceManagedEgressIpAddresses: NotRequired[
|
|
1708
|
+
As2ServiceManagedEgressIpAddresses: NotRequired[list[str]]
|
|
1674
1709
|
IpAddressType: NotRequired[IpAddressTypeType]
|
|
1675
1710
|
|
|
1676
1711
|
|
|
@@ -1724,7 +1759,7 @@ WorkflowStepTypeDef = TypedDict(
|
|
|
1724
1759
|
|
|
1725
1760
|
class ListExecutionsResponseTypeDef(TypedDict):
|
|
1726
1761
|
WorkflowId: str
|
|
1727
|
-
Executions:
|
|
1762
|
+
Executions: list[ListedExecutionTypeDef]
|
|
1728
1763
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1729
1764
|
NextToken: NotRequired[str]
|
|
1730
1765
|
|
|
@@ -1784,10 +1819,10 @@ class DescribeExecutionResponseTypeDef(TypedDict):
|
|
|
1784
1819
|
class DescribedWorkflowTypeDef(TypedDict):
|
|
1785
1820
|
Arn: str
|
|
1786
1821
|
Description: NotRequired[str]
|
|
1787
|
-
Steps: NotRequired[
|
|
1788
|
-
OnExceptionSteps: NotRequired[
|
|
1822
|
+
Steps: NotRequired[list[WorkflowStepOutputTypeDef]]
|
|
1823
|
+
OnExceptionSteps: NotRequired[list[WorkflowStepOutputTypeDef]]
|
|
1789
1824
|
WorkflowId: NotRequired[str]
|
|
1790
|
-
Tags: NotRequired[
|
|
1825
|
+
Tags: NotRequired[list[TagTypeDef]]
|
|
1791
1826
|
|
|
1792
1827
|
|
|
1793
1828
|
WorkflowStepUnionTypeDef = Union[WorkflowStepTypeDef, WorkflowStepOutputTypeDef]
|