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.
@@ -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:
@@ -73,7 +70,9 @@ else:
73
70
  __all__ = (
74
71
  "As2ConnectorConfigTypeDef",
75
72
  "BlobTypeDef",
73
+ "ConnectorEgressConfigTypeDef",
76
74
  "ConnectorFileTransferResultTypeDef",
75
+ "ConnectorVpcLatticeEgressConfigTypeDef",
77
76
  "CopyStepDetailsTypeDef",
78
77
  "CreateAccessRequestTypeDef",
79
78
  "CreateAccessResponseTypeDef",
@@ -138,7 +137,9 @@ __all__ = (
138
137
  "DescribedAccessTypeDef",
139
138
  "DescribedAgreementTypeDef",
140
139
  "DescribedCertificateTypeDef",
140
+ "DescribedConnectorEgressConfigTypeDef",
141
141
  "DescribedConnectorTypeDef",
142
+ "DescribedConnectorVpcLatticeEgressConfigTypeDef",
142
143
  "DescribedExecutionTypeDef",
143
144
  "DescribedHostKeyTypeDef",
144
145
  "DescribedIdentityCenterConfigTypeDef",
@@ -268,8 +269,10 @@ __all__ = (
268
269
  "UpdateAgreementResponseTypeDef",
269
270
  "UpdateCertificateRequestTypeDef",
270
271
  "UpdateCertificateResponseTypeDef",
272
+ "UpdateConnectorEgressConfigTypeDef",
271
273
  "UpdateConnectorRequestTypeDef",
272
274
  "UpdateConnectorResponseTypeDef",
275
+ "UpdateConnectorVpcLatticeEgressConfigTypeDef",
273
276
  "UpdateHostKeyRequestTypeDef",
274
277
  "UpdateHostKeyResponseTypeDef",
275
278
  "UpdateProfileRequestTypeDef",
@@ -311,6 +314,10 @@ class As2ConnectorConfigTypeDef(TypedDict):
311
314
 
312
315
  BlobTypeDef = Union[str, bytes, IO[Any], StreamingBody]
313
316
 
317
+ class ConnectorVpcLatticeEgressConfigTypeDef(TypedDict):
318
+ ResourceConfigurationArn: str
319
+ PortNumber: NotRequired[int]
320
+
314
321
  class ConnectorFileTransferResultTypeDef(TypedDict):
315
322
  FilePath: str
316
323
  StatusCode: TransferTableStatusType
@@ -329,7 +336,7 @@ HomeDirectoryMapEntryTypeDef = TypedDict(
329
336
  class ResponseMetadataTypeDef(TypedDict):
330
337
  RequestId: str
331
338
  HTTPStatusCode: int
332
- HTTPHeaders: Dict[str, str]
339
+ HTTPHeaders: dict[str, str]
333
340
  RetryAttempts: int
334
341
  HostId: NotRequired[str]
335
342
 
@@ -442,13 +449,13 @@ DescribedSecurityPolicyTypeDef = TypedDict(
442
449
  {
443
450
  "SecurityPolicyName": str,
444
451
  "Fips": NotRequired[bool],
445
- "SshCiphers": NotRequired[List[str]],
446
- "SshKexs": NotRequired[List[str]],
447
- "SshMacs": NotRequired[List[str]],
448
- "TlsCiphers": NotRequired[List[str]],
449
- "SshHostKeyAlgorithms": NotRequired[List[str]],
452
+ "SshCiphers": NotRequired[list[str]],
453
+ "SshKexs": NotRequired[list[str]],
454
+ "SshMacs": NotRequired[list[str]],
455
+ "TlsCiphers": NotRequired[list[str]],
456
+ "SshHostKeyAlgorithms": NotRequired[list[str]],
450
457
  "Type": NotRequired[SecurityPolicyResourceTypeType],
451
- "Protocols": NotRequired[List[SecurityPolicyProtocolType]],
458
+ "Protocols": NotRequired[list[SecurityPolicyProtocolType]],
452
459
  },
453
460
  )
454
461
 
@@ -482,11 +489,15 @@ class DescribeWorkflowRequestTypeDef(TypedDict):
482
489
  class PosixProfileOutputTypeDef(TypedDict):
483
490
  Uid: int
484
491
  Gid: int
485
- SecondaryGids: NotRequired[List[int]]
492
+ SecondaryGids: NotRequired[list[int]]
493
+
494
+ class DescribedConnectorVpcLatticeEgressConfigTypeDef(TypedDict):
495
+ ResourceConfigurationArn: str
496
+ PortNumber: NotRequired[int]
486
497
 
487
498
  class SftpConnectorConfigOutputTypeDef(TypedDict):
488
499
  UserSecretId: NotRequired[str]
489
- TrustedHostKeys: NotRequired[List[str]]
500
+ TrustedHostKeys: NotRequired[list[str]]
490
501
  MaxConcurrentConnections: NotRequired[int]
491
502
 
492
503
  class LoggingConfigurationTypeDef(TypedDict):
@@ -499,17 +510,17 @@ class DescribedIdentityCenterConfigTypeDef(TypedDict):
499
510
  Role: NotRequired[str]
500
511
 
501
512
  class EndpointDetailsOutputTypeDef(TypedDict):
502
- AddressAllocationIds: NotRequired[List[str]]
503
- SubnetIds: NotRequired[List[str]]
513
+ AddressAllocationIds: NotRequired[list[str]]
514
+ SubnetIds: NotRequired[list[str]]
504
515
  VpcEndpointId: NotRequired[str]
505
516
  VpcId: NotRequired[str]
506
- SecurityGroupIds: NotRequired[List[str]]
517
+ SecurityGroupIds: NotRequired[list[str]]
507
518
 
508
519
  class ProtocolDetailsOutputTypeDef(TypedDict):
509
520
  PassiveIp: NotRequired[str]
510
521
  TlsSessionResumptionMode: NotRequired[TlsSessionResumptionModeType]
511
522
  SetStatOption: NotRequired[SetStatOptionType]
512
- As2Transports: NotRequired[List[Literal["HTTP"]]]
523
+ As2Transports: NotRequired[list[Literal["HTTP"]]]
513
524
 
514
525
  class SshPublicKeyTypeDef(TypedDict):
515
526
  DateImported: datetime
@@ -783,6 +794,10 @@ class UntagResourceRequestTypeDef(TypedDict):
783
794
  Arn: str
784
795
  TagKeys: Sequence[str]
785
796
 
797
+ class UpdateConnectorVpcLatticeEgressConfigTypeDef(TypedDict):
798
+ ResourceConfigurationArn: NotRequired[str]
799
+ PortNumber: NotRequired[int]
800
+
786
801
  class UpdateHostKeyRequestTypeDef(TypedDict):
787
802
  ServerId: str
788
803
  HostKeyId: str
@@ -805,6 +820,9 @@ class UpdateWebAppCustomizationRequestTypeDef(TypedDict):
805
820
  LogoFile: NotRequired[BlobTypeDef]
806
821
  FaviconFile: NotRequired[BlobTypeDef]
807
822
 
823
+ class ConnectorEgressConfigTypeDef(TypedDict):
824
+ VpcLattice: NotRequired[ConnectorVpcLatticeEgressConfigTypeDef]
825
+
808
826
  class CreateAccessResponseTypeDef(TypedDict):
809
827
  ServerId: str
810
828
  ExternalId: str
@@ -858,12 +876,12 @@ class ImportSshPublicKeyResponseTypeDef(TypedDict):
858
876
  ResponseMetadata: ResponseMetadataTypeDef
859
877
 
860
878
  class ListFileTransferResultsResponseTypeDef(TypedDict):
861
- FileTransferResults: List[ConnectorFileTransferResultTypeDef]
879
+ FileTransferResults: list[ConnectorFileTransferResultTypeDef]
862
880
  ResponseMetadata: ResponseMetadataTypeDef
863
881
  NextToken: NotRequired[str]
864
882
 
865
883
  class ListSecurityPoliciesResponseTypeDef(TypedDict):
866
- SecurityPolicyNames: List[str]
884
+ SecurityPolicyNames: list[str]
867
885
  ResponseMetadata: ResponseMetadataTypeDef
868
886
  NextToken: NotRequired[str]
869
887
 
@@ -976,7 +994,7 @@ class DescribedAgreementTypeDef(TypedDict):
976
994
  PartnerProfileId: NotRequired[str]
977
995
  BaseDirectory: NotRequired[str]
978
996
  AccessRole: NotRequired[str]
979
- Tags: NotRequired[List[TagTypeDef]]
997
+ Tags: NotRequired[list[TagTypeDef]]
980
998
  PreserveFilename: NotRequired[PreserveFilenameTypeType]
981
999
  EnforceMessageSigning: NotRequired[EnforceMessageSigningTypeType]
982
1000
  CustomDirectories: NotRequired[CustomDirectoriesTypeTypeDef]
@@ -997,7 +1015,7 @@ DescribedCertificateTypeDef = TypedDict(
997
1015
  "NotAfterDate": NotRequired[datetime],
998
1016
  "Type": NotRequired[CertificateTypeType],
999
1017
  "Description": NotRequired[str],
1000
- "Tags": NotRequired[List[TagTypeDef]],
1018
+ "Tags": NotRequired[list[TagTypeDef]],
1001
1019
  },
1002
1020
  )
1003
1021
  DescribedHostKeyTypeDef = TypedDict(
@@ -1009,7 +1027,7 @@ DescribedHostKeyTypeDef = TypedDict(
1009
1027
  "Description": NotRequired[str],
1010
1028
  "Type": NotRequired[str],
1011
1029
  "DateImported": NotRequired[datetime],
1012
- "Tags": NotRequired[List[TagTypeDef]],
1030
+ "Tags": NotRequired[list[TagTypeDef]],
1013
1031
  },
1014
1032
  )
1015
1033
 
@@ -1018,8 +1036,8 @@ class DescribedProfileTypeDef(TypedDict):
1018
1036
  ProfileId: NotRequired[str]
1019
1037
  ProfileType: NotRequired[ProfileTypeType]
1020
1038
  As2Id: NotRequired[str]
1021
- CertificateIds: NotRequired[List[str]]
1022
- Tags: NotRequired[List[TagTypeDef]]
1039
+ CertificateIds: NotRequired[list[str]]
1040
+ Tags: NotRequired[list[TagTypeDef]]
1023
1041
 
1024
1042
  class ImportHostKeyRequestTypeDef(TypedDict):
1025
1043
  ServerId: str
@@ -1029,7 +1047,7 @@ class ImportHostKeyRequestTypeDef(TypedDict):
1029
1047
 
1030
1048
  class ListTagsForResourceResponseTypeDef(TypedDict):
1031
1049
  Arn: str
1032
- Tags: List[TagTypeDef]
1050
+ Tags: list[TagTypeDef]
1033
1051
  ResponseMetadata: ResponseMetadataTypeDef
1034
1052
  NextToken: NotRequired[str]
1035
1053
 
@@ -1055,24 +1073,15 @@ class DescribeWebAppCustomizationResponseTypeDef(TypedDict):
1055
1073
 
1056
1074
  class DescribedAccessTypeDef(TypedDict):
1057
1075
  HomeDirectory: NotRequired[str]
1058
- HomeDirectoryMappings: NotRequired[List[HomeDirectoryMapEntryTypeDef]]
1076
+ HomeDirectoryMappings: NotRequired[list[HomeDirectoryMapEntryTypeDef]]
1059
1077
  HomeDirectoryType: NotRequired[HomeDirectoryTypeType]
1060
1078
  Policy: NotRequired[str]
1061
1079
  PosixProfile: NotRequired[PosixProfileOutputTypeDef]
1062
1080
  Role: NotRequired[str]
1063
1081
  ExternalId: NotRequired[str]
1064
1082
 
1065
- class DescribedConnectorTypeDef(TypedDict):
1066
- Arn: str
1067
- ConnectorId: NotRequired[str]
1068
- Url: NotRequired[str]
1069
- As2Config: NotRequired[As2ConnectorConfigTypeDef]
1070
- AccessRole: NotRequired[str]
1071
- LoggingRole: NotRequired[str]
1072
- Tags: NotRequired[List[TagTypeDef]]
1073
- SftpConfig: NotRequired[SftpConnectorConfigOutputTypeDef]
1074
- ServiceManagedEgressIpAddresses: NotRequired[List[str]]
1075
- SecurityPolicyName: NotRequired[str]
1083
+ class DescribedConnectorEgressConfigTypeDef(TypedDict):
1084
+ VpcLattice: NotRequired[DescribedConnectorVpcLatticeEgressConfigTypeDef]
1076
1085
 
1077
1086
  class DescribedWebAppIdentityProviderDetailsTypeDef(TypedDict):
1078
1087
  IdentityCenterConfig: NotRequired[DescribedIdentityCenterConfigTypeDef]
@@ -1080,13 +1089,13 @@ class DescribedWebAppIdentityProviderDetailsTypeDef(TypedDict):
1080
1089
  class DescribedUserTypeDef(TypedDict):
1081
1090
  Arn: str
1082
1091
  HomeDirectory: NotRequired[str]
1083
- HomeDirectoryMappings: NotRequired[List[HomeDirectoryMapEntryTypeDef]]
1092
+ HomeDirectoryMappings: NotRequired[list[HomeDirectoryMapEntryTypeDef]]
1084
1093
  HomeDirectoryType: NotRequired[HomeDirectoryTypeType]
1085
1094
  Policy: NotRequired[str]
1086
1095
  PosixProfile: NotRequired[PosixProfileOutputTypeDef]
1087
1096
  Role: NotRequired[str]
1088
- SshPublicKeys: NotRequired[List[SshPublicKeyTypeDef]]
1089
- Tags: NotRequired[List[TagTypeDef]]
1097
+ SshPublicKeys: NotRequired[list[SshPublicKeyTypeDef]]
1098
+ Tags: NotRequired[list[TagTypeDef]]
1090
1099
  UserName: NotRequired[str]
1091
1100
 
1092
1101
  EndpointDetailsUnionTypeDef = Union[EndpointDetailsTypeDef, EndpointDetailsOutputTypeDef]
@@ -1172,54 +1181,54 @@ class ListWorkflowsRequestPaginateTypeDef(TypedDict):
1172
1181
 
1173
1182
  class ListAccessesResponseTypeDef(TypedDict):
1174
1183
  ServerId: str
1175
- Accesses: List[ListedAccessTypeDef]
1184
+ Accesses: list[ListedAccessTypeDef]
1176
1185
  ResponseMetadata: ResponseMetadataTypeDef
1177
1186
  NextToken: NotRequired[str]
1178
1187
 
1179
1188
  class ListAgreementsResponseTypeDef(TypedDict):
1180
- Agreements: List[ListedAgreementTypeDef]
1189
+ Agreements: list[ListedAgreementTypeDef]
1181
1190
  ResponseMetadata: ResponseMetadataTypeDef
1182
1191
  NextToken: NotRequired[str]
1183
1192
 
1184
1193
  class ListCertificatesResponseTypeDef(TypedDict):
1185
- Certificates: List[ListedCertificateTypeDef]
1194
+ Certificates: list[ListedCertificateTypeDef]
1186
1195
  ResponseMetadata: ResponseMetadataTypeDef
1187
1196
  NextToken: NotRequired[str]
1188
1197
 
1189
1198
  class ListConnectorsResponseTypeDef(TypedDict):
1190
- Connectors: List[ListedConnectorTypeDef]
1199
+ Connectors: list[ListedConnectorTypeDef]
1191
1200
  ResponseMetadata: ResponseMetadataTypeDef
1192
1201
  NextToken: NotRequired[str]
1193
1202
 
1194
1203
  class ListHostKeysResponseTypeDef(TypedDict):
1195
1204
  ServerId: str
1196
- HostKeys: List[ListedHostKeyTypeDef]
1205
+ HostKeys: list[ListedHostKeyTypeDef]
1197
1206
  ResponseMetadata: ResponseMetadataTypeDef
1198
1207
  NextToken: NotRequired[str]
1199
1208
 
1200
1209
  class ListProfilesResponseTypeDef(TypedDict):
1201
- Profiles: List[ListedProfileTypeDef]
1210
+ Profiles: list[ListedProfileTypeDef]
1202
1211
  ResponseMetadata: ResponseMetadataTypeDef
1203
1212
  NextToken: NotRequired[str]
1204
1213
 
1205
1214
  class ListServersResponseTypeDef(TypedDict):
1206
- Servers: List[ListedServerTypeDef]
1215
+ Servers: list[ListedServerTypeDef]
1207
1216
  ResponseMetadata: ResponseMetadataTypeDef
1208
1217
  NextToken: NotRequired[str]
1209
1218
 
1210
1219
  class ListUsersResponseTypeDef(TypedDict):
1211
1220
  ServerId: str
1212
- Users: List[ListedUserTypeDef]
1221
+ Users: list[ListedUserTypeDef]
1213
1222
  ResponseMetadata: ResponseMetadataTypeDef
1214
1223
  NextToken: NotRequired[str]
1215
1224
 
1216
1225
  class ListWebAppsResponseTypeDef(TypedDict):
1217
- WebApps: List[ListedWebAppTypeDef]
1226
+ WebApps: list[ListedWebAppTypeDef]
1218
1227
  ResponseMetadata: ResponseMetadataTypeDef
1219
1228
  NextToken: NotRequired[str]
1220
1229
 
1221
1230
  class ListWorkflowsResponseTypeDef(TypedDict):
1222
- Workflows: List[ListedWorkflowTypeDef]
1231
+ Workflows: list[ListedWorkflowTypeDef]
1223
1232
  ResponseMetadata: ResponseMetadataTypeDef
1224
1233
  NextToken: NotRequired[str]
1225
1234
 
@@ -1228,7 +1237,7 @@ ProtocolDetailsUnionTypeDef = Union[ProtocolDetailsTypeDef, ProtocolDetailsOutpu
1228
1237
 
1229
1238
  class TagStepDetailsOutputTypeDef(TypedDict):
1230
1239
  Name: NotRequired[str]
1231
- Tags: NotRequired[List[S3TagTypeDef]]
1240
+ Tags: NotRequired[list[S3TagTypeDef]]
1232
1241
  SourceFileLocation: NotRequired[str]
1233
1242
 
1234
1243
  class TagStepDetailsTypeDef(TypedDict):
@@ -1250,12 +1259,15 @@ class TestConnectionResponseTypeDef(TypedDict):
1250
1259
  SftpConnectionDetails: SftpConnectorConnectionDetailsTypeDef
1251
1260
  ResponseMetadata: ResponseMetadataTypeDef
1252
1261
 
1262
+ class UpdateConnectorEgressConfigTypeDef(TypedDict):
1263
+ VpcLattice: NotRequired[UpdateConnectorVpcLatticeEgressConfigTypeDef]
1264
+
1253
1265
  class UpdateWebAppIdentityProviderDetailsTypeDef(TypedDict):
1254
1266
  IdentityCenterConfig: NotRequired[UpdateWebAppIdentityCenterConfigTypeDef]
1255
1267
 
1256
1268
  class WorkflowDetailsOutputTypeDef(TypedDict):
1257
- OnUpload: NotRequired[List[WorkflowDetailTypeDef]]
1258
- OnPartialUpload: NotRequired[List[WorkflowDetailTypeDef]]
1269
+ OnUpload: NotRequired[list[WorkflowDetailTypeDef]]
1270
+ OnPartialUpload: NotRequired[list[WorkflowDetailTypeDef]]
1259
1271
 
1260
1272
  class WorkflowDetailsTypeDef(TypedDict):
1261
1273
  OnUpload: NotRequired[Sequence[WorkflowDetailTypeDef]]
@@ -1282,9 +1294,21 @@ class DescribeAccessResponseTypeDef(TypedDict):
1282
1294
  Access: DescribedAccessTypeDef
1283
1295
  ResponseMetadata: ResponseMetadataTypeDef
1284
1296
 
1285
- class DescribeConnectorResponseTypeDef(TypedDict):
1286
- Connector: DescribedConnectorTypeDef
1287
- ResponseMetadata: ResponseMetadataTypeDef
1297
+ class DescribedConnectorTypeDef(TypedDict):
1298
+ Arn: str
1299
+ EgressType: ConnectorEgressTypeType
1300
+ Status: ConnectorStatusType
1301
+ ConnectorId: NotRequired[str]
1302
+ Url: NotRequired[str]
1303
+ As2Config: NotRequired[As2ConnectorConfigTypeDef]
1304
+ AccessRole: NotRequired[str]
1305
+ LoggingRole: NotRequired[str]
1306
+ Tags: NotRequired[list[TagTypeDef]]
1307
+ SftpConfig: NotRequired[SftpConnectorConfigOutputTypeDef]
1308
+ ServiceManagedEgressIpAddresses: NotRequired[list[str]]
1309
+ SecurityPolicyName: NotRequired[str]
1310
+ EgressConfig: NotRequired[DescribedConnectorEgressConfigTypeDef]
1311
+ ErrorMessage: NotRequired[str]
1288
1312
 
1289
1313
  class DescribedWebAppTypeDef(TypedDict):
1290
1314
  Arn: str
@@ -1293,7 +1317,7 @@ class DescribedWebAppTypeDef(TypedDict):
1293
1317
  AccessEndpoint: NotRequired[str]
1294
1318
  WebAppEndpoint: NotRequired[str]
1295
1319
  WebAppUnits: NotRequired[WebAppUnitsTypeDef]
1296
- Tags: NotRequired[List[TagTypeDef]]
1320
+ Tags: NotRequired[list[TagTypeDef]]
1297
1321
  WebAppEndpointPolicy: NotRequired[WebAppEndpointPolicyType]
1298
1322
 
1299
1323
  class DescribeUserResponseTypeDef(TypedDict):
@@ -1302,8 +1326,8 @@ class DescribeUserResponseTypeDef(TypedDict):
1302
1326
  ResponseMetadata: ResponseMetadataTypeDef
1303
1327
 
1304
1328
  class ExecutionResultsTypeDef(TypedDict):
1305
- Steps: NotRequired[List[ExecutionStepResultTypeDef]]
1306
- OnExceptionSteps: NotRequired[List[ExecutionStepResultTypeDef]]
1329
+ Steps: NotRequired[list[ExecutionStepResultTypeDef]]
1330
+ OnExceptionSteps: NotRequired[list[ExecutionStepResultTypeDef]]
1307
1331
 
1308
1332
  class CreateWebAppRequestTypeDef(TypedDict):
1309
1333
  IdentityProviderDetails: WebAppIdentityProviderDetailsTypeDef
@@ -1380,13 +1404,14 @@ class ListedExecutionTypeDef(TypedDict):
1380
1404
  Status: NotRequired[ExecutionStatusType]
1381
1405
 
1382
1406
  class CreateConnectorRequestTypeDef(TypedDict):
1383
- Url: str
1384
1407
  AccessRole: str
1408
+ Url: NotRequired[str]
1385
1409
  As2Config: NotRequired[As2ConnectorConfigTypeDef]
1386
1410
  LoggingRole: NotRequired[str]
1387
1411
  Tags: NotRequired[Sequence[TagTypeDef]]
1388
1412
  SftpConfig: NotRequired[SftpConnectorConfigUnionTypeDef]
1389
1413
  SecurityPolicyName: NotRequired[str]
1414
+ EgressConfig: NotRequired[ConnectorEgressConfigTypeDef]
1390
1415
 
1391
1416
  class UpdateConnectorRequestTypeDef(TypedDict):
1392
1417
  ConnectorId: str
@@ -1396,6 +1421,7 @@ class UpdateConnectorRequestTypeDef(TypedDict):
1396
1421
  LoggingRole: NotRequired[str]
1397
1422
  SftpConfig: NotRequired[SftpConnectorConfigUnionTypeDef]
1398
1423
  SecurityPolicyName: NotRequired[str]
1424
+ EgressConfig: NotRequired[UpdateConnectorEgressConfigTypeDef]
1399
1425
 
1400
1426
  class UpdateWebAppRequestTypeDef(TypedDict):
1401
1427
  WebAppId: str
@@ -1416,20 +1442,24 @@ class DescribedServerTypeDef(TypedDict):
1416
1442
  LoggingRole: NotRequired[str]
1417
1443
  PostAuthenticationLoginBanner: NotRequired[str]
1418
1444
  PreAuthenticationLoginBanner: NotRequired[str]
1419
- Protocols: NotRequired[List[ProtocolType]]
1445
+ Protocols: NotRequired[list[ProtocolType]]
1420
1446
  SecurityPolicyName: NotRequired[str]
1421
1447
  ServerId: NotRequired[str]
1422
1448
  State: NotRequired[StateType]
1423
- Tags: NotRequired[List[TagTypeDef]]
1449
+ Tags: NotRequired[list[TagTypeDef]]
1424
1450
  UserCount: NotRequired[int]
1425
1451
  WorkflowDetails: NotRequired[WorkflowDetailsOutputTypeDef]
1426
- StructuredLogDestinations: NotRequired[List[str]]
1452
+ StructuredLogDestinations: NotRequired[list[str]]
1427
1453
  S3StorageOptions: NotRequired[S3StorageOptionsTypeDef]
1428
- As2ServiceManagedEgressIpAddresses: NotRequired[List[str]]
1454
+ As2ServiceManagedEgressIpAddresses: NotRequired[list[str]]
1429
1455
  IpAddressType: NotRequired[IpAddressTypeType]
1430
1456
 
1431
1457
  WorkflowDetailsUnionTypeDef = Union[WorkflowDetailsTypeDef, WorkflowDetailsOutputTypeDef]
1432
1458
 
1459
+ class DescribeConnectorResponseTypeDef(TypedDict):
1460
+ Connector: DescribedConnectorTypeDef
1461
+ ResponseMetadata: ResponseMetadataTypeDef
1462
+
1433
1463
  class DescribeWebAppResponseTypeDef(TypedDict):
1434
1464
  WebApp: DescribedWebAppTypeDef
1435
1465
  ResponseMetadata: ResponseMetadataTypeDef
@@ -1469,7 +1499,7 @@ WorkflowStepTypeDef = TypedDict(
1469
1499
 
1470
1500
  class ListExecutionsResponseTypeDef(TypedDict):
1471
1501
  WorkflowId: str
1472
- Executions: List[ListedExecutionTypeDef]
1502
+ Executions: list[ListedExecutionTypeDef]
1473
1503
  ResponseMetadata: ResponseMetadataTypeDef
1474
1504
  NextToken: NotRequired[str]
1475
1505
 
@@ -1524,10 +1554,10 @@ class DescribeExecutionResponseTypeDef(TypedDict):
1524
1554
  class DescribedWorkflowTypeDef(TypedDict):
1525
1555
  Arn: str
1526
1556
  Description: NotRequired[str]
1527
- Steps: NotRequired[List[WorkflowStepOutputTypeDef]]
1528
- OnExceptionSteps: NotRequired[List[WorkflowStepOutputTypeDef]]
1557
+ Steps: NotRequired[list[WorkflowStepOutputTypeDef]]
1558
+ OnExceptionSteps: NotRequired[list[WorkflowStepOutputTypeDef]]
1529
1559
  WorkflowId: NotRequired[str]
1530
- Tags: NotRequired[List[TagTypeDef]]
1560
+ Tags: NotRequired[list[TagTypeDef]]
1531
1561
 
1532
1562
  WorkflowStepUnionTypeDef = Union[WorkflowStepTypeDef, WorkflowStepOutputTypeDef]
1533
1563
 
@@ -4,4 +4,4 @@ Source of truth for version.
4
4
  Copyright 2025 Vlad Emelianov
5
5
  """
6
6
 
7
- __version__ = "1.40.42"
7
+ __version__ = "1.41.0"
@@ -1,23 +1,21 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mypy-boto3-transfer
3
- Version: 1.40.42
4
- Summary: Type annotations for boto3 Transfer 1.40.42 service generated with mypy-boto3-builder 8.11.0
5
- Home-page: https://github.com/youtype/mypy_boto3_builder
6
- Author: Vlad Emelianov
7
- Author-email: vlad.emelianov.nz@gmail.com
8
- License: MIT License
3
+ Version: 1.41.0
4
+ Summary: Type annotations for boto3 Transfer 1.41.0 service generated with mypy-boto3-builder 8.12.0
5
+ Author-email: Vlad Emelianov <vlad.emelianov.nz@gmail.com>
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/youtype/mypy_boto3_builder
9
8
  Project-URL: Documentation, https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/
10
9
  Project-URL: Source, https://github.com/youtype/mypy_boto3_builder
11
10
  Project-URL: Tracker, https://github.com/youtype/mypy_boto3_builder/issues
12
- Keywords: boto3 transfer boto3-stubs type-annotations mypy typeshed autocomplete
11
+ Keywords: boto3,transfer,boto3-stubs,type-annotations,mypy,typeshed,autocomplete
12
+ Platform: any
13
13
  Classifier: Development Status :: 5 - Production/Stable
14
14
  Classifier: Intended Audience :: Developers
15
15
  Classifier: Environment :: Console
16
- Classifier: License :: OSI Approved :: MIT License
17
16
  Classifier: Natural Language :: English
18
17
  Classifier: Operating System :: OS Independent
19
18
  Classifier: Programming Language :: Python :: 3
20
- Classifier: Programming Language :: Python :: 3.8
21
19
  Classifier: Programming Language :: Python :: 3.9
22
20
  Classifier: Programming Language :: Python :: 3.10
23
21
  Classifier: Programming Language :: Python :: 3.11
@@ -27,23 +25,11 @@ Classifier: Programming Language :: Python :: 3.14
27
25
  Classifier: Programming Language :: Python :: 3 :: Only
28
26
  Classifier: Programming Language :: Python :: Implementation :: CPython
29
27
  Classifier: Typing :: Stubs Only
30
- Requires-Python: >=3.8
28
+ Requires-Python: >=3.9
31
29
  Description-Content-Type: text/markdown
32
30
  License-File: LICENSE
33
31
  Requires-Dist: typing-extensions; python_version < "3.12"
34
- Dynamic: author
35
- Dynamic: author-email
36
- Dynamic: classifier
37
- Dynamic: description
38
- Dynamic: description-content-type
39
- Dynamic: home-page
40
- Dynamic: keywords
41
- Dynamic: license
42
32
  Dynamic: license-file
43
- Dynamic: project-url
44
- Dynamic: requires-dist
45
- Dynamic: requires-python
46
- Dynamic: summary
47
33
 
48
34
  <a id="mypy-boto3-transfer"></a>
49
35
 
@@ -56,7 +42,7 @@ Dynamic: summary
56
42
 
57
43
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
58
44
 
59
- Type annotations for [boto3 Transfer 1.40.42](https://pypi.org/project/boto3/)
45
+ Type annotations for [boto3 Transfer 1.41.0](https://pypi.org/project/boto3/)
60
46
  compatible with [VSCode](https://code.visualstudio.com/),
61
47
  [PyCharm](https://www.jetbrains.com/pycharm/),
62
48
  [Emacs](https://www.gnu.org/software/emacs/),
@@ -65,7 +51,7 @@ compatible with [VSCode](https://code.visualstudio.com/),
65
51
  [pyright](https://github.com/microsoft/pyright) and other tools.
66
52
 
67
53
  Generated with
68
- [mypy-boto3-builder 8.11.0](https://github.com/youtype/mypy_boto3_builder).
54
+ [mypy-boto3-builder 8.12.0](https://github.com/youtype/mypy_boto3_builder).
69
55
 
70
56
  More information can be found on
71
57
  [boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
@@ -119,7 +105,7 @@ You can generate type annotations for `boto3` package locally with
119
105
  isolation.
120
106
 
121
107
  1. Run mypy-boto3-builder in your package root directory:
122
- `uvx --with 'boto3==1.40.42' mypy-boto3-builder`
108
+ `uvx --with 'boto3==1.41.0' mypy-boto3-builder`
123
109
  2. Select `boto3-stubs` AWS SDK.
124
110
  3. Add `Transfer` service.
125
111
  4. Use provided commands to install generated packages.
@@ -0,0 +1,20 @@
1
+ mypy_boto3_transfer/__init__.py,sha256=t2pOUXo7W8TNe-jgA0-irsvTpRgDBu1c_-PGuwquyUI,3390
2
+ mypy_boto3_transfer/__init__.pyi,sha256=PQ_syhNHExDoYP9CvtCj7hbOZ04QncluE2HEqG8G3Jo,3389
3
+ mypy_boto3_transfer/__main__.py,sha256=U7rYjW38XpXeZ2jVfjAgroXnUROFkPjEWTw2JYXWc5U,985
4
+ mypy_boto3_transfer/client.py,sha256=wPNz8acxgqI7BJM12aBDyEKNl0aQPyfsS8OiZM7fWo8,53772
5
+ mypy_boto3_transfer/client.pyi,sha256=LWI2hmaZ_MLaOWdOIAFOe-JNv2v_Fo3ez8wJOeTwjYw,53769
6
+ mypy_boto3_transfer/literals.py,sha256=4IlmJaS6SRQnx9C2ZbtTRkWr97-MU9c-RjaTorGYdcU,15034
7
+ mypy_boto3_transfer/literals.pyi,sha256=cNmynvRZn9Hxfxii7CTo6i4Y5qUNLFAuRjmw05xjr4Y,15032
8
+ mypy_boto3_transfer/paginator.py,sha256=72CQVOP0TvWzPhB6wpEmSGeX8lM2gZMLsK10rxeMWBQ,18231
9
+ mypy_boto3_transfer/paginator.pyi,sha256=QqtzDdKz1xAfIYlPK0X_es6dnnfSbXw1fjqbdF3FFWQ,18191
10
+ mypy_boto3_transfer/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ mypy_boto3_transfer/type_defs.py,sha256=29dGcdyJ9Wvie5y3qqq3zfvYRjQ4psG2Xk-t8rgZY40,51466
12
+ mypy_boto3_transfer/type_defs.pyi,sha256=4NSXgzGHMFMKgNqH-egdDdy3W-6Bb9A5YDenw87CgMk,51238
13
+ mypy_boto3_transfer/version.py,sha256=ZtEblsbAVbZWuGFYY23SYRu3T8sCoiDNfG49dV1XWUA,92
14
+ mypy_boto3_transfer/waiter.py,sha256=2UKX-wTF6d41Ls7HSGO0mT1Kz30h40PCw7E09QCudSE,2645
15
+ mypy_boto3_transfer/waiter.pyi,sha256=B0g5zDjuMCEs0j-u_bw81lj6mCKn4MKqHA11MBppMUA,2640
16
+ mypy_boto3_transfer-1.41.0.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
17
+ mypy_boto3_transfer-1.41.0.dist-info/METADATA,sha256=BWBnAd8CeSbijigDZtPUndtUqc-iUD5cVtvX6QmTDxM,16840
18
+ mypy_boto3_transfer-1.41.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
19
+ mypy_boto3_transfer-1.41.0.dist-info/top_level.txt,sha256=mncof3SzY8eCafPLvBkKLLXMmqfJaw-PB_gBYRhC-Kk,20
20
+ mypy_boto3_transfer-1.41.0.dist-info/RECORD,,
@@ -1,20 +0,0 @@
1
- mypy_boto3_transfer/__init__.py,sha256=t2pOUXo7W8TNe-jgA0-irsvTpRgDBu1c_-PGuwquyUI,3390
2
- mypy_boto3_transfer/__init__.pyi,sha256=PQ_syhNHExDoYP9CvtCj7hbOZ04QncluE2HEqG8G3Jo,3389
3
- mypy_boto3_transfer/__main__.py,sha256=va4nFkg9ee49WpVECPZ54Pe25BxbHNLnUmbmqBgF4Bo,988
4
- mypy_boto3_transfer/client.py,sha256=6l0uSAVJ6BVdzPf1gv_asKcvpxuMbBxwBHNprQJrGaE,53932
5
- mypy_boto3_transfer/client.pyi,sha256=NNnyI8PomDZglArhR_iQXKG452-10OUFeLlp8LN8zcc,53929
6
- mypy_boto3_transfer/literals.py,sha256=XYRUACWt_3DHSP2gUgiZ6jGtnIHBLqoZXpFU-shX_7M,14888
7
- mypy_boto3_transfer/literals.pyi,sha256=H2ZSzxxnO2OIlkC2tSgLTyM27gY-GVPaVq6jy5Ix9wY,14886
8
- mypy_boto3_transfer/paginator.py,sha256=72CQVOP0TvWzPhB6wpEmSGeX8lM2gZMLsK10rxeMWBQ,18231
9
- mypy_boto3_transfer/paginator.pyi,sha256=QqtzDdKz1xAfIYlPK0X_es6dnnfSbXw1fjqbdF3FFWQ,18191
10
- mypy_boto3_transfer/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- mypy_boto3_transfer/type_defs.py,sha256=rC8g3xS3HhS_WayRFp9Qv4X6oouIVv39Y0lpYs1xLDw,50195
12
- mypy_boto3_transfer/type_defs.pyi,sha256=ysekfRCAJq0Lkclv2fRFOSib5O1X-P9Tg5lbUyJCzNw,49973
13
- mypy_boto3_transfer/version.py,sha256=R9HamMveou_4lecqgl6mHA9FekTdZgAg6T3HkeIuj30,93
14
- mypy_boto3_transfer/waiter.py,sha256=2UKX-wTF6d41Ls7HSGO0mT1Kz30h40PCw7E09QCudSE,2645
15
- mypy_boto3_transfer/waiter.pyi,sha256=B0g5zDjuMCEs0j-u_bw81lj6mCKn4MKqHA11MBppMUA,2640
16
- mypy_boto3_transfer-1.40.42.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
17
- mypy_boto3_transfer-1.40.42.dist-info/METADATA,sha256=ppAxgLyBuG646GoLSwUFerO9O5jwuwSW7M91xjCxbto,17175
18
- mypy_boto3_transfer-1.40.42.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
19
- mypy_boto3_transfer-1.40.42.dist-info/top_level.txt,sha256=mncof3SzY8eCafPLvBkKLLXMmqfJaw-PB_gBYRhC-Kk,20
20
- mypy_boto3_transfer-1.40.42.dist-info/RECORD,,