mypy-boto3-transfer 1.40.42__py3-none-any.whl → 1.41.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.
- 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 +8 -7
- mypy_boto3_transfer/literals.pyi +8 -7
- mypy_boto3_transfer/type_defs.py +106 -70
- mypy_boto3_transfer/type_defs.pyi +100 -70
- mypy_boto3_transfer/version.py +1 -1
- {mypy_boto3_transfer-1.40.42.dist-info → mypy_boto3_transfer-1.41.0.dist-info}/METADATA +11 -25
- mypy_boto3_transfer-1.41.0.dist-info/RECORD +20 -0
- mypy_boto3_transfer-1.40.42.dist-info/RECORD +0 -20
- {mypy_boto3_transfer-1.40.42.dist-info → mypy_boto3_transfer-1.41.0.dist-info}/WHEEL +0 -0
- {mypy_boto3_transfer-1.40.42.dist-info → mypy_boto3_transfer-1.41.0.dist-info}/licenses/LICENSE +0 -0
- {mypy_boto3_transfer-1.40.42.dist-info → mypy_boto3_transfer-1.41.0.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
|
|
|
@@ -28,6 +29,8 @@ from .literals import (
|
|
|
28
29
|
CertificateTypeType,
|
|
29
30
|
CertificateUsageTypeType,
|
|
30
31
|
CompressionEnumType,
|
|
32
|
+
ConnectorEgressTypeType,
|
|
33
|
+
ConnectorStatusType,
|
|
31
34
|
CustomStepStatusType,
|
|
32
35
|
DirectoryListingOptimizationType,
|
|
33
36
|
DomainType,
|
|
@@ -59,12 +62,6 @@ from .literals import (
|
|
|
59
62
|
WorkflowStepTypeType,
|
|
60
63
|
)
|
|
61
64
|
|
|
62
|
-
if sys.version_info >= (3, 9):
|
|
63
|
-
from builtins import dict as Dict
|
|
64
|
-
from builtins import list as List
|
|
65
|
-
from collections.abc import Sequence
|
|
66
|
-
else:
|
|
67
|
-
from typing import Dict, List, Sequence
|
|
68
65
|
if sys.version_info >= (3, 12):
|
|
69
66
|
from typing import Literal, NotRequired, TypedDict
|
|
70
67
|
else:
|
|
@@ -74,7 +71,9 @@ else:
|
|
|
74
71
|
__all__ = (
|
|
75
72
|
"As2ConnectorConfigTypeDef",
|
|
76
73
|
"BlobTypeDef",
|
|
74
|
+
"ConnectorEgressConfigTypeDef",
|
|
77
75
|
"ConnectorFileTransferResultTypeDef",
|
|
76
|
+
"ConnectorVpcLatticeEgressConfigTypeDef",
|
|
78
77
|
"CopyStepDetailsTypeDef",
|
|
79
78
|
"CreateAccessRequestTypeDef",
|
|
80
79
|
"CreateAccessResponseTypeDef",
|
|
@@ -139,7 +138,9 @@ __all__ = (
|
|
|
139
138
|
"DescribedAccessTypeDef",
|
|
140
139
|
"DescribedAgreementTypeDef",
|
|
141
140
|
"DescribedCertificateTypeDef",
|
|
141
|
+
"DescribedConnectorEgressConfigTypeDef",
|
|
142
142
|
"DescribedConnectorTypeDef",
|
|
143
|
+
"DescribedConnectorVpcLatticeEgressConfigTypeDef",
|
|
143
144
|
"DescribedExecutionTypeDef",
|
|
144
145
|
"DescribedHostKeyTypeDef",
|
|
145
146
|
"DescribedIdentityCenterConfigTypeDef",
|
|
@@ -269,8 +270,10 @@ __all__ = (
|
|
|
269
270
|
"UpdateAgreementResponseTypeDef",
|
|
270
271
|
"UpdateCertificateRequestTypeDef",
|
|
271
272
|
"UpdateCertificateResponseTypeDef",
|
|
273
|
+
"UpdateConnectorEgressConfigTypeDef",
|
|
272
274
|
"UpdateConnectorRequestTypeDef",
|
|
273
275
|
"UpdateConnectorResponseTypeDef",
|
|
276
|
+
"UpdateConnectorVpcLatticeEgressConfigTypeDef",
|
|
274
277
|
"UpdateHostKeyRequestTypeDef",
|
|
275
278
|
"UpdateHostKeyResponseTypeDef",
|
|
276
279
|
"UpdateProfileRequestTypeDef",
|
|
@@ -315,6 +318,11 @@ class As2ConnectorConfigTypeDef(TypedDict):
|
|
|
315
318
|
BlobTypeDef = Union[str, bytes, IO[Any], StreamingBody]
|
|
316
319
|
|
|
317
320
|
|
|
321
|
+
class ConnectorVpcLatticeEgressConfigTypeDef(TypedDict):
|
|
322
|
+
ResourceConfigurationArn: str
|
|
323
|
+
PortNumber: NotRequired[int]
|
|
324
|
+
|
|
325
|
+
|
|
318
326
|
class ConnectorFileTransferResultTypeDef(TypedDict):
|
|
319
327
|
FilePath: str
|
|
320
328
|
StatusCode: TransferTableStatusType
|
|
@@ -335,7 +343,7 @@ HomeDirectoryMapEntryTypeDef = TypedDict(
|
|
|
335
343
|
class ResponseMetadataTypeDef(TypedDict):
|
|
336
344
|
RequestId: str
|
|
337
345
|
HTTPStatusCode: int
|
|
338
|
-
HTTPHeaders:
|
|
346
|
+
HTTPHeaders: dict[str, str]
|
|
339
347
|
RetryAttempts: int
|
|
340
348
|
HostId: NotRequired[str]
|
|
341
349
|
|
|
@@ -476,13 +484,13 @@ DescribedSecurityPolicyTypeDef = TypedDict(
|
|
|
476
484
|
{
|
|
477
485
|
"SecurityPolicyName": str,
|
|
478
486
|
"Fips": NotRequired[bool],
|
|
479
|
-
"SshCiphers": NotRequired[
|
|
480
|
-
"SshKexs": NotRequired[
|
|
481
|
-
"SshMacs": NotRequired[
|
|
482
|
-
"TlsCiphers": NotRequired[
|
|
483
|
-
"SshHostKeyAlgorithms": NotRequired[
|
|
487
|
+
"SshCiphers": NotRequired[list[str]],
|
|
488
|
+
"SshKexs": NotRequired[list[str]],
|
|
489
|
+
"SshMacs": NotRequired[list[str]],
|
|
490
|
+
"TlsCiphers": NotRequired[list[str]],
|
|
491
|
+
"SshHostKeyAlgorithms": NotRequired[list[str]],
|
|
484
492
|
"Type": NotRequired[SecurityPolicyResourceTypeType],
|
|
485
|
-
"Protocols": NotRequired[
|
|
493
|
+
"Protocols": NotRequired[list[SecurityPolicyProtocolType]],
|
|
486
494
|
},
|
|
487
495
|
)
|
|
488
496
|
|
|
@@ -524,12 +532,17 @@ class DescribeWorkflowRequestTypeDef(TypedDict):
|
|
|
524
532
|
class PosixProfileOutputTypeDef(TypedDict):
|
|
525
533
|
Uid: int
|
|
526
534
|
Gid: int
|
|
527
|
-
SecondaryGids: NotRequired[
|
|
535
|
+
SecondaryGids: NotRequired[list[int]]
|
|
536
|
+
|
|
537
|
+
|
|
538
|
+
class DescribedConnectorVpcLatticeEgressConfigTypeDef(TypedDict):
|
|
539
|
+
ResourceConfigurationArn: str
|
|
540
|
+
PortNumber: NotRequired[int]
|
|
528
541
|
|
|
529
542
|
|
|
530
543
|
class SftpConnectorConfigOutputTypeDef(TypedDict):
|
|
531
544
|
UserSecretId: NotRequired[str]
|
|
532
|
-
TrustedHostKeys: NotRequired[
|
|
545
|
+
TrustedHostKeys: NotRequired[list[str]]
|
|
533
546
|
MaxConcurrentConnections: NotRequired[int]
|
|
534
547
|
|
|
535
548
|
|
|
@@ -545,18 +558,18 @@ class DescribedIdentityCenterConfigTypeDef(TypedDict):
|
|
|
545
558
|
|
|
546
559
|
|
|
547
560
|
class EndpointDetailsOutputTypeDef(TypedDict):
|
|
548
|
-
AddressAllocationIds: NotRequired[
|
|
549
|
-
SubnetIds: NotRequired[
|
|
561
|
+
AddressAllocationIds: NotRequired[list[str]]
|
|
562
|
+
SubnetIds: NotRequired[list[str]]
|
|
550
563
|
VpcEndpointId: NotRequired[str]
|
|
551
564
|
VpcId: NotRequired[str]
|
|
552
|
-
SecurityGroupIds: NotRequired[
|
|
565
|
+
SecurityGroupIds: NotRequired[list[str]]
|
|
553
566
|
|
|
554
567
|
|
|
555
568
|
class ProtocolDetailsOutputTypeDef(TypedDict):
|
|
556
569
|
PassiveIp: NotRequired[str]
|
|
557
570
|
TlsSessionResumptionMode: NotRequired[TlsSessionResumptionModeType]
|
|
558
571
|
SetStatOption: NotRequired[SetStatOptionType]
|
|
559
|
-
As2Transports: NotRequired[
|
|
572
|
+
As2Transports: NotRequired[list[Literal["HTTP"]]]
|
|
560
573
|
|
|
561
574
|
|
|
562
575
|
class SshPublicKeyTypeDef(TypedDict):
|
|
@@ -881,6 +894,11 @@ class UntagResourceRequestTypeDef(TypedDict):
|
|
|
881
894
|
TagKeys: Sequence[str]
|
|
882
895
|
|
|
883
896
|
|
|
897
|
+
class UpdateConnectorVpcLatticeEgressConfigTypeDef(TypedDict):
|
|
898
|
+
ResourceConfigurationArn: NotRequired[str]
|
|
899
|
+
PortNumber: NotRequired[int]
|
|
900
|
+
|
|
901
|
+
|
|
884
902
|
class UpdateHostKeyRequestTypeDef(TypedDict):
|
|
885
903
|
ServerId: str
|
|
886
904
|
HostKeyId: str
|
|
@@ -908,6 +926,10 @@ class UpdateWebAppCustomizationRequestTypeDef(TypedDict):
|
|
|
908
926
|
FaviconFile: NotRequired[BlobTypeDef]
|
|
909
927
|
|
|
910
928
|
|
|
929
|
+
class ConnectorEgressConfigTypeDef(TypedDict):
|
|
930
|
+
VpcLattice: NotRequired[ConnectorVpcLatticeEgressConfigTypeDef]
|
|
931
|
+
|
|
932
|
+
|
|
911
933
|
class CreateAccessResponseTypeDef(TypedDict):
|
|
912
934
|
ServerId: str
|
|
913
935
|
ExternalId: str
|
|
@@ -973,13 +995,13 @@ class ImportSshPublicKeyResponseTypeDef(TypedDict):
|
|
|
973
995
|
|
|
974
996
|
|
|
975
997
|
class ListFileTransferResultsResponseTypeDef(TypedDict):
|
|
976
|
-
FileTransferResults:
|
|
998
|
+
FileTransferResults: list[ConnectorFileTransferResultTypeDef]
|
|
977
999
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
978
1000
|
NextToken: NotRequired[str]
|
|
979
1001
|
|
|
980
1002
|
|
|
981
1003
|
class ListSecurityPoliciesResponseTypeDef(TypedDict):
|
|
982
|
-
SecurityPolicyNames:
|
|
1004
|
+
SecurityPolicyNames: list[str]
|
|
983
1005
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
984
1006
|
NextToken: NotRequired[str]
|
|
985
1007
|
|
|
@@ -1111,7 +1133,7 @@ class DescribedAgreementTypeDef(TypedDict):
|
|
|
1111
1133
|
PartnerProfileId: NotRequired[str]
|
|
1112
1134
|
BaseDirectory: NotRequired[str]
|
|
1113
1135
|
AccessRole: NotRequired[str]
|
|
1114
|
-
Tags: NotRequired[
|
|
1136
|
+
Tags: NotRequired[list[TagTypeDef]]
|
|
1115
1137
|
PreserveFilename: NotRequired[PreserveFilenameTypeType]
|
|
1116
1138
|
EnforceMessageSigning: NotRequired[EnforceMessageSigningTypeType]
|
|
1117
1139
|
CustomDirectories: NotRequired[CustomDirectoriesTypeTypeDef]
|
|
@@ -1133,7 +1155,7 @@ DescribedCertificateTypeDef = TypedDict(
|
|
|
1133
1155
|
"NotAfterDate": NotRequired[datetime],
|
|
1134
1156
|
"Type": NotRequired[CertificateTypeType],
|
|
1135
1157
|
"Description": NotRequired[str],
|
|
1136
|
-
"Tags": NotRequired[
|
|
1158
|
+
"Tags": NotRequired[list[TagTypeDef]],
|
|
1137
1159
|
},
|
|
1138
1160
|
)
|
|
1139
1161
|
DescribedHostKeyTypeDef = TypedDict(
|
|
@@ -1145,7 +1167,7 @@ DescribedHostKeyTypeDef = TypedDict(
|
|
|
1145
1167
|
"Description": NotRequired[str],
|
|
1146
1168
|
"Type": NotRequired[str],
|
|
1147
1169
|
"DateImported": NotRequired[datetime],
|
|
1148
|
-
"Tags": NotRequired[
|
|
1170
|
+
"Tags": NotRequired[list[TagTypeDef]],
|
|
1149
1171
|
},
|
|
1150
1172
|
)
|
|
1151
1173
|
|
|
@@ -1155,8 +1177,8 @@ class DescribedProfileTypeDef(TypedDict):
|
|
|
1155
1177
|
ProfileId: NotRequired[str]
|
|
1156
1178
|
ProfileType: NotRequired[ProfileTypeType]
|
|
1157
1179
|
As2Id: NotRequired[str]
|
|
1158
|
-
CertificateIds: NotRequired[
|
|
1159
|
-
Tags: NotRequired[
|
|
1180
|
+
CertificateIds: NotRequired[list[str]]
|
|
1181
|
+
Tags: NotRequired[list[TagTypeDef]]
|
|
1160
1182
|
|
|
1161
1183
|
|
|
1162
1184
|
class ImportHostKeyRequestTypeDef(TypedDict):
|
|
@@ -1168,7 +1190,7 @@ class ImportHostKeyRequestTypeDef(TypedDict):
|
|
|
1168
1190
|
|
|
1169
1191
|
class ListTagsForResourceResponseTypeDef(TypedDict):
|
|
1170
1192
|
Arn: str
|
|
1171
|
-
Tags:
|
|
1193
|
+
Tags: list[TagTypeDef]
|
|
1172
1194
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1173
1195
|
NextToken: NotRequired[str]
|
|
1174
1196
|
|
|
@@ -1200,7 +1222,7 @@ class DescribeWebAppCustomizationResponseTypeDef(TypedDict):
|
|
|
1200
1222
|
|
|
1201
1223
|
class DescribedAccessTypeDef(TypedDict):
|
|
1202
1224
|
HomeDirectory: NotRequired[str]
|
|
1203
|
-
HomeDirectoryMappings: NotRequired[
|
|
1225
|
+
HomeDirectoryMappings: NotRequired[list[HomeDirectoryMapEntryTypeDef]]
|
|
1204
1226
|
HomeDirectoryType: NotRequired[HomeDirectoryTypeType]
|
|
1205
1227
|
Policy: NotRequired[str]
|
|
1206
1228
|
PosixProfile: NotRequired[PosixProfileOutputTypeDef]
|
|
@@ -1208,17 +1230,8 @@ class DescribedAccessTypeDef(TypedDict):
|
|
|
1208
1230
|
ExternalId: NotRequired[str]
|
|
1209
1231
|
|
|
1210
1232
|
|
|
1211
|
-
class
|
|
1212
|
-
|
|
1213
|
-
ConnectorId: NotRequired[str]
|
|
1214
|
-
Url: NotRequired[str]
|
|
1215
|
-
As2Config: NotRequired[As2ConnectorConfigTypeDef]
|
|
1216
|
-
AccessRole: NotRequired[str]
|
|
1217
|
-
LoggingRole: NotRequired[str]
|
|
1218
|
-
Tags: NotRequired[List[TagTypeDef]]
|
|
1219
|
-
SftpConfig: NotRequired[SftpConnectorConfigOutputTypeDef]
|
|
1220
|
-
ServiceManagedEgressIpAddresses: NotRequired[List[str]]
|
|
1221
|
-
SecurityPolicyName: NotRequired[str]
|
|
1233
|
+
class DescribedConnectorEgressConfigTypeDef(TypedDict):
|
|
1234
|
+
VpcLattice: NotRequired[DescribedConnectorVpcLatticeEgressConfigTypeDef]
|
|
1222
1235
|
|
|
1223
1236
|
|
|
1224
1237
|
class DescribedWebAppIdentityProviderDetailsTypeDef(TypedDict):
|
|
@@ -1228,13 +1241,13 @@ class DescribedWebAppIdentityProviderDetailsTypeDef(TypedDict):
|
|
|
1228
1241
|
class DescribedUserTypeDef(TypedDict):
|
|
1229
1242
|
Arn: str
|
|
1230
1243
|
HomeDirectory: NotRequired[str]
|
|
1231
|
-
HomeDirectoryMappings: NotRequired[
|
|
1244
|
+
HomeDirectoryMappings: NotRequired[list[HomeDirectoryMapEntryTypeDef]]
|
|
1232
1245
|
HomeDirectoryType: NotRequired[HomeDirectoryTypeType]
|
|
1233
1246
|
Policy: NotRequired[str]
|
|
1234
1247
|
PosixProfile: NotRequired[PosixProfileOutputTypeDef]
|
|
1235
1248
|
Role: NotRequired[str]
|
|
1236
|
-
SshPublicKeys: NotRequired[
|
|
1237
|
-
Tags: NotRequired[
|
|
1249
|
+
SshPublicKeys: NotRequired[list[SshPublicKeyTypeDef]]
|
|
1250
|
+
Tags: NotRequired[list[TagTypeDef]]
|
|
1238
1251
|
UserName: NotRequired[str]
|
|
1239
1252
|
|
|
1240
1253
|
|
|
@@ -1341,63 +1354,63 @@ class ListWorkflowsRequestPaginateTypeDef(TypedDict):
|
|
|
1341
1354
|
|
|
1342
1355
|
class ListAccessesResponseTypeDef(TypedDict):
|
|
1343
1356
|
ServerId: str
|
|
1344
|
-
Accesses:
|
|
1357
|
+
Accesses: list[ListedAccessTypeDef]
|
|
1345
1358
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1346
1359
|
NextToken: NotRequired[str]
|
|
1347
1360
|
|
|
1348
1361
|
|
|
1349
1362
|
class ListAgreementsResponseTypeDef(TypedDict):
|
|
1350
|
-
Agreements:
|
|
1363
|
+
Agreements: list[ListedAgreementTypeDef]
|
|
1351
1364
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1352
1365
|
NextToken: NotRequired[str]
|
|
1353
1366
|
|
|
1354
1367
|
|
|
1355
1368
|
class ListCertificatesResponseTypeDef(TypedDict):
|
|
1356
|
-
Certificates:
|
|
1369
|
+
Certificates: list[ListedCertificateTypeDef]
|
|
1357
1370
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1358
1371
|
NextToken: NotRequired[str]
|
|
1359
1372
|
|
|
1360
1373
|
|
|
1361
1374
|
class ListConnectorsResponseTypeDef(TypedDict):
|
|
1362
|
-
Connectors:
|
|
1375
|
+
Connectors: list[ListedConnectorTypeDef]
|
|
1363
1376
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1364
1377
|
NextToken: NotRequired[str]
|
|
1365
1378
|
|
|
1366
1379
|
|
|
1367
1380
|
class ListHostKeysResponseTypeDef(TypedDict):
|
|
1368
1381
|
ServerId: str
|
|
1369
|
-
HostKeys:
|
|
1382
|
+
HostKeys: list[ListedHostKeyTypeDef]
|
|
1370
1383
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1371
1384
|
NextToken: NotRequired[str]
|
|
1372
1385
|
|
|
1373
1386
|
|
|
1374
1387
|
class ListProfilesResponseTypeDef(TypedDict):
|
|
1375
|
-
Profiles:
|
|
1388
|
+
Profiles: list[ListedProfileTypeDef]
|
|
1376
1389
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1377
1390
|
NextToken: NotRequired[str]
|
|
1378
1391
|
|
|
1379
1392
|
|
|
1380
1393
|
class ListServersResponseTypeDef(TypedDict):
|
|
1381
|
-
Servers:
|
|
1394
|
+
Servers: list[ListedServerTypeDef]
|
|
1382
1395
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1383
1396
|
NextToken: NotRequired[str]
|
|
1384
1397
|
|
|
1385
1398
|
|
|
1386
1399
|
class ListUsersResponseTypeDef(TypedDict):
|
|
1387
1400
|
ServerId: str
|
|
1388
|
-
Users:
|
|
1401
|
+
Users: list[ListedUserTypeDef]
|
|
1389
1402
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1390
1403
|
NextToken: NotRequired[str]
|
|
1391
1404
|
|
|
1392
1405
|
|
|
1393
1406
|
class ListWebAppsResponseTypeDef(TypedDict):
|
|
1394
|
-
WebApps:
|
|
1407
|
+
WebApps: list[ListedWebAppTypeDef]
|
|
1395
1408
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1396
1409
|
NextToken: NotRequired[str]
|
|
1397
1410
|
|
|
1398
1411
|
|
|
1399
1412
|
class ListWorkflowsResponseTypeDef(TypedDict):
|
|
1400
|
-
Workflows:
|
|
1413
|
+
Workflows: list[ListedWorkflowTypeDef]
|
|
1401
1414
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1402
1415
|
NextToken: NotRequired[str]
|
|
1403
1416
|
|
|
@@ -1408,7 +1421,7 @@ ProtocolDetailsUnionTypeDef = Union[ProtocolDetailsTypeDef, ProtocolDetailsOutpu
|
|
|
1408
1421
|
|
|
1409
1422
|
class TagStepDetailsOutputTypeDef(TypedDict):
|
|
1410
1423
|
Name: NotRequired[str]
|
|
1411
|
-
Tags: NotRequired[
|
|
1424
|
+
Tags: NotRequired[list[S3TagTypeDef]]
|
|
1412
1425
|
SourceFileLocation: NotRequired[str]
|
|
1413
1426
|
|
|
1414
1427
|
|
|
@@ -1435,13 +1448,17 @@ class TestConnectionResponseTypeDef(TypedDict):
|
|
|
1435
1448
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1436
1449
|
|
|
1437
1450
|
|
|
1451
|
+
class UpdateConnectorEgressConfigTypeDef(TypedDict):
|
|
1452
|
+
VpcLattice: NotRequired[UpdateConnectorVpcLatticeEgressConfigTypeDef]
|
|
1453
|
+
|
|
1454
|
+
|
|
1438
1455
|
class UpdateWebAppIdentityProviderDetailsTypeDef(TypedDict):
|
|
1439
1456
|
IdentityCenterConfig: NotRequired[UpdateWebAppIdentityCenterConfigTypeDef]
|
|
1440
1457
|
|
|
1441
1458
|
|
|
1442
1459
|
class WorkflowDetailsOutputTypeDef(TypedDict):
|
|
1443
|
-
OnUpload: NotRequired[
|
|
1444
|
-
OnPartialUpload: NotRequired[
|
|
1460
|
+
OnUpload: NotRequired[list[WorkflowDetailTypeDef]]
|
|
1461
|
+
OnPartialUpload: NotRequired[list[WorkflowDetailTypeDef]]
|
|
1445
1462
|
|
|
1446
1463
|
|
|
1447
1464
|
class WorkflowDetailsTypeDef(TypedDict):
|
|
@@ -1475,9 +1492,21 @@ class DescribeAccessResponseTypeDef(TypedDict):
|
|
|
1475
1492
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1476
1493
|
|
|
1477
1494
|
|
|
1478
|
-
class
|
|
1479
|
-
|
|
1480
|
-
|
|
1495
|
+
class DescribedConnectorTypeDef(TypedDict):
|
|
1496
|
+
Arn: str
|
|
1497
|
+
EgressType: ConnectorEgressTypeType
|
|
1498
|
+
Status: ConnectorStatusType
|
|
1499
|
+
ConnectorId: NotRequired[str]
|
|
1500
|
+
Url: NotRequired[str]
|
|
1501
|
+
As2Config: NotRequired[As2ConnectorConfigTypeDef]
|
|
1502
|
+
AccessRole: NotRequired[str]
|
|
1503
|
+
LoggingRole: NotRequired[str]
|
|
1504
|
+
Tags: NotRequired[list[TagTypeDef]]
|
|
1505
|
+
SftpConfig: NotRequired[SftpConnectorConfigOutputTypeDef]
|
|
1506
|
+
ServiceManagedEgressIpAddresses: NotRequired[list[str]]
|
|
1507
|
+
SecurityPolicyName: NotRequired[str]
|
|
1508
|
+
EgressConfig: NotRequired[DescribedConnectorEgressConfigTypeDef]
|
|
1509
|
+
ErrorMessage: NotRequired[str]
|
|
1481
1510
|
|
|
1482
1511
|
|
|
1483
1512
|
class DescribedWebAppTypeDef(TypedDict):
|
|
@@ -1487,7 +1516,7 @@ class DescribedWebAppTypeDef(TypedDict):
|
|
|
1487
1516
|
AccessEndpoint: NotRequired[str]
|
|
1488
1517
|
WebAppEndpoint: NotRequired[str]
|
|
1489
1518
|
WebAppUnits: NotRequired[WebAppUnitsTypeDef]
|
|
1490
|
-
Tags: NotRequired[
|
|
1519
|
+
Tags: NotRequired[list[TagTypeDef]]
|
|
1491
1520
|
WebAppEndpointPolicy: NotRequired[WebAppEndpointPolicyType]
|
|
1492
1521
|
|
|
1493
1522
|
|
|
@@ -1498,8 +1527,8 @@ class DescribeUserResponseTypeDef(TypedDict):
|
|
|
1498
1527
|
|
|
1499
1528
|
|
|
1500
1529
|
class ExecutionResultsTypeDef(TypedDict):
|
|
1501
|
-
Steps: NotRequired[
|
|
1502
|
-
OnExceptionSteps: NotRequired[
|
|
1530
|
+
Steps: NotRequired[list[ExecutionStepResultTypeDef]]
|
|
1531
|
+
OnExceptionSteps: NotRequired[list[ExecutionStepResultTypeDef]]
|
|
1503
1532
|
|
|
1504
1533
|
|
|
1505
1534
|
class CreateWebAppRequestTypeDef(TypedDict):
|
|
@@ -1586,13 +1615,14 @@ class ListedExecutionTypeDef(TypedDict):
|
|
|
1586
1615
|
|
|
1587
1616
|
|
|
1588
1617
|
class CreateConnectorRequestTypeDef(TypedDict):
|
|
1589
|
-
Url: str
|
|
1590
1618
|
AccessRole: str
|
|
1619
|
+
Url: NotRequired[str]
|
|
1591
1620
|
As2Config: NotRequired[As2ConnectorConfigTypeDef]
|
|
1592
1621
|
LoggingRole: NotRequired[str]
|
|
1593
1622
|
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
1594
1623
|
SftpConfig: NotRequired[SftpConnectorConfigUnionTypeDef]
|
|
1595
1624
|
SecurityPolicyName: NotRequired[str]
|
|
1625
|
+
EgressConfig: NotRequired[ConnectorEgressConfigTypeDef]
|
|
1596
1626
|
|
|
1597
1627
|
|
|
1598
1628
|
class UpdateConnectorRequestTypeDef(TypedDict):
|
|
@@ -1603,6 +1633,7 @@ class UpdateConnectorRequestTypeDef(TypedDict):
|
|
|
1603
1633
|
LoggingRole: NotRequired[str]
|
|
1604
1634
|
SftpConfig: NotRequired[SftpConnectorConfigUnionTypeDef]
|
|
1605
1635
|
SecurityPolicyName: NotRequired[str]
|
|
1636
|
+
EgressConfig: NotRequired[UpdateConnectorEgressConfigTypeDef]
|
|
1606
1637
|
|
|
1607
1638
|
|
|
1608
1639
|
class UpdateWebAppRequestTypeDef(TypedDict):
|
|
@@ -1625,22 +1656,27 @@ class DescribedServerTypeDef(TypedDict):
|
|
|
1625
1656
|
LoggingRole: NotRequired[str]
|
|
1626
1657
|
PostAuthenticationLoginBanner: NotRequired[str]
|
|
1627
1658
|
PreAuthenticationLoginBanner: NotRequired[str]
|
|
1628
|
-
Protocols: NotRequired[
|
|
1659
|
+
Protocols: NotRequired[list[ProtocolType]]
|
|
1629
1660
|
SecurityPolicyName: NotRequired[str]
|
|
1630
1661
|
ServerId: NotRequired[str]
|
|
1631
1662
|
State: NotRequired[StateType]
|
|
1632
|
-
Tags: NotRequired[
|
|
1663
|
+
Tags: NotRequired[list[TagTypeDef]]
|
|
1633
1664
|
UserCount: NotRequired[int]
|
|
1634
1665
|
WorkflowDetails: NotRequired[WorkflowDetailsOutputTypeDef]
|
|
1635
|
-
StructuredLogDestinations: NotRequired[
|
|
1666
|
+
StructuredLogDestinations: NotRequired[list[str]]
|
|
1636
1667
|
S3StorageOptions: NotRequired[S3StorageOptionsTypeDef]
|
|
1637
|
-
As2ServiceManagedEgressIpAddresses: NotRequired[
|
|
1668
|
+
As2ServiceManagedEgressIpAddresses: NotRequired[list[str]]
|
|
1638
1669
|
IpAddressType: NotRequired[IpAddressTypeType]
|
|
1639
1670
|
|
|
1640
1671
|
|
|
1641
1672
|
WorkflowDetailsUnionTypeDef = Union[WorkflowDetailsTypeDef, WorkflowDetailsOutputTypeDef]
|
|
1642
1673
|
|
|
1643
1674
|
|
|
1675
|
+
class DescribeConnectorResponseTypeDef(TypedDict):
|
|
1676
|
+
Connector: DescribedConnectorTypeDef
|
|
1677
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1678
|
+
|
|
1679
|
+
|
|
1644
1680
|
class DescribeWebAppResponseTypeDef(TypedDict):
|
|
1645
1681
|
WebApp: DescribedWebAppTypeDef
|
|
1646
1682
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -1683,7 +1719,7 @@ WorkflowStepTypeDef = TypedDict(
|
|
|
1683
1719
|
|
|
1684
1720
|
class ListExecutionsResponseTypeDef(TypedDict):
|
|
1685
1721
|
WorkflowId: str
|
|
1686
|
-
Executions:
|
|
1722
|
+
Executions: list[ListedExecutionTypeDef]
|
|
1687
1723
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1688
1724
|
NextToken: NotRequired[str]
|
|
1689
1725
|
|
|
@@ -1743,10 +1779,10 @@ class DescribeExecutionResponseTypeDef(TypedDict):
|
|
|
1743
1779
|
class DescribedWorkflowTypeDef(TypedDict):
|
|
1744
1780
|
Arn: str
|
|
1745
1781
|
Description: NotRequired[str]
|
|
1746
|
-
Steps: NotRequired[
|
|
1747
|
-
OnExceptionSteps: NotRequired[
|
|
1782
|
+
Steps: NotRequired[list[WorkflowStepOutputTypeDef]]
|
|
1783
|
+
OnExceptionSteps: NotRequired[list[WorkflowStepOutputTypeDef]]
|
|
1748
1784
|
WorkflowId: NotRequired[str]
|
|
1749
|
-
Tags: NotRequired[
|
|
1785
|
+
Tags: NotRequired[list[TagTypeDef]]
|
|
1750
1786
|
|
|
1751
1787
|
|
|
1752
1788
|
WorkflowStepUnionTypeDef = Union[WorkflowStepTypeDef, WorkflowStepOutputTypeDef]
|