mypy-boto3-transfer 1.34.89__py3-none-any.whl → 1.35.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.
@@ -96,7 +96,11 @@ __all__ = (
96
96
  "WaiterConfigTypeDef",
97
97
  "DescribeUserRequestRequestTypeDef",
98
98
  "DescribeWorkflowRequestRequestTypeDef",
99
+ "PosixProfileOutputTypeDef",
100
+ "SftpConnectorConfigOutputTypeDef",
99
101
  "LoggingConfigurationTypeDef",
102
+ "EndpointDetailsOutputTypeDef",
103
+ "ProtocolDetailsOutputTypeDef",
100
104
  "SshPublicKeyTypeDef",
101
105
  "EfsFileLocationTypeDef",
102
106
  "ExecutionErrorTypeDef",
@@ -141,7 +145,6 @@ __all__ = (
141
145
  "UpdateProfileRequestRequestTypeDef",
142
146
  "WorkflowDetailTypeDef",
143
147
  "CreateAccessRequestRequestTypeDef",
144
- "DescribedAccessTypeDef",
145
148
  "UpdateAccessRequestRequestTypeDef",
146
149
  "UpdateUserRequestRequestTypeDef",
147
150
  "CreateAccessResponseTypeDef",
@@ -179,11 +182,16 @@ __all__ = (
179
182
  "ListTagsForResourceResponseTypeDef",
180
183
  "TagResourceRequestRequestTypeDef",
181
184
  "CreateConnectorRequestRequestTypeDef",
182
- "DescribedConnectorTypeDef",
183
185
  "UpdateConnectorRequestRequestTypeDef",
184
186
  "DescribeSecurityPolicyResponseTypeDef",
185
187
  "DescribeServerRequestServerOfflineWaitTypeDef",
186
188
  "DescribeServerRequestServerOnlineWaitTypeDef",
189
+ "DescribedAccessTypeDef",
190
+ "PosixProfileUnionTypeDef",
191
+ "DescribedConnectorTypeDef",
192
+ "SftpConnectorConfigUnionTypeDef",
193
+ "EndpointDetailsUnionTypeDef",
194
+ "ProtocolDetailsUnionTypeDef",
187
195
  "DescribedUserTypeDef",
188
196
  "ExecutionStepResultTypeDef",
189
197
  "FileLocationTypeDef",
@@ -210,31 +218,36 @@ __all__ = (
210
218
  "ListServersResponseTypeDef",
211
219
  "ListUsersResponseTypeDef",
212
220
  "ListWorkflowsResponseTypeDef",
221
+ "TagStepDetailsOutputTypeDef",
213
222
  "TagStepDetailsTypeDef",
214
223
  "ServiceMetadataTypeDef",
224
+ "WorkflowDetailsOutputTypeDef",
215
225
  "WorkflowDetailsTypeDef",
216
- "DescribeAccessResponseTypeDef",
217
226
  "DescribeAgreementResponseTypeDef",
218
227
  "DescribeCertificateResponseTypeDef",
219
228
  "DescribeHostKeyResponseTypeDef",
220
229
  "DescribeProfileResponseTypeDef",
230
+ "DescribeAccessResponseTypeDef",
221
231
  "DescribeConnectorResponseTypeDef",
222
232
  "DescribeUserResponseTypeDef",
223
233
  "ExecutionResultsTypeDef",
224
234
  "CopyStepDetailsTypeDef",
225
235
  "DecryptStepDetailsTypeDef",
226
236
  "ListedExecutionTypeDef",
227
- "CreateServerRequestRequestTypeDef",
228
237
  "DescribedServerTypeDef",
238
+ "CreateServerRequestRequestTypeDef",
229
239
  "UpdateServerRequestRequestTypeDef",
240
+ "WorkflowDetailsUnionTypeDef",
230
241
  "DescribedExecutionTypeDef",
242
+ "WorkflowStepOutputTypeDef",
231
243
  "WorkflowStepTypeDef",
232
244
  "ListExecutionsResponseTypeDef",
233
245
  "DescribeServerResponseTypeDef",
234
246
  "DescribeExecutionResponseTypeDef",
235
- "CreateWorkflowRequestRequestTypeDef",
236
247
  "DescribedWorkflowTypeDef",
248
+ "WorkflowStepUnionTypeDef",
237
249
  "DescribeWorkflowResponseTypeDef",
250
+ "CreateWorkflowRequestRequestTypeDef",
238
251
  )
239
252
 
240
253
  As2ConnectorConfigTypeDef = TypedDict(
@@ -500,6 +513,21 @@ DescribeWorkflowRequestRequestTypeDef = TypedDict(
500
513
  "WorkflowId": str,
501
514
  },
502
515
  )
516
+ PosixProfileOutputTypeDef = TypedDict(
517
+ "PosixProfileOutputTypeDef",
518
+ {
519
+ "Uid": int,
520
+ "Gid": int,
521
+ "SecondaryGids": NotRequired[List[int]],
522
+ },
523
+ )
524
+ SftpConnectorConfigOutputTypeDef = TypedDict(
525
+ "SftpConnectorConfigOutputTypeDef",
526
+ {
527
+ "UserSecretId": NotRequired[str],
528
+ "TrustedHostKeys": NotRequired[List[str]],
529
+ },
530
+ )
503
531
  LoggingConfigurationTypeDef = TypedDict(
504
532
  "LoggingConfigurationTypeDef",
505
533
  {
@@ -507,6 +535,25 @@ LoggingConfigurationTypeDef = TypedDict(
507
535
  "LogGroupName": NotRequired[str],
508
536
  },
509
537
  )
538
+ EndpointDetailsOutputTypeDef = TypedDict(
539
+ "EndpointDetailsOutputTypeDef",
540
+ {
541
+ "AddressAllocationIds": NotRequired[List[str]],
542
+ "SubnetIds": NotRequired[List[str]],
543
+ "VpcEndpointId": NotRequired[str],
544
+ "VpcId": NotRequired[str],
545
+ "SecurityGroupIds": NotRequired[List[str]],
546
+ },
547
+ )
548
+ ProtocolDetailsOutputTypeDef = TypedDict(
549
+ "ProtocolDetailsOutputTypeDef",
550
+ {
551
+ "PassiveIp": NotRequired[str],
552
+ "TlsSessionResumptionMode": NotRequired[TlsSessionResumptionModeType],
553
+ "SetStatOption": NotRequired[SetStatOptionType],
554
+ "As2Transports": NotRequired[List[Literal["HTTP"]]],
555
+ },
556
+ )
510
557
  SshPublicKeyTypeDef = TypedDict(
511
558
  "SshPublicKeyTypeDef",
512
559
  {
@@ -873,18 +920,6 @@ CreateAccessRequestRequestTypeDef = TypedDict(
873
920
  "PosixProfile": NotRequired[PosixProfileTypeDef],
874
921
  },
875
922
  )
876
- DescribedAccessTypeDef = TypedDict(
877
- "DescribedAccessTypeDef",
878
- {
879
- "HomeDirectory": NotRequired[str],
880
- "HomeDirectoryMappings": NotRequired[List[HomeDirectoryMapEntryTypeDef]],
881
- "HomeDirectoryType": NotRequired[HomeDirectoryTypeType],
882
- "Policy": NotRequired[str],
883
- "PosixProfile": NotRequired[PosixProfileTypeDef],
884
- "Role": NotRequired[str],
885
- "ExternalId": NotRequired[str],
886
- },
887
- )
888
923
  UpdateAccessRequestRequestTypeDef = TypedDict(
889
924
  "UpdateAccessRequestRequestTypeDef",
890
925
  {
@@ -995,9 +1030,9 @@ ImportSshPublicKeyResponseTypeDef = TypedDict(
995
1030
  ListSecurityPoliciesResponseTypeDef = TypedDict(
996
1031
  "ListSecurityPoliciesResponseTypeDef",
997
1032
  {
998
- "NextToken": str,
999
1033
  "SecurityPolicyNames": List[str],
1000
1034
  "ResponseMetadata": ResponseMetadataTypeDef,
1035
+ "NextToken": NotRequired[str],
1001
1036
  },
1002
1037
  )
1003
1038
  StartDirectoryListingResponseTypeDef = TypedDict(
@@ -1200,9 +1235,9 @@ ListTagsForResourceResponseTypeDef = TypedDict(
1200
1235
  "ListTagsForResourceResponseTypeDef",
1201
1236
  {
1202
1237
  "Arn": str,
1203
- "NextToken": str,
1204
1238
  "Tags": List[TagTypeDef],
1205
1239
  "ResponseMetadata": ResponseMetadataTypeDef,
1240
+ "NextToken": NotRequired[str],
1206
1241
  },
1207
1242
  )
1208
1243
  TagResourceRequestRequestTypeDef = TypedDict(
@@ -1224,21 +1259,6 @@ CreateConnectorRequestRequestTypeDef = TypedDict(
1224
1259
  "SecurityPolicyName": NotRequired[str],
1225
1260
  },
1226
1261
  )
1227
- DescribedConnectorTypeDef = TypedDict(
1228
- "DescribedConnectorTypeDef",
1229
- {
1230
- "Arn": str,
1231
- "ConnectorId": NotRequired[str],
1232
- "Url": NotRequired[str],
1233
- "As2Config": NotRequired[As2ConnectorConfigTypeDef],
1234
- "AccessRole": NotRequired[str],
1235
- "LoggingRole": NotRequired[str],
1236
- "Tags": NotRequired[List[TagTypeDef]],
1237
- "SftpConfig": NotRequired[SftpConnectorConfigTypeDef],
1238
- "ServiceManagedEgressIpAddresses": NotRequired[List[str]],
1239
- "SecurityPolicyName": NotRequired[str],
1240
- },
1241
- )
1242
1262
  UpdateConnectorRequestRequestTypeDef = TypedDict(
1243
1263
  "UpdateConnectorRequestRequestTypeDef",
1244
1264
  {
@@ -1272,6 +1292,39 @@ DescribeServerRequestServerOnlineWaitTypeDef = TypedDict(
1272
1292
  "WaiterConfig": NotRequired[WaiterConfigTypeDef],
1273
1293
  },
1274
1294
  )
1295
+ DescribedAccessTypeDef = TypedDict(
1296
+ "DescribedAccessTypeDef",
1297
+ {
1298
+ "HomeDirectory": NotRequired[str],
1299
+ "HomeDirectoryMappings": NotRequired[List[HomeDirectoryMapEntryTypeDef]],
1300
+ "HomeDirectoryType": NotRequired[HomeDirectoryTypeType],
1301
+ "Policy": NotRequired[str],
1302
+ "PosixProfile": NotRequired[PosixProfileOutputTypeDef],
1303
+ "Role": NotRequired[str],
1304
+ "ExternalId": NotRequired[str],
1305
+ },
1306
+ )
1307
+ PosixProfileUnionTypeDef = Union[PosixProfileTypeDef, PosixProfileOutputTypeDef]
1308
+ DescribedConnectorTypeDef = TypedDict(
1309
+ "DescribedConnectorTypeDef",
1310
+ {
1311
+ "Arn": str,
1312
+ "ConnectorId": NotRequired[str],
1313
+ "Url": NotRequired[str],
1314
+ "As2Config": NotRequired[As2ConnectorConfigTypeDef],
1315
+ "AccessRole": NotRequired[str],
1316
+ "LoggingRole": NotRequired[str],
1317
+ "Tags": NotRequired[List[TagTypeDef]],
1318
+ "SftpConfig": NotRequired[SftpConnectorConfigOutputTypeDef],
1319
+ "ServiceManagedEgressIpAddresses": NotRequired[List[str]],
1320
+ "SecurityPolicyName": NotRequired[str],
1321
+ },
1322
+ )
1323
+ SftpConnectorConfigUnionTypeDef = Union[
1324
+ SftpConnectorConfigTypeDef, SftpConnectorConfigOutputTypeDef
1325
+ ]
1326
+ EndpointDetailsUnionTypeDef = Union[EndpointDetailsTypeDef, EndpointDetailsOutputTypeDef]
1327
+ ProtocolDetailsUnionTypeDef = Union[ProtocolDetailsTypeDef, ProtocolDetailsOutputTypeDef]
1275
1328
  DescribedUserTypeDef = TypedDict(
1276
1329
  "DescribedUserTypeDef",
1277
1330
  {
@@ -1280,7 +1333,7 @@ DescribedUserTypeDef = TypedDict(
1280
1333
  "HomeDirectoryMappings": NotRequired[List[HomeDirectoryMapEntryTypeDef]],
1281
1334
  "HomeDirectoryType": NotRequired[HomeDirectoryTypeType],
1282
1335
  "Policy": NotRequired[str],
1283
- "PosixProfile": NotRequired[PosixProfileTypeDef],
1336
+ "PosixProfile": NotRequired[PosixProfileOutputTypeDef],
1284
1337
  "Role": NotRequired[str],
1285
1338
  "SshPublicKeys": NotRequired[List[SshPublicKeyTypeDef]],
1286
1339
  "Tags": NotRequired[List[TagTypeDef]],
@@ -1406,76 +1459,84 @@ ListWorkflowsRequestListWorkflowsPaginateTypeDef = TypedDict(
1406
1459
  ListAccessesResponseTypeDef = TypedDict(
1407
1460
  "ListAccessesResponseTypeDef",
1408
1461
  {
1409
- "NextToken": str,
1410
1462
  "ServerId": str,
1411
1463
  "Accesses": List[ListedAccessTypeDef],
1412
1464
  "ResponseMetadata": ResponseMetadataTypeDef,
1465
+ "NextToken": NotRequired[str],
1413
1466
  },
1414
1467
  )
1415
1468
  ListAgreementsResponseTypeDef = TypedDict(
1416
1469
  "ListAgreementsResponseTypeDef",
1417
1470
  {
1418
- "NextToken": str,
1419
1471
  "Agreements": List[ListedAgreementTypeDef],
1420
1472
  "ResponseMetadata": ResponseMetadataTypeDef,
1473
+ "NextToken": NotRequired[str],
1421
1474
  },
1422
1475
  )
1423
1476
  ListCertificatesResponseTypeDef = TypedDict(
1424
1477
  "ListCertificatesResponseTypeDef",
1425
1478
  {
1426
- "NextToken": str,
1427
1479
  "Certificates": List[ListedCertificateTypeDef],
1428
1480
  "ResponseMetadata": ResponseMetadataTypeDef,
1481
+ "NextToken": NotRequired[str],
1429
1482
  },
1430
1483
  )
1431
1484
  ListConnectorsResponseTypeDef = TypedDict(
1432
1485
  "ListConnectorsResponseTypeDef",
1433
1486
  {
1434
- "NextToken": str,
1435
1487
  "Connectors": List[ListedConnectorTypeDef],
1436
1488
  "ResponseMetadata": ResponseMetadataTypeDef,
1489
+ "NextToken": NotRequired[str],
1437
1490
  },
1438
1491
  )
1439
1492
  ListHostKeysResponseTypeDef = TypedDict(
1440
1493
  "ListHostKeysResponseTypeDef",
1441
1494
  {
1442
- "NextToken": str,
1443
1495
  "ServerId": str,
1444
1496
  "HostKeys": List[ListedHostKeyTypeDef],
1445
1497
  "ResponseMetadata": ResponseMetadataTypeDef,
1498
+ "NextToken": NotRequired[str],
1446
1499
  },
1447
1500
  )
1448
1501
  ListProfilesResponseTypeDef = TypedDict(
1449
1502
  "ListProfilesResponseTypeDef",
1450
1503
  {
1451
- "NextToken": str,
1452
1504
  "Profiles": List[ListedProfileTypeDef],
1453
1505
  "ResponseMetadata": ResponseMetadataTypeDef,
1506
+ "NextToken": NotRequired[str],
1454
1507
  },
1455
1508
  )
1456
1509
  ListServersResponseTypeDef = TypedDict(
1457
1510
  "ListServersResponseTypeDef",
1458
1511
  {
1459
- "NextToken": str,
1460
1512
  "Servers": List[ListedServerTypeDef],
1461
1513
  "ResponseMetadata": ResponseMetadataTypeDef,
1514
+ "NextToken": NotRequired[str],
1462
1515
  },
1463
1516
  )
1464
1517
  ListUsersResponseTypeDef = TypedDict(
1465
1518
  "ListUsersResponseTypeDef",
1466
1519
  {
1467
- "NextToken": str,
1468
1520
  "ServerId": str,
1469
1521
  "Users": List[ListedUserTypeDef],
1470
1522
  "ResponseMetadata": ResponseMetadataTypeDef,
1523
+ "NextToken": NotRequired[str],
1471
1524
  },
1472
1525
  )
1473
1526
  ListWorkflowsResponseTypeDef = TypedDict(
1474
1527
  "ListWorkflowsResponseTypeDef",
1475
1528
  {
1476
- "NextToken": str,
1477
1529
  "Workflows": List[ListedWorkflowTypeDef],
1478
1530
  "ResponseMetadata": ResponseMetadataTypeDef,
1531
+ "NextToken": NotRequired[str],
1532
+ },
1533
+ )
1534
+ TagStepDetailsOutputTypeDef = TypedDict(
1535
+ "TagStepDetailsOutputTypeDef",
1536
+ {
1537
+ "Name": NotRequired[str],
1538
+ "Tags": NotRequired[List[S3TagTypeDef]],
1539
+ "SourceFileLocation": NotRequired[str],
1479
1540
  },
1480
1541
  )
1481
1542
  TagStepDetailsTypeDef = TypedDict(
@@ -1492,6 +1553,13 @@ ServiceMetadataTypeDef = TypedDict(
1492
1553
  "UserDetails": UserDetailsTypeDef,
1493
1554
  },
1494
1555
  )
1556
+ WorkflowDetailsOutputTypeDef = TypedDict(
1557
+ "WorkflowDetailsOutputTypeDef",
1558
+ {
1559
+ "OnUpload": NotRequired[List[WorkflowDetailTypeDef]],
1560
+ "OnPartialUpload": NotRequired[List[WorkflowDetailTypeDef]],
1561
+ },
1562
+ )
1495
1563
  WorkflowDetailsTypeDef = TypedDict(
1496
1564
  "WorkflowDetailsTypeDef",
1497
1565
  {
@@ -1499,14 +1567,6 @@ WorkflowDetailsTypeDef = TypedDict(
1499
1567
  "OnPartialUpload": NotRequired[Sequence[WorkflowDetailTypeDef]],
1500
1568
  },
1501
1569
  )
1502
- DescribeAccessResponseTypeDef = TypedDict(
1503
- "DescribeAccessResponseTypeDef",
1504
- {
1505
- "ServerId": str,
1506
- "Access": DescribedAccessTypeDef,
1507
- "ResponseMetadata": ResponseMetadataTypeDef,
1508
- },
1509
- )
1510
1570
  DescribeAgreementResponseTypeDef = TypedDict(
1511
1571
  "DescribeAgreementResponseTypeDef",
1512
1572
  {
@@ -1535,6 +1595,14 @@ DescribeProfileResponseTypeDef = TypedDict(
1535
1595
  "ResponseMetadata": ResponseMetadataTypeDef,
1536
1596
  },
1537
1597
  )
1598
+ DescribeAccessResponseTypeDef = TypedDict(
1599
+ "DescribeAccessResponseTypeDef",
1600
+ {
1601
+ "ServerId": str,
1602
+ "Access": DescribedAccessTypeDef,
1603
+ "ResponseMetadata": ResponseMetadataTypeDef,
1604
+ },
1605
+ )
1538
1606
  DescribeConnectorResponseTypeDef = TypedDict(
1539
1607
  "DescribeConnectorResponseTypeDef",
1540
1608
  {
@@ -1585,53 +1653,53 @@ ListedExecutionTypeDef = TypedDict(
1585
1653
  "Status": NotRequired[ExecutionStatusType],
1586
1654
  },
1587
1655
  )
1588
- CreateServerRequestRequestTypeDef = TypedDict(
1589
- "CreateServerRequestRequestTypeDef",
1656
+ DescribedServerTypeDef = TypedDict(
1657
+ "DescribedServerTypeDef",
1590
1658
  {
1659
+ "Arn": str,
1591
1660
  "Certificate": NotRequired[str],
1661
+ "ProtocolDetails": NotRequired[ProtocolDetailsOutputTypeDef],
1592
1662
  "Domain": NotRequired[DomainType],
1593
- "EndpointDetails": NotRequired[EndpointDetailsTypeDef],
1663
+ "EndpointDetails": NotRequired[EndpointDetailsOutputTypeDef],
1594
1664
  "EndpointType": NotRequired[EndpointTypeType],
1595
- "HostKey": NotRequired[str],
1665
+ "HostKeyFingerprint": NotRequired[str],
1596
1666
  "IdentityProviderDetails": NotRequired[IdentityProviderDetailsTypeDef],
1597
1667
  "IdentityProviderType": NotRequired[IdentityProviderTypeType],
1598
1668
  "LoggingRole": NotRequired[str],
1599
1669
  "PostAuthenticationLoginBanner": NotRequired[str],
1600
1670
  "PreAuthenticationLoginBanner": NotRequired[str],
1601
- "Protocols": NotRequired[Sequence[ProtocolType]],
1602
- "ProtocolDetails": NotRequired[ProtocolDetailsTypeDef],
1671
+ "Protocols": NotRequired[List[ProtocolType]],
1603
1672
  "SecurityPolicyName": NotRequired[str],
1604
- "Tags": NotRequired[Sequence[TagTypeDef]],
1605
- "WorkflowDetails": NotRequired[WorkflowDetailsTypeDef],
1606
- "StructuredLogDestinations": NotRequired[Sequence[str]],
1673
+ "ServerId": NotRequired[str],
1674
+ "State": NotRequired[StateType],
1675
+ "Tags": NotRequired[List[TagTypeDef]],
1676
+ "UserCount": NotRequired[int],
1677
+ "WorkflowDetails": NotRequired[WorkflowDetailsOutputTypeDef],
1678
+ "StructuredLogDestinations": NotRequired[List[str]],
1607
1679
  "S3StorageOptions": NotRequired[S3StorageOptionsTypeDef],
1680
+ "As2ServiceManagedEgressIpAddresses": NotRequired[List[str]],
1608
1681
  },
1609
1682
  )
1610
- DescribedServerTypeDef = TypedDict(
1611
- "DescribedServerTypeDef",
1683
+ CreateServerRequestRequestTypeDef = TypedDict(
1684
+ "CreateServerRequestRequestTypeDef",
1612
1685
  {
1613
- "Arn": str,
1614
1686
  "Certificate": NotRequired[str],
1615
- "ProtocolDetails": NotRequired[ProtocolDetailsTypeDef],
1616
1687
  "Domain": NotRequired[DomainType],
1617
1688
  "EndpointDetails": NotRequired[EndpointDetailsTypeDef],
1618
1689
  "EndpointType": NotRequired[EndpointTypeType],
1619
- "HostKeyFingerprint": NotRequired[str],
1690
+ "HostKey": NotRequired[str],
1620
1691
  "IdentityProviderDetails": NotRequired[IdentityProviderDetailsTypeDef],
1621
1692
  "IdentityProviderType": NotRequired[IdentityProviderTypeType],
1622
1693
  "LoggingRole": NotRequired[str],
1623
1694
  "PostAuthenticationLoginBanner": NotRequired[str],
1624
1695
  "PreAuthenticationLoginBanner": NotRequired[str],
1625
- "Protocols": NotRequired[List[ProtocolType]],
1696
+ "Protocols": NotRequired[Sequence[ProtocolType]],
1697
+ "ProtocolDetails": NotRequired[ProtocolDetailsTypeDef],
1626
1698
  "SecurityPolicyName": NotRequired[str],
1627
- "ServerId": NotRequired[str],
1628
- "State": NotRequired[StateType],
1629
- "Tags": NotRequired[List[TagTypeDef]],
1630
- "UserCount": NotRequired[int],
1699
+ "Tags": NotRequired[Sequence[TagTypeDef]],
1631
1700
  "WorkflowDetails": NotRequired[WorkflowDetailsTypeDef],
1632
- "StructuredLogDestinations": NotRequired[List[str]],
1701
+ "StructuredLogDestinations": NotRequired[Sequence[str]],
1633
1702
  "S3StorageOptions": NotRequired[S3StorageOptionsTypeDef],
1634
- "As2ServiceManagedEgressIpAddresses": NotRequired[List[str]],
1635
1703
  },
1636
1704
  )
1637
1705
  UpdateServerRequestRequestTypeDef = TypedDict(
@@ -1654,6 +1722,7 @@ UpdateServerRequestRequestTypeDef = TypedDict(
1654
1722
  "S3StorageOptions": NotRequired[S3StorageOptionsTypeDef],
1655
1723
  },
1656
1724
  )
1725
+ WorkflowDetailsUnionTypeDef = Union[WorkflowDetailsTypeDef, WorkflowDetailsOutputTypeDef]
1657
1726
  DescribedExecutionTypeDef = TypedDict(
1658
1727
  "DescribedExecutionTypeDef",
1659
1728
  {
@@ -1662,11 +1731,22 @@ DescribedExecutionTypeDef = TypedDict(
1662
1731
  "ServiceMetadata": NotRequired[ServiceMetadataTypeDef],
1663
1732
  "ExecutionRole": NotRequired[str],
1664
1733
  "LoggingConfiguration": NotRequired[LoggingConfigurationTypeDef],
1665
- "PosixProfile": NotRequired[PosixProfileTypeDef],
1734
+ "PosixProfile": NotRequired[PosixProfileOutputTypeDef],
1666
1735
  "Status": NotRequired[ExecutionStatusType],
1667
1736
  "Results": NotRequired[ExecutionResultsTypeDef],
1668
1737
  },
1669
1738
  )
1739
+ WorkflowStepOutputTypeDef = TypedDict(
1740
+ "WorkflowStepOutputTypeDef",
1741
+ {
1742
+ "Type": NotRequired[WorkflowStepTypeType],
1743
+ "CopyStepDetails": NotRequired[CopyStepDetailsTypeDef],
1744
+ "CustomStepDetails": NotRequired[CustomStepDetailsTypeDef],
1745
+ "DeleteStepDetails": NotRequired[DeleteStepDetailsTypeDef],
1746
+ "TagStepDetails": NotRequired[TagStepDetailsOutputTypeDef],
1747
+ "DecryptStepDetails": NotRequired[DecryptStepDetailsTypeDef],
1748
+ },
1749
+ )
1670
1750
  WorkflowStepTypeDef = TypedDict(
1671
1751
  "WorkflowStepTypeDef",
1672
1752
  {
@@ -1681,10 +1761,10 @@ WorkflowStepTypeDef = TypedDict(
1681
1761
  ListExecutionsResponseTypeDef = TypedDict(
1682
1762
  "ListExecutionsResponseTypeDef",
1683
1763
  {
1684
- "NextToken": str,
1685
1764
  "WorkflowId": str,
1686
1765
  "Executions": List[ListedExecutionTypeDef],
1687
1766
  "ResponseMetadata": ResponseMetadataTypeDef,
1767
+ "NextToken": NotRequired[str],
1688
1768
  },
1689
1769
  )
1690
1770
  DescribeServerResponseTypeDef = TypedDict(
@@ -1702,26 +1782,18 @@ DescribeExecutionResponseTypeDef = TypedDict(
1702
1782
  "ResponseMetadata": ResponseMetadataTypeDef,
1703
1783
  },
1704
1784
  )
1705
- CreateWorkflowRequestRequestTypeDef = TypedDict(
1706
- "CreateWorkflowRequestRequestTypeDef",
1707
- {
1708
- "Steps": Sequence[WorkflowStepTypeDef],
1709
- "Description": NotRequired[str],
1710
- "OnExceptionSteps": NotRequired[Sequence[WorkflowStepTypeDef]],
1711
- "Tags": NotRequired[Sequence[TagTypeDef]],
1712
- },
1713
- )
1714
1785
  DescribedWorkflowTypeDef = TypedDict(
1715
1786
  "DescribedWorkflowTypeDef",
1716
1787
  {
1717
1788
  "Arn": str,
1718
1789
  "Description": NotRequired[str],
1719
- "Steps": NotRequired[List[WorkflowStepTypeDef]],
1720
- "OnExceptionSteps": NotRequired[List[WorkflowStepTypeDef]],
1790
+ "Steps": NotRequired[List[WorkflowStepOutputTypeDef]],
1791
+ "OnExceptionSteps": NotRequired[List[WorkflowStepOutputTypeDef]],
1721
1792
  "WorkflowId": NotRequired[str],
1722
1793
  "Tags": NotRequired[List[TagTypeDef]],
1723
1794
  },
1724
1795
  )
1796
+ WorkflowStepUnionTypeDef = Union[WorkflowStepTypeDef, WorkflowStepOutputTypeDef]
1725
1797
  DescribeWorkflowResponseTypeDef = TypedDict(
1726
1798
  "DescribeWorkflowResponseTypeDef",
1727
1799
  {
@@ -1729,3 +1801,12 @@ DescribeWorkflowResponseTypeDef = TypedDict(
1729
1801
  "ResponseMetadata": ResponseMetadataTypeDef,
1730
1802
  },
1731
1803
  )
1804
+ CreateWorkflowRequestRequestTypeDef = TypedDict(
1805
+ "CreateWorkflowRequestRequestTypeDef",
1806
+ {
1807
+ "Steps": Sequence[WorkflowStepUnionTypeDef],
1808
+ "Description": NotRequired[str],
1809
+ "OnExceptionSteps": NotRequired[Sequence[WorkflowStepUnionTypeDef]],
1810
+ "Tags": NotRequired[Sequence[TagTypeDef]],
1811
+ },
1812
+ )