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.
@@ -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:
@@ -153,8 +149,10 @@ __all__ = (
153
149
  "DescribedServerTypeDef",
154
150
  "DescribedUserTypeDef",
155
151
  "DescribedWebAppCustomizationTypeDef",
152
+ "DescribedWebAppEndpointDetailsTypeDef",
156
153
  "DescribedWebAppIdentityProviderDetailsTypeDef",
157
154
  "DescribedWebAppTypeDef",
155
+ "DescribedWebAppVpcConfigTypeDef",
158
156
  "DescribedWorkflowTypeDef",
159
157
  "EfsFileLocationTypeDef",
160
158
  "EmptyResponseMetadataTypeDef",
@@ -288,14 +286,18 @@ __all__ = (
288
286
  "UpdateUserResponseTypeDef",
289
287
  "UpdateWebAppCustomizationRequestTypeDef",
290
288
  "UpdateWebAppCustomizationResponseTypeDef",
289
+ "UpdateWebAppEndpointDetailsTypeDef",
291
290
  "UpdateWebAppIdentityCenterConfigTypeDef",
292
291
  "UpdateWebAppIdentityProviderDetailsTypeDef",
293
292
  "UpdateWebAppRequestTypeDef",
294
293
  "UpdateWebAppResponseTypeDef",
294
+ "UpdateWebAppVpcConfigTypeDef",
295
295
  "UserDetailsTypeDef",
296
296
  "WaiterConfigTypeDef",
297
+ "WebAppEndpointDetailsTypeDef",
297
298
  "WebAppIdentityProviderDetailsTypeDef",
298
299
  "WebAppUnitsTypeDef",
300
+ "WebAppVpcConfigTypeDef",
299
301
  "WorkflowDetailTypeDef",
300
302
  "WorkflowDetailsOutputTypeDef",
301
303
  "WorkflowDetailsTypeDef",
@@ -341,7 +343,7 @@ HomeDirectoryMapEntryTypeDef = TypedDict(
341
343
  class ResponseMetadataTypeDef(TypedDict):
342
344
  RequestId: str
343
345
  HTTPStatusCode: int
344
- HTTPHeaders: Dict[str, str]
346
+ HTTPHeaders: dict[str, str]
345
347
  RetryAttempts: int
346
348
  HostId: NotRequired[str]
347
349
 
@@ -454,13 +456,13 @@ DescribedSecurityPolicyTypeDef = TypedDict(
454
456
  {
455
457
  "SecurityPolicyName": str,
456
458
  "Fips": NotRequired[bool],
457
- "SshCiphers": NotRequired[List[str]],
458
- "SshKexs": NotRequired[List[str]],
459
- "SshMacs": NotRequired[List[str]],
460
- "TlsCiphers": NotRequired[List[str]],
461
- "SshHostKeyAlgorithms": NotRequired[List[str]],
459
+ "SshCiphers": NotRequired[list[str]],
460
+ "SshKexs": NotRequired[list[str]],
461
+ "SshMacs": NotRequired[list[str]],
462
+ "TlsCiphers": NotRequired[list[str]],
463
+ "SshHostKeyAlgorithms": NotRequired[list[str]],
462
464
  "Type": NotRequired[SecurityPolicyResourceTypeType],
463
- "Protocols": NotRequired[List[SecurityPolicyProtocolType]],
465
+ "Protocols": NotRequired[list[SecurityPolicyProtocolType]],
464
466
  },
465
467
  )
466
468
 
@@ -494,7 +496,7 @@ class DescribeWorkflowRequestTypeDef(TypedDict):
494
496
  class PosixProfileOutputTypeDef(TypedDict):
495
497
  Uid: int
496
498
  Gid: int
497
- SecondaryGids: NotRequired[List[int]]
499
+ SecondaryGids: NotRequired[list[int]]
498
500
 
499
501
  class DescribedConnectorVpcLatticeEgressConfigTypeDef(TypedDict):
500
502
  ResourceConfigurationArn: str
@@ -502,7 +504,7 @@ class DescribedConnectorVpcLatticeEgressConfigTypeDef(TypedDict):
502
504
 
503
505
  class SftpConnectorConfigOutputTypeDef(TypedDict):
504
506
  UserSecretId: NotRequired[str]
505
- TrustedHostKeys: NotRequired[List[str]]
507
+ TrustedHostKeys: NotRequired[list[str]]
506
508
  MaxConcurrentConnections: NotRequired[int]
507
509
 
508
510
  class LoggingConfigurationTypeDef(TypedDict):
@@ -515,23 +517,28 @@ class DescribedIdentityCenterConfigTypeDef(TypedDict):
515
517
  Role: NotRequired[str]
516
518
 
517
519
  class EndpointDetailsOutputTypeDef(TypedDict):
518
- AddressAllocationIds: NotRequired[List[str]]
519
- SubnetIds: NotRequired[List[str]]
520
+ AddressAllocationIds: NotRequired[list[str]]
521
+ SubnetIds: NotRequired[list[str]]
520
522
  VpcEndpointId: NotRequired[str]
521
523
  VpcId: NotRequired[str]
522
- SecurityGroupIds: NotRequired[List[str]]
524
+ SecurityGroupIds: NotRequired[list[str]]
523
525
 
524
526
  class ProtocolDetailsOutputTypeDef(TypedDict):
525
527
  PassiveIp: NotRequired[str]
526
528
  TlsSessionResumptionMode: NotRequired[TlsSessionResumptionModeType]
527
529
  SetStatOption: NotRequired[SetStatOptionType]
528
- As2Transports: NotRequired[List[Literal["HTTP"]]]
530
+ As2Transports: NotRequired[list[Literal["HTTP"]]]
529
531
 
530
532
  class SshPublicKeyTypeDef(TypedDict):
531
533
  DateImported: datetime
532
534
  SshPublicKeyBody: str
533
535
  SshPublicKeyId: str
534
536
 
537
+ class DescribedWebAppVpcConfigTypeDef(TypedDict):
538
+ SubnetIds: NotRequired[list[str]]
539
+ VpcId: NotRequired[str]
540
+ VpcEndpointId: NotRequired[str]
541
+
535
542
  class EfsFileLocationTypeDef(TypedDict):
536
543
  FileSystemId: NotRequired[str]
537
544
  Path: NotRequired[str]
@@ -713,6 +720,7 @@ class ListedWebAppTypeDef(TypedDict):
713
720
  WebAppId: str
714
721
  AccessEndpoint: NotRequired[str]
715
722
  WebAppEndpoint: NotRequired[str]
723
+ EndpointType: NotRequired[WebAppEndpointTypeType]
716
724
 
717
725
  class ListWorkflowsRequestTypeDef(TypedDict):
718
726
  MaxResults: NotRequired[int]
@@ -812,9 +820,17 @@ class UpdateProfileRequestTypeDef(TypedDict):
812
820
  ProfileId: str
813
821
  CertificateIds: NotRequired[Sequence[str]]
814
822
 
823
+ class UpdateWebAppVpcConfigTypeDef(TypedDict):
824
+ SubnetIds: NotRequired[Sequence[str]]
825
+
815
826
  class UpdateWebAppIdentityCenterConfigTypeDef(TypedDict):
816
827
  Role: NotRequired[str]
817
828
 
829
+ class WebAppVpcConfigTypeDef(TypedDict):
830
+ SubnetIds: NotRequired[Sequence[str]]
831
+ VpcId: NotRequired[str]
832
+ SecurityGroupIds: NotRequired[Sequence[str]]
833
+
818
834
  class WorkflowDetailTypeDef(TypedDict):
819
835
  WorkflowId: str
820
836
  ExecutionRole: str
@@ -881,12 +897,12 @@ class ImportSshPublicKeyResponseTypeDef(TypedDict):
881
897
  ResponseMetadata: ResponseMetadataTypeDef
882
898
 
883
899
  class ListFileTransferResultsResponseTypeDef(TypedDict):
884
- FileTransferResults: List[ConnectorFileTransferResultTypeDef]
900
+ FileTransferResults: list[ConnectorFileTransferResultTypeDef]
885
901
  ResponseMetadata: ResponseMetadataTypeDef
886
902
  NextToken: NotRequired[str]
887
903
 
888
904
  class ListSecurityPoliciesResponseTypeDef(TypedDict):
889
- SecurityPolicyNames: List[str]
905
+ SecurityPolicyNames: list[str]
890
906
  ResponseMetadata: ResponseMetadataTypeDef
891
907
  NextToken: NotRequired[str]
892
908
 
@@ -999,7 +1015,7 @@ class DescribedAgreementTypeDef(TypedDict):
999
1015
  PartnerProfileId: NotRequired[str]
1000
1016
  BaseDirectory: NotRequired[str]
1001
1017
  AccessRole: NotRequired[str]
1002
- Tags: NotRequired[List[TagTypeDef]]
1018
+ Tags: NotRequired[list[TagTypeDef]]
1003
1019
  PreserveFilename: NotRequired[PreserveFilenameTypeType]
1004
1020
  EnforceMessageSigning: NotRequired[EnforceMessageSigningTypeType]
1005
1021
  CustomDirectories: NotRequired[CustomDirectoriesTypeTypeDef]
@@ -1020,7 +1036,7 @@ DescribedCertificateTypeDef = TypedDict(
1020
1036
  "NotAfterDate": NotRequired[datetime],
1021
1037
  "Type": NotRequired[CertificateTypeType],
1022
1038
  "Description": NotRequired[str],
1023
- "Tags": NotRequired[List[TagTypeDef]],
1039
+ "Tags": NotRequired[list[TagTypeDef]],
1024
1040
  },
1025
1041
  )
1026
1042
  DescribedHostKeyTypeDef = TypedDict(
@@ -1032,7 +1048,7 @@ DescribedHostKeyTypeDef = TypedDict(
1032
1048
  "Description": NotRequired[str],
1033
1049
  "Type": NotRequired[str],
1034
1050
  "DateImported": NotRequired[datetime],
1035
- "Tags": NotRequired[List[TagTypeDef]],
1051
+ "Tags": NotRequired[list[TagTypeDef]],
1036
1052
  },
1037
1053
  )
1038
1054
 
@@ -1041,8 +1057,8 @@ class DescribedProfileTypeDef(TypedDict):
1041
1057
  ProfileId: NotRequired[str]
1042
1058
  ProfileType: NotRequired[ProfileTypeType]
1043
1059
  As2Id: NotRequired[str]
1044
- CertificateIds: NotRequired[List[str]]
1045
- Tags: NotRequired[List[TagTypeDef]]
1060
+ CertificateIds: NotRequired[list[str]]
1061
+ Tags: NotRequired[list[TagTypeDef]]
1046
1062
 
1047
1063
  class ImportHostKeyRequestTypeDef(TypedDict):
1048
1064
  ServerId: str
@@ -1052,7 +1068,7 @@ class ImportHostKeyRequestTypeDef(TypedDict):
1052
1068
 
1053
1069
  class ListTagsForResourceResponseTypeDef(TypedDict):
1054
1070
  Arn: str
1055
- Tags: List[TagTypeDef]
1071
+ Tags: list[TagTypeDef]
1056
1072
  ResponseMetadata: ResponseMetadataTypeDef
1057
1073
  NextToken: NotRequired[str]
1058
1074
 
@@ -1078,7 +1094,7 @@ class DescribeWebAppCustomizationResponseTypeDef(TypedDict):
1078
1094
 
1079
1095
  class DescribedAccessTypeDef(TypedDict):
1080
1096
  HomeDirectory: NotRequired[str]
1081
- HomeDirectoryMappings: NotRequired[List[HomeDirectoryMapEntryTypeDef]]
1097
+ HomeDirectoryMappings: NotRequired[list[HomeDirectoryMapEntryTypeDef]]
1082
1098
  HomeDirectoryType: NotRequired[HomeDirectoryTypeType]
1083
1099
  Policy: NotRequired[str]
1084
1100
  PosixProfile: NotRequired[PosixProfileOutputTypeDef]
@@ -1094,15 +1110,18 @@ class DescribedWebAppIdentityProviderDetailsTypeDef(TypedDict):
1094
1110
  class DescribedUserTypeDef(TypedDict):
1095
1111
  Arn: str
1096
1112
  HomeDirectory: NotRequired[str]
1097
- HomeDirectoryMappings: NotRequired[List[HomeDirectoryMapEntryTypeDef]]
1113
+ HomeDirectoryMappings: NotRequired[list[HomeDirectoryMapEntryTypeDef]]
1098
1114
  HomeDirectoryType: NotRequired[HomeDirectoryTypeType]
1099
1115
  Policy: NotRequired[str]
1100
1116
  PosixProfile: NotRequired[PosixProfileOutputTypeDef]
1101
1117
  Role: NotRequired[str]
1102
- SshPublicKeys: NotRequired[List[SshPublicKeyTypeDef]]
1103
- Tags: NotRequired[List[TagTypeDef]]
1118
+ SshPublicKeys: NotRequired[list[SshPublicKeyTypeDef]]
1119
+ Tags: NotRequired[list[TagTypeDef]]
1104
1120
  UserName: NotRequired[str]
1105
1121
 
1122
+ class DescribedWebAppEndpointDetailsTypeDef(TypedDict):
1123
+ Vpc: NotRequired[DescribedWebAppVpcConfigTypeDef]
1124
+
1106
1125
  EndpointDetailsUnionTypeDef = Union[EndpointDetailsTypeDef, EndpointDetailsOutputTypeDef]
1107
1126
 
1108
1127
  class ExecutionStepResultTypeDef(TypedDict):
@@ -1186,54 +1205,54 @@ class ListWorkflowsRequestPaginateTypeDef(TypedDict):
1186
1205
 
1187
1206
  class ListAccessesResponseTypeDef(TypedDict):
1188
1207
  ServerId: str
1189
- Accesses: List[ListedAccessTypeDef]
1208
+ Accesses: list[ListedAccessTypeDef]
1190
1209
  ResponseMetadata: ResponseMetadataTypeDef
1191
1210
  NextToken: NotRequired[str]
1192
1211
 
1193
1212
  class ListAgreementsResponseTypeDef(TypedDict):
1194
- Agreements: List[ListedAgreementTypeDef]
1213
+ Agreements: list[ListedAgreementTypeDef]
1195
1214
  ResponseMetadata: ResponseMetadataTypeDef
1196
1215
  NextToken: NotRequired[str]
1197
1216
 
1198
1217
  class ListCertificatesResponseTypeDef(TypedDict):
1199
- Certificates: List[ListedCertificateTypeDef]
1218
+ Certificates: list[ListedCertificateTypeDef]
1200
1219
  ResponseMetadata: ResponseMetadataTypeDef
1201
1220
  NextToken: NotRequired[str]
1202
1221
 
1203
1222
  class ListConnectorsResponseTypeDef(TypedDict):
1204
- Connectors: List[ListedConnectorTypeDef]
1223
+ Connectors: list[ListedConnectorTypeDef]
1205
1224
  ResponseMetadata: ResponseMetadataTypeDef
1206
1225
  NextToken: NotRequired[str]
1207
1226
 
1208
1227
  class ListHostKeysResponseTypeDef(TypedDict):
1209
1228
  ServerId: str
1210
- HostKeys: List[ListedHostKeyTypeDef]
1229
+ HostKeys: list[ListedHostKeyTypeDef]
1211
1230
  ResponseMetadata: ResponseMetadataTypeDef
1212
1231
  NextToken: NotRequired[str]
1213
1232
 
1214
1233
  class ListProfilesResponseTypeDef(TypedDict):
1215
- Profiles: List[ListedProfileTypeDef]
1234
+ Profiles: list[ListedProfileTypeDef]
1216
1235
  ResponseMetadata: ResponseMetadataTypeDef
1217
1236
  NextToken: NotRequired[str]
1218
1237
 
1219
1238
  class ListServersResponseTypeDef(TypedDict):
1220
- Servers: List[ListedServerTypeDef]
1239
+ Servers: list[ListedServerTypeDef]
1221
1240
  ResponseMetadata: ResponseMetadataTypeDef
1222
1241
  NextToken: NotRequired[str]
1223
1242
 
1224
1243
  class ListUsersResponseTypeDef(TypedDict):
1225
1244
  ServerId: str
1226
- Users: List[ListedUserTypeDef]
1245
+ Users: list[ListedUserTypeDef]
1227
1246
  ResponseMetadata: ResponseMetadataTypeDef
1228
1247
  NextToken: NotRequired[str]
1229
1248
 
1230
1249
  class ListWebAppsResponseTypeDef(TypedDict):
1231
- WebApps: List[ListedWebAppTypeDef]
1250
+ WebApps: list[ListedWebAppTypeDef]
1232
1251
  ResponseMetadata: ResponseMetadataTypeDef
1233
1252
  NextToken: NotRequired[str]
1234
1253
 
1235
1254
  class ListWorkflowsResponseTypeDef(TypedDict):
1236
- Workflows: List[ListedWorkflowTypeDef]
1255
+ Workflows: list[ListedWorkflowTypeDef]
1237
1256
  ResponseMetadata: ResponseMetadataTypeDef
1238
1257
  NextToken: NotRequired[str]
1239
1258
 
@@ -1242,7 +1261,7 @@ ProtocolDetailsUnionTypeDef = Union[ProtocolDetailsTypeDef, ProtocolDetailsOutpu
1242
1261
 
1243
1262
  class TagStepDetailsOutputTypeDef(TypedDict):
1244
1263
  Name: NotRequired[str]
1245
- Tags: NotRequired[List[S3TagTypeDef]]
1264
+ Tags: NotRequired[list[S3TagTypeDef]]
1246
1265
  SourceFileLocation: NotRequired[str]
1247
1266
 
1248
1267
  class TagStepDetailsTypeDef(TypedDict):
@@ -1267,12 +1286,18 @@ class TestConnectionResponseTypeDef(TypedDict):
1267
1286
  class UpdateConnectorEgressConfigTypeDef(TypedDict):
1268
1287
  VpcLattice: NotRequired[UpdateConnectorVpcLatticeEgressConfigTypeDef]
1269
1288
 
1289
+ class UpdateWebAppEndpointDetailsTypeDef(TypedDict):
1290
+ Vpc: NotRequired[UpdateWebAppVpcConfigTypeDef]
1291
+
1270
1292
  class UpdateWebAppIdentityProviderDetailsTypeDef(TypedDict):
1271
1293
  IdentityCenterConfig: NotRequired[UpdateWebAppIdentityCenterConfigTypeDef]
1272
1294
 
1295
+ class WebAppEndpointDetailsTypeDef(TypedDict):
1296
+ Vpc: NotRequired[WebAppVpcConfigTypeDef]
1297
+
1273
1298
  class WorkflowDetailsOutputTypeDef(TypedDict):
1274
- OnUpload: NotRequired[List[WorkflowDetailTypeDef]]
1275
- OnPartialUpload: NotRequired[List[WorkflowDetailTypeDef]]
1299
+ OnUpload: NotRequired[list[WorkflowDetailTypeDef]]
1300
+ OnPartialUpload: NotRequired[list[WorkflowDetailTypeDef]]
1276
1301
 
1277
1302
  class WorkflowDetailsTypeDef(TypedDict):
1278
1303
  OnUpload: NotRequired[Sequence[WorkflowDetailTypeDef]]
@@ -1308,13 +1333,18 @@ class DescribedConnectorTypeDef(TypedDict):
1308
1333
  As2Config: NotRequired[As2ConnectorConfigTypeDef]
1309
1334
  AccessRole: NotRequired[str]
1310
1335
  LoggingRole: NotRequired[str]
1311
- Tags: NotRequired[List[TagTypeDef]]
1336
+ Tags: NotRequired[list[TagTypeDef]]
1312
1337
  SftpConfig: NotRequired[SftpConnectorConfigOutputTypeDef]
1313
- ServiceManagedEgressIpAddresses: NotRequired[List[str]]
1338
+ ServiceManagedEgressIpAddresses: NotRequired[list[str]]
1314
1339
  SecurityPolicyName: NotRequired[str]
1315
1340
  EgressConfig: NotRequired[DescribedConnectorEgressConfigTypeDef]
1316
1341
  ErrorMessage: NotRequired[str]
1317
1342
 
1343
+ class DescribeUserResponseTypeDef(TypedDict):
1344
+ ServerId: str
1345
+ User: DescribedUserTypeDef
1346
+ ResponseMetadata: ResponseMetadataTypeDef
1347
+
1318
1348
  class DescribedWebAppTypeDef(TypedDict):
1319
1349
  Arn: str
1320
1350
  WebAppId: str
@@ -1322,24 +1352,14 @@ class DescribedWebAppTypeDef(TypedDict):
1322
1352
  AccessEndpoint: NotRequired[str]
1323
1353
  WebAppEndpoint: NotRequired[str]
1324
1354
  WebAppUnits: NotRequired[WebAppUnitsTypeDef]
1325
- Tags: NotRequired[List[TagTypeDef]]
1355
+ Tags: NotRequired[list[TagTypeDef]]
1326
1356
  WebAppEndpointPolicy: NotRequired[WebAppEndpointPolicyType]
1327
-
1328
- class DescribeUserResponseTypeDef(TypedDict):
1329
- ServerId: str
1330
- User: DescribedUserTypeDef
1331
- ResponseMetadata: ResponseMetadataTypeDef
1357
+ EndpointType: NotRequired[WebAppEndpointTypeType]
1358
+ DescribedEndpointDetails: NotRequired[DescribedWebAppEndpointDetailsTypeDef]
1332
1359
 
1333
1360
  class ExecutionResultsTypeDef(TypedDict):
1334
- Steps: NotRequired[List[ExecutionStepResultTypeDef]]
1335
- OnExceptionSteps: NotRequired[List[ExecutionStepResultTypeDef]]
1336
-
1337
- class CreateWebAppRequestTypeDef(TypedDict):
1338
- IdentityProviderDetails: WebAppIdentityProviderDetailsTypeDef
1339
- AccessEndpoint: NotRequired[str]
1340
- WebAppUnits: NotRequired[WebAppUnitsTypeDef]
1341
- Tags: NotRequired[Sequence[TagTypeDef]]
1342
- WebAppEndpointPolicy: NotRequired[WebAppEndpointPolicyType]
1361
+ Steps: NotRequired[list[ExecutionStepResultTypeDef]]
1362
+ OnExceptionSteps: NotRequired[list[ExecutionStepResultTypeDef]]
1343
1363
 
1344
1364
  class CopyStepDetailsTypeDef(TypedDict):
1345
1365
  Name: NotRequired[str]
@@ -1433,6 +1453,15 @@ class UpdateWebAppRequestTypeDef(TypedDict):
1433
1453
  IdentityProviderDetails: NotRequired[UpdateWebAppIdentityProviderDetailsTypeDef]
1434
1454
  AccessEndpoint: NotRequired[str]
1435
1455
  WebAppUnits: NotRequired[WebAppUnitsTypeDef]
1456
+ EndpointDetails: NotRequired[UpdateWebAppEndpointDetailsTypeDef]
1457
+
1458
+ class CreateWebAppRequestTypeDef(TypedDict):
1459
+ IdentityProviderDetails: WebAppIdentityProviderDetailsTypeDef
1460
+ AccessEndpoint: NotRequired[str]
1461
+ WebAppUnits: NotRequired[WebAppUnitsTypeDef]
1462
+ Tags: NotRequired[Sequence[TagTypeDef]]
1463
+ WebAppEndpointPolicy: NotRequired[WebAppEndpointPolicyType]
1464
+ EndpointDetails: NotRequired[WebAppEndpointDetailsTypeDef]
1436
1465
 
1437
1466
  class DescribedServerTypeDef(TypedDict):
1438
1467
  Arn: str
@@ -1447,16 +1476,16 @@ class DescribedServerTypeDef(TypedDict):
1447
1476
  LoggingRole: NotRequired[str]
1448
1477
  PostAuthenticationLoginBanner: NotRequired[str]
1449
1478
  PreAuthenticationLoginBanner: NotRequired[str]
1450
- Protocols: NotRequired[List[ProtocolType]]
1479
+ Protocols: NotRequired[list[ProtocolType]]
1451
1480
  SecurityPolicyName: NotRequired[str]
1452
1481
  ServerId: NotRequired[str]
1453
1482
  State: NotRequired[StateType]
1454
- Tags: NotRequired[List[TagTypeDef]]
1483
+ Tags: NotRequired[list[TagTypeDef]]
1455
1484
  UserCount: NotRequired[int]
1456
1485
  WorkflowDetails: NotRequired[WorkflowDetailsOutputTypeDef]
1457
- StructuredLogDestinations: NotRequired[List[str]]
1486
+ StructuredLogDestinations: NotRequired[list[str]]
1458
1487
  S3StorageOptions: NotRequired[S3StorageOptionsTypeDef]
1459
- As2ServiceManagedEgressIpAddresses: NotRequired[List[str]]
1488
+ As2ServiceManagedEgressIpAddresses: NotRequired[list[str]]
1460
1489
  IpAddressType: NotRequired[IpAddressTypeType]
1461
1490
 
1462
1491
  WorkflowDetailsUnionTypeDef = Union[WorkflowDetailsTypeDef, WorkflowDetailsOutputTypeDef]
@@ -1504,7 +1533,7 @@ WorkflowStepTypeDef = TypedDict(
1504
1533
 
1505
1534
  class ListExecutionsResponseTypeDef(TypedDict):
1506
1535
  WorkflowId: str
1507
- Executions: List[ListedExecutionTypeDef]
1536
+ Executions: list[ListedExecutionTypeDef]
1508
1537
  ResponseMetadata: ResponseMetadataTypeDef
1509
1538
  NextToken: NotRequired[str]
1510
1539
 
@@ -1559,10 +1588,10 @@ class DescribeExecutionResponseTypeDef(TypedDict):
1559
1588
  class DescribedWorkflowTypeDef(TypedDict):
1560
1589
  Arn: str
1561
1590
  Description: NotRequired[str]
1562
- Steps: NotRequired[List[WorkflowStepOutputTypeDef]]
1563
- OnExceptionSteps: NotRequired[List[WorkflowStepOutputTypeDef]]
1591
+ Steps: NotRequired[list[WorkflowStepOutputTypeDef]]
1592
+ OnExceptionSteps: NotRequired[list[WorkflowStepOutputTypeDef]]
1564
1593
  WorkflowId: NotRequired[str]
1565
- Tags: NotRequired[List[TagTypeDef]]
1594
+ Tags: NotRequired[list[TagTypeDef]]
1566
1595
 
1567
1596
  WorkflowStepUnionTypeDef = Union[WorkflowStepTypeDef, WorkflowStepOutputTypeDef]
1568
1597
 
@@ -4,4 +4,4 @@ Source of truth for version.
4
4
  Copyright 2025 Vlad Emelianov
5
5
  """
6
6
 
7
- __version__ = "1.40.52"
7
+ __version__ = "1.41.2"
@@ -1,23 +1,21 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mypy-boto3-transfer
3
- Version: 1.40.52
4
- Summary: Type annotations for boto3 Transfer 1.40.52 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.2
4
+ Summary: Type annotations for boto3 Transfer 1.41.2 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.52](https://pypi.org/project/boto3/)
45
+ Type annotations for [boto3 Transfer 1.41.2](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.52' mypy-boto3-builder`
108
+ `uvx --with 'boto3==1.41.2' 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=Pi23jtKmc8g41x-akUWG1ABhGFo-XKS9buzyyyjiNFQ,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=gsTuv_FTwIPJx_95x2Csv0EQT7q4X3U4UxG1tQ7SSws,15150
7
+ mypy_boto3_transfer/literals.pyi,sha256=jNkMmBcdf3JN2ciWjPF1NtdurnEkE2lrWuPqqL9ZRB4,15148
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=624OG65i_7EszBrBdunLeK1f7tPGus8BzyzhounIWwQ,52762
12
+ mypy_boto3_transfer/type_defs.pyi,sha256=mCQQ9DnQCs0CEbssuVBOv1wgmlhimvGq1Izjp7Jj6lI,52528
13
+ mypy_boto3_transfer/version.py,sha256=aLKGJmxodYlE7i2btZqBdcB8RTTGw1f6JzSmoqyix3w,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.2.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
17
+ mypy_boto3_transfer-1.41.2.dist-info/METADATA,sha256=NEO-bhJaq7q6MEhPQdFlD8fH5e6X4YUnemlZgU6VMz4,16840
18
+ mypy_boto3_transfer-1.41.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
19
+ mypy_boto3_transfer-1.41.2.dist-info/top_level.txt,sha256=mncof3SzY8eCafPLvBkKLLXMmqfJaw-PB_gBYRhC-Kk,20
20
+ mypy_boto3_transfer-1.41.2.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=Tf1RjRemuKy8ikTEFUTYnEhHV627qJy7FDkdwclhB7k,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=cs4yhZbf9Qoru4t5IPfLcldpQ1CcnPdb3MI0ZWrC7KQ,15076
7
- mypy_boto3_transfer/literals.pyi,sha256=gZPDvfdnCzwCxn8-lbmc615BbISNyEcl6VPts2Awq6g,15074
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=TNE9McgB3AG0uAgun2QkTFOmSM4biEQwi35Uod2-8a8,51627
12
- mypy_boto3_transfer/type_defs.pyi,sha256=jC5-m1sop_37x50vi-lNUVLprxgNubdzevTissN1ASQ,51399
13
- mypy_boto3_transfer/version.py,sha256=0k8Fn1_CJYltqJpGrEl30b_7OF3YNwqVfohrQCBE4dA,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.52.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
17
- mypy_boto3_transfer-1.40.52.dist-info/METADATA,sha256=mZEbNF-tQgIsnQlR8shRjVT7aoyda70X2DJ1apF0wJo,17175
18
- mypy_boto3_transfer-1.40.52.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
19
- mypy_boto3_transfer-1.40.52.dist-info/top_level.txt,sha256=mncof3SzY8eCafPLvBkKLLXMmqfJaw-PB_gBYRhC-Kk,20
20
- mypy_boto3_transfer-1.40.52.dist-info/RECORD,,