localstack-core 4.10.1.dev7__py3-none-any.whl → 4.10.1.dev42__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.
- localstack/aws/api/acm/__init__.py +122 -122
- localstack/aws/api/apigateway/__init__.py +560 -559
- localstack/aws/api/cloudcontrol/__init__.py +63 -63
- localstack/aws/api/cloudformation/__init__.py +1040 -969
- localstack/aws/api/cloudwatch/__init__.py +375 -375
- localstack/aws/api/config/__init__.py +784 -786
- localstack/aws/api/dynamodb/__init__.py +753 -759
- localstack/aws/api/dynamodbstreams/__init__.py +74 -74
- localstack/aws/api/ec2/__init__.py +8901 -8818
- localstack/aws/api/es/__init__.py +453 -453
- localstack/aws/api/events/__init__.py +552 -552
- localstack/aws/api/firehose/__init__.py +541 -543
- localstack/aws/api/iam/__init__.py +639 -572
- localstack/aws/api/kinesis/__init__.py +235 -147
- localstack/aws/api/kms/__init__.py +340 -336
- localstack/aws/api/lambda_/__init__.py +574 -573
- localstack/aws/api/logs/__init__.py +676 -675
- localstack/aws/api/opensearch/__init__.py +814 -785
- localstack/aws/api/pipes/__init__.py +336 -336
- localstack/aws/api/redshift/__init__.py +1188 -1166
- localstack/aws/api/resource_groups/__init__.py +175 -175
- localstack/aws/api/resourcegroupstaggingapi/__init__.py +67 -67
- localstack/aws/api/route53/__init__.py +254 -254
- localstack/aws/api/route53resolver/__init__.py +396 -396
- localstack/aws/api/s3/__init__.py +1350 -1349
- localstack/aws/api/s3control/__init__.py +594 -594
- localstack/aws/api/scheduler/__init__.py +118 -118
- localstack/aws/api/secretsmanager/__init__.py +193 -193
- localstack/aws/api/ses/__init__.py +227 -227
- localstack/aws/api/sns/__init__.py +115 -115
- localstack/aws/api/sqs/__init__.py +100 -100
- localstack/aws/api/ssm/__init__.py +1977 -1971
- localstack/aws/api/stepfunctions/__init__.py +323 -323
- localstack/aws/api/sts/__init__.py +90 -66
- localstack/aws/api/support/__init__.py +112 -112
- localstack/aws/api/swf/__init__.py +378 -386
- localstack/aws/api/transcribe/__init__.py +425 -425
- localstack/aws/handlers/service.py +11 -1
- localstack/aws/protocol/parser.py +1 -1
- localstack/aws/scaffold.py +15 -17
- localstack/cli/localstack.py +6 -1
- localstack/dev/kubernetes/__main__.py +38 -3
- localstack/services/apigateway/helpers.py +5 -9
- localstack/services/apigateway/legacy/provider.py +32 -9
- localstack/services/apigateway/patches.py +0 -9
- localstack/services/cloudformation/provider.py +2 -2
- localstack/services/cloudformation/v2/provider.py +6 -6
- localstack/services/kinesis/packages.py +1 -1
- localstack/services/kms/models.py +34 -4
- localstack/services/kms/provider.py +93 -16
- localstack/services/lambda_/api_utils.py +3 -1
- localstack/services/lambda_/packages.py +1 -1
- localstack/services/lambda_/provider.py +1 -1
- localstack/services/lambda_/runtimes.py +8 -3
- localstack/services/logs/provider.py +36 -19
- localstack/services/s3/provider.py +1 -1
- localstack/services/sns/v2/models.py +24 -1
- localstack/services/sns/v2/provider.py +144 -12
- localstack/services/sns/v2/utils.py +8 -0
- localstack/services/sqs/models.py +37 -10
- localstack/testing/snapshots/transformer_utility.py +2 -0
- localstack/testing/testselection/matching.py +0 -1
- localstack/utils/aws/client_types.py +0 -8
- localstack/utils/catalog/catalog_loader.py +111 -3
- localstack/utils/crypto.py +109 -0
- localstack/version.py +2 -2
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.10.1.dev42.dist-info}/METADATA +6 -5
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.10.1.dev42.dist-info}/RECORD +76 -76
- localstack_core-4.10.1.dev42.dist-info/plux.json +1 -0
- localstack_core-4.10.1.dev7.dist-info/plux.json +0 -1
- {localstack_core-4.10.1.dev7.data → localstack_core-4.10.1.dev42.data}/scripts/localstack +0 -0
- {localstack_core-4.10.1.dev7.data → localstack_core-4.10.1.dev42.data}/scripts/localstack-supervisor +0 -0
- {localstack_core-4.10.1.dev7.data → localstack_core-4.10.1.dev42.data}/scripts/localstack.bat +0 -0
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.10.1.dev42.dist-info}/WHEEL +0 -0
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.10.1.dev42.dist-info}/entry_points.txt +0 -0
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.10.1.dev42.dist-info}/licenses/LICENSE.txt +0 -0
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.10.1.dev42.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
from datetime import datetime
|
|
2
2
|
from enum import StrEnum
|
|
3
|
-
from typing import
|
|
3
|
+
from typing import TypedDict
|
|
4
4
|
|
|
5
5
|
from localstack.aws.api import RequestContext, ServiceException, ServiceRequest, handler
|
|
6
6
|
|
|
@@ -342,7 +342,7 @@ class KmsInvalidStateException(ServiceException):
|
|
|
342
342
|
code: str = "KmsInvalidStateException"
|
|
343
343
|
sender_fault: bool = False
|
|
344
344
|
status_code: int = 400
|
|
345
|
-
kmsKeyState:
|
|
345
|
+
kmsKeyState: KmsKeyState | None
|
|
346
346
|
|
|
347
347
|
|
|
348
348
|
class KmsThrottlingException(ServiceException):
|
|
@@ -361,7 +361,7 @@ class ResourceNotFound(ServiceException):
|
|
|
361
361
|
code: str = "ResourceNotFound"
|
|
362
362
|
sender_fault: bool = False
|
|
363
363
|
status_code: int = 400
|
|
364
|
-
resourceName:
|
|
364
|
+
resourceName: Arn | None
|
|
365
365
|
|
|
366
366
|
|
|
367
367
|
class ServiceQuotaExceededException(ServiceException):
|
|
@@ -416,19 +416,19 @@ class TooManyTags(ServiceException):
|
|
|
416
416
|
code: str = "TooManyTags"
|
|
417
417
|
sender_fault: bool = False
|
|
418
418
|
status_code: int = 400
|
|
419
|
-
resourceName:
|
|
419
|
+
resourceName: Arn | None
|
|
420
420
|
|
|
421
421
|
|
|
422
422
|
class ValidationException(ServiceException):
|
|
423
423
|
code: str = "ValidationException"
|
|
424
424
|
sender_fault: bool = False
|
|
425
425
|
status_code: int = 400
|
|
426
|
-
reason:
|
|
426
|
+
reason: ValidationExceptionReason | None
|
|
427
427
|
|
|
428
428
|
|
|
429
429
|
class ActivityFailedEventDetails(TypedDict, total=False):
|
|
430
|
-
error:
|
|
431
|
-
cause:
|
|
430
|
+
error: SensitiveError | None
|
|
431
|
+
cause: SensitiveCause | None
|
|
432
432
|
|
|
433
433
|
|
|
434
434
|
Timestamp = datetime
|
|
@@ -440,48 +440,48 @@ class ActivityListItem(TypedDict, total=False):
|
|
|
440
440
|
creationDate: Timestamp
|
|
441
441
|
|
|
442
442
|
|
|
443
|
-
ActivityList =
|
|
443
|
+
ActivityList = list[ActivityListItem]
|
|
444
444
|
|
|
445
445
|
|
|
446
446
|
class ActivityScheduleFailedEventDetails(TypedDict, total=False):
|
|
447
|
-
error:
|
|
448
|
-
cause:
|
|
447
|
+
error: SensitiveError | None
|
|
448
|
+
cause: SensitiveCause | None
|
|
449
449
|
|
|
450
450
|
|
|
451
451
|
TimeoutInSeconds = int
|
|
452
452
|
|
|
453
453
|
|
|
454
454
|
class HistoryEventExecutionDataDetails(TypedDict, total=False):
|
|
455
|
-
truncated:
|
|
455
|
+
truncated: truncated | None
|
|
456
456
|
|
|
457
457
|
|
|
458
458
|
class ActivityScheduledEventDetails(TypedDict, total=False):
|
|
459
459
|
resource: Arn
|
|
460
|
-
input:
|
|
461
|
-
inputDetails:
|
|
462
|
-
timeoutInSeconds:
|
|
463
|
-
heartbeatInSeconds:
|
|
460
|
+
input: SensitiveData | None
|
|
461
|
+
inputDetails: HistoryEventExecutionDataDetails | None
|
|
462
|
+
timeoutInSeconds: TimeoutInSeconds | None
|
|
463
|
+
heartbeatInSeconds: TimeoutInSeconds | None
|
|
464
464
|
|
|
465
465
|
|
|
466
466
|
class ActivityStartedEventDetails(TypedDict, total=False):
|
|
467
|
-
workerName:
|
|
467
|
+
workerName: Identity | None
|
|
468
468
|
|
|
469
469
|
|
|
470
470
|
class ActivitySucceededEventDetails(TypedDict, total=False):
|
|
471
|
-
output:
|
|
472
|
-
outputDetails:
|
|
471
|
+
output: SensitiveData | None
|
|
472
|
+
outputDetails: HistoryEventExecutionDataDetails | None
|
|
473
473
|
|
|
474
474
|
|
|
475
475
|
class ActivityTimedOutEventDetails(TypedDict, total=False):
|
|
476
|
-
error:
|
|
477
|
-
cause:
|
|
476
|
+
error: SensitiveError | None
|
|
477
|
+
cause: SensitiveCause | None
|
|
478
478
|
|
|
479
479
|
|
|
480
|
-
AssignedVariables =
|
|
480
|
+
AssignedVariables = dict[VariableName, VariableValue]
|
|
481
481
|
|
|
482
482
|
|
|
483
483
|
class AssignedVariablesDetails(TypedDict, total=False):
|
|
484
|
-
truncated:
|
|
484
|
+
truncated: truncated | None
|
|
485
485
|
|
|
486
486
|
|
|
487
487
|
BilledDuration = int
|
|
@@ -489,36 +489,36 @@ BilledMemoryUsed = int
|
|
|
489
489
|
|
|
490
490
|
|
|
491
491
|
class BillingDetails(TypedDict, total=False):
|
|
492
|
-
billedMemoryUsedInMB:
|
|
493
|
-
billedDurationInMilliseconds:
|
|
492
|
+
billedMemoryUsedInMB: BilledMemoryUsed | None
|
|
493
|
+
billedDurationInMilliseconds: BilledDuration | None
|
|
494
494
|
|
|
495
495
|
|
|
496
496
|
class CloudWatchEventsExecutionDataDetails(TypedDict, total=False):
|
|
497
|
-
included:
|
|
497
|
+
included: includedDetails | None
|
|
498
498
|
|
|
499
499
|
|
|
500
500
|
class CloudWatchLogsLogGroup(TypedDict, total=False):
|
|
501
|
-
logGroupArn:
|
|
501
|
+
logGroupArn: Arn | None
|
|
502
502
|
|
|
503
503
|
|
|
504
504
|
class EncryptionConfiguration(TypedDict, total=False):
|
|
505
|
-
kmsKeyId:
|
|
506
|
-
kmsDataKeyReusePeriodSeconds:
|
|
505
|
+
kmsKeyId: KmsKeyId | None
|
|
506
|
+
kmsDataKeyReusePeriodSeconds: KmsDataKeyReusePeriodSeconds | None
|
|
507
507
|
type: EncryptionType
|
|
508
508
|
|
|
509
509
|
|
|
510
510
|
class Tag(TypedDict, total=False):
|
|
511
|
-
key:
|
|
512
|
-
value:
|
|
511
|
+
key: TagKey | None
|
|
512
|
+
value: TagValue | None
|
|
513
513
|
|
|
514
514
|
|
|
515
|
-
TagList =
|
|
515
|
+
TagList = list[Tag]
|
|
516
516
|
|
|
517
517
|
|
|
518
518
|
class CreateActivityInput(ServiceRequest):
|
|
519
519
|
name: Name
|
|
520
|
-
tags:
|
|
521
|
-
encryptionConfiguration:
|
|
520
|
+
tags: TagList | None
|
|
521
|
+
encryptionConfiguration: EncryptionConfiguration | None
|
|
522
522
|
|
|
523
523
|
|
|
524
524
|
class CreateActivityOutput(TypedDict, total=False):
|
|
@@ -531,11 +531,11 @@ class RoutingConfigurationListItem(TypedDict, total=False):
|
|
|
531
531
|
weight: VersionWeight
|
|
532
532
|
|
|
533
533
|
|
|
534
|
-
RoutingConfigurationList =
|
|
534
|
+
RoutingConfigurationList = list[RoutingConfigurationListItem]
|
|
535
535
|
|
|
536
536
|
|
|
537
537
|
class CreateStateMachineAliasInput(ServiceRequest):
|
|
538
|
-
description:
|
|
538
|
+
description: AliasDescription | None
|
|
539
539
|
name: CharacterRestrictedName
|
|
540
540
|
routingConfiguration: RoutingConfigurationList
|
|
541
541
|
|
|
@@ -546,39 +546,39 @@ class CreateStateMachineAliasOutput(TypedDict, total=False):
|
|
|
546
546
|
|
|
547
547
|
|
|
548
548
|
class TracingConfiguration(TypedDict, total=False):
|
|
549
|
-
enabled:
|
|
549
|
+
enabled: Enabled | None
|
|
550
550
|
|
|
551
551
|
|
|
552
552
|
class LogDestination(TypedDict, total=False):
|
|
553
|
-
cloudWatchLogsLogGroup:
|
|
553
|
+
cloudWatchLogsLogGroup: CloudWatchLogsLogGroup | None
|
|
554
554
|
|
|
555
555
|
|
|
556
|
-
LogDestinationList =
|
|
556
|
+
LogDestinationList = list[LogDestination]
|
|
557
557
|
|
|
558
558
|
|
|
559
559
|
class LoggingConfiguration(TypedDict, total=False):
|
|
560
|
-
level:
|
|
561
|
-
includeExecutionData:
|
|
562
|
-
destinations:
|
|
560
|
+
level: LogLevel | None
|
|
561
|
+
includeExecutionData: IncludeExecutionData | None
|
|
562
|
+
destinations: LogDestinationList | None
|
|
563
563
|
|
|
564
564
|
|
|
565
565
|
class CreateStateMachineInput(TypedDict, total=False):
|
|
566
566
|
name: Name
|
|
567
567
|
definition: Definition
|
|
568
568
|
roleArn: Arn
|
|
569
|
-
type:
|
|
570
|
-
loggingConfiguration:
|
|
571
|
-
tags:
|
|
572
|
-
tracingConfiguration:
|
|
573
|
-
publish:
|
|
574
|
-
versionDescription:
|
|
575
|
-
encryptionConfiguration:
|
|
569
|
+
type: StateMachineType | None
|
|
570
|
+
loggingConfiguration: LoggingConfiguration | None
|
|
571
|
+
tags: TagList | None
|
|
572
|
+
tracingConfiguration: TracingConfiguration | None
|
|
573
|
+
publish: Publish | None
|
|
574
|
+
versionDescription: VersionDescription | None
|
|
575
|
+
encryptionConfiguration: EncryptionConfiguration | None
|
|
576
576
|
|
|
577
577
|
|
|
578
578
|
class CreateStateMachineOutput(TypedDict, total=False):
|
|
579
579
|
stateMachineArn: Arn
|
|
580
580
|
creationDate: Timestamp
|
|
581
|
-
stateMachineVersionArn:
|
|
581
|
+
stateMachineVersionArn: Arn | None
|
|
582
582
|
|
|
583
583
|
|
|
584
584
|
class DeleteActivityInput(ServiceRequest):
|
|
@@ -621,35 +621,35 @@ class DescribeActivityOutput(TypedDict, total=False):
|
|
|
621
621
|
activityArn: Arn
|
|
622
622
|
name: Name
|
|
623
623
|
creationDate: Timestamp
|
|
624
|
-
encryptionConfiguration:
|
|
624
|
+
encryptionConfiguration: EncryptionConfiguration | None
|
|
625
625
|
|
|
626
626
|
|
|
627
627
|
class DescribeExecutionInput(ServiceRequest):
|
|
628
628
|
executionArn: Arn
|
|
629
|
-
includedData:
|
|
629
|
+
includedData: IncludedData | None
|
|
630
630
|
|
|
631
631
|
|
|
632
632
|
class DescribeExecutionOutput(TypedDict, total=False):
|
|
633
633
|
executionArn: Arn
|
|
634
634
|
stateMachineArn: Arn
|
|
635
|
-
name:
|
|
635
|
+
name: Name | None
|
|
636
636
|
status: ExecutionStatus
|
|
637
637
|
startDate: Timestamp
|
|
638
|
-
stopDate:
|
|
639
|
-
input:
|
|
640
|
-
inputDetails:
|
|
641
|
-
output:
|
|
642
|
-
outputDetails:
|
|
643
|
-
traceHeader:
|
|
644
|
-
mapRunArn:
|
|
645
|
-
error:
|
|
646
|
-
cause:
|
|
647
|
-
stateMachineVersionArn:
|
|
648
|
-
stateMachineAliasArn:
|
|
649
|
-
redriveCount:
|
|
650
|
-
redriveDate:
|
|
651
|
-
redriveStatus:
|
|
652
|
-
redriveStatusReason:
|
|
638
|
+
stopDate: Timestamp | None
|
|
639
|
+
input: SensitiveData | None
|
|
640
|
+
inputDetails: CloudWatchEventsExecutionDataDetails | None
|
|
641
|
+
output: SensitiveData | None
|
|
642
|
+
outputDetails: CloudWatchEventsExecutionDataDetails | None
|
|
643
|
+
traceHeader: TraceHeader | None
|
|
644
|
+
mapRunArn: LongArn | None
|
|
645
|
+
error: SensitiveError | None
|
|
646
|
+
cause: SensitiveCause | None
|
|
647
|
+
stateMachineVersionArn: Arn | None
|
|
648
|
+
stateMachineAliasArn: Arn | None
|
|
649
|
+
redriveCount: RedriveCount | None
|
|
650
|
+
redriveDate: Timestamp | None
|
|
651
|
+
redriveStatus: ExecutionRedriveStatus | None
|
|
652
|
+
redriveStatusReason: SensitiveData | None
|
|
653
653
|
|
|
654
654
|
|
|
655
655
|
class DescribeMapRunInput(ServiceRequest):
|
|
@@ -669,8 +669,8 @@ class MapRunExecutionCounts(TypedDict, total=False):
|
|
|
669
669
|
aborted: UnsignedLong
|
|
670
670
|
total: UnsignedLong
|
|
671
671
|
resultsWritten: UnsignedLong
|
|
672
|
-
failuresNotRedrivable:
|
|
673
|
-
pendingRedrive:
|
|
672
|
+
failuresNotRedrivable: LongObject | None
|
|
673
|
+
pendingRedrive: LongObject | None
|
|
674
674
|
|
|
675
675
|
|
|
676
676
|
class MapRunItemCounts(TypedDict, total=False):
|
|
@@ -682,8 +682,8 @@ class MapRunItemCounts(TypedDict, total=False):
|
|
|
682
682
|
aborted: UnsignedLong
|
|
683
683
|
total: UnsignedLong
|
|
684
684
|
resultsWritten: UnsignedLong
|
|
685
|
-
failuresNotRedrivable:
|
|
686
|
-
pendingRedrive:
|
|
685
|
+
failuresNotRedrivable: LongObject | None
|
|
686
|
+
pendingRedrive: LongObject | None
|
|
687
687
|
|
|
688
688
|
|
|
689
689
|
ToleratedFailureCount = int
|
|
@@ -694,14 +694,14 @@ class DescribeMapRunOutput(TypedDict, total=False):
|
|
|
694
694
|
executionArn: Arn
|
|
695
695
|
status: MapRunStatus
|
|
696
696
|
startDate: Timestamp
|
|
697
|
-
stopDate:
|
|
697
|
+
stopDate: Timestamp | None
|
|
698
698
|
maxConcurrency: MaxConcurrency
|
|
699
699
|
toleratedFailurePercentage: ToleratedFailurePercentage
|
|
700
700
|
toleratedFailureCount: ToleratedFailureCount
|
|
701
701
|
itemCounts: MapRunItemCounts
|
|
702
702
|
executionCounts: MapRunExecutionCounts
|
|
703
|
-
redriveCount:
|
|
704
|
-
redriveDate:
|
|
703
|
+
redriveCount: RedriveCount | None
|
|
704
|
+
redriveDate: Timestamp | None
|
|
705
705
|
|
|
706
706
|
|
|
707
707
|
class DescribeStateMachineAliasInput(ServiceRequest):
|
|
@@ -709,21 +709,21 @@ class DescribeStateMachineAliasInput(ServiceRequest):
|
|
|
709
709
|
|
|
710
710
|
|
|
711
711
|
class DescribeStateMachineAliasOutput(TypedDict, total=False):
|
|
712
|
-
stateMachineAliasArn:
|
|
713
|
-
name:
|
|
714
|
-
description:
|
|
715
|
-
routingConfiguration:
|
|
716
|
-
creationDate:
|
|
717
|
-
updateDate:
|
|
712
|
+
stateMachineAliasArn: Arn | None
|
|
713
|
+
name: Name | None
|
|
714
|
+
description: AliasDescription | None
|
|
715
|
+
routingConfiguration: RoutingConfigurationList | None
|
|
716
|
+
creationDate: Timestamp | None
|
|
717
|
+
updateDate: Timestamp | None
|
|
718
718
|
|
|
719
719
|
|
|
720
720
|
class DescribeStateMachineForExecutionInput(ServiceRequest):
|
|
721
721
|
executionArn: Arn
|
|
722
|
-
includedData:
|
|
722
|
+
includedData: IncludedData | None
|
|
723
723
|
|
|
724
724
|
|
|
725
|
-
VariableNameList =
|
|
726
|
-
VariableReferences =
|
|
725
|
+
VariableNameList = list[VariableName]
|
|
726
|
+
VariableReferences = dict[StateName, VariableNameList]
|
|
727
727
|
|
|
728
728
|
|
|
729
729
|
class DescribeStateMachineForExecutionOutput(TypedDict, total=False):
|
|
@@ -732,41 +732,41 @@ class DescribeStateMachineForExecutionOutput(TypedDict, total=False):
|
|
|
732
732
|
definition: Definition
|
|
733
733
|
roleArn: Arn
|
|
734
734
|
updateDate: Timestamp
|
|
735
|
-
loggingConfiguration:
|
|
736
|
-
tracingConfiguration:
|
|
737
|
-
mapRunArn:
|
|
738
|
-
label:
|
|
739
|
-
revisionId:
|
|
740
|
-
encryptionConfiguration:
|
|
741
|
-
variableReferences:
|
|
735
|
+
loggingConfiguration: LoggingConfiguration | None
|
|
736
|
+
tracingConfiguration: TracingConfiguration | None
|
|
737
|
+
mapRunArn: LongArn | None
|
|
738
|
+
label: MapRunLabel | None
|
|
739
|
+
revisionId: RevisionId | None
|
|
740
|
+
encryptionConfiguration: EncryptionConfiguration | None
|
|
741
|
+
variableReferences: VariableReferences | None
|
|
742
742
|
|
|
743
743
|
|
|
744
744
|
class DescribeStateMachineInput(ServiceRequest):
|
|
745
745
|
stateMachineArn: Arn
|
|
746
|
-
includedData:
|
|
746
|
+
includedData: IncludedData | None
|
|
747
747
|
|
|
748
748
|
|
|
749
749
|
class DescribeStateMachineOutput(TypedDict, total=False):
|
|
750
750
|
stateMachineArn: Arn
|
|
751
751
|
name: Name
|
|
752
|
-
status:
|
|
752
|
+
status: StateMachineStatus | None
|
|
753
753
|
definition: Definition
|
|
754
754
|
roleArn: Arn
|
|
755
755
|
type: StateMachineType
|
|
756
756
|
creationDate: Timestamp
|
|
757
|
-
loggingConfiguration:
|
|
758
|
-
tracingConfiguration:
|
|
759
|
-
label:
|
|
760
|
-
revisionId:
|
|
761
|
-
description:
|
|
762
|
-
encryptionConfiguration:
|
|
763
|
-
variableReferences:
|
|
757
|
+
loggingConfiguration: LoggingConfiguration | None
|
|
758
|
+
tracingConfiguration: TracingConfiguration | None
|
|
759
|
+
label: MapRunLabel | None
|
|
760
|
+
revisionId: RevisionId | None
|
|
761
|
+
description: VersionDescription | None
|
|
762
|
+
encryptionConfiguration: EncryptionConfiguration | None
|
|
763
|
+
variableReferences: VariableReferences | None
|
|
764
764
|
|
|
765
765
|
|
|
766
766
|
class EvaluationFailedEventDetails(TypedDict, total=False):
|
|
767
|
-
error:
|
|
768
|
-
cause:
|
|
769
|
-
location:
|
|
767
|
+
error: SensitiveError | None
|
|
768
|
+
cause: SensitiveCause | None
|
|
769
|
+
location: EvaluationFailureLocation | None
|
|
770
770
|
state: StateName
|
|
771
771
|
|
|
772
772
|
|
|
@@ -774,13 +774,13 @@ EventId = int
|
|
|
774
774
|
|
|
775
775
|
|
|
776
776
|
class ExecutionAbortedEventDetails(TypedDict, total=False):
|
|
777
|
-
error:
|
|
778
|
-
cause:
|
|
777
|
+
error: SensitiveError | None
|
|
778
|
+
cause: SensitiveCause | None
|
|
779
779
|
|
|
780
780
|
|
|
781
781
|
class ExecutionFailedEventDetails(TypedDict, total=False):
|
|
782
|
-
error:
|
|
783
|
-
cause:
|
|
782
|
+
error: SensitiveError | None
|
|
783
|
+
cause: SensitiveCause | None
|
|
784
784
|
|
|
785
785
|
|
|
786
786
|
class ExecutionListItem(TypedDict, total=False):
|
|
@@ -789,158 +789,158 @@ class ExecutionListItem(TypedDict, total=False):
|
|
|
789
789
|
name: Name
|
|
790
790
|
status: ExecutionStatus
|
|
791
791
|
startDate: Timestamp
|
|
792
|
-
stopDate:
|
|
793
|
-
mapRunArn:
|
|
794
|
-
itemCount:
|
|
795
|
-
stateMachineVersionArn:
|
|
796
|
-
stateMachineAliasArn:
|
|
797
|
-
redriveCount:
|
|
798
|
-
redriveDate:
|
|
792
|
+
stopDate: Timestamp | None
|
|
793
|
+
mapRunArn: LongArn | None
|
|
794
|
+
itemCount: UnsignedInteger | None
|
|
795
|
+
stateMachineVersionArn: Arn | None
|
|
796
|
+
stateMachineAliasArn: Arn | None
|
|
797
|
+
redriveCount: RedriveCount | None
|
|
798
|
+
redriveDate: Timestamp | None
|
|
799
799
|
|
|
800
800
|
|
|
801
|
-
ExecutionList =
|
|
801
|
+
ExecutionList = list[ExecutionListItem]
|
|
802
802
|
|
|
803
803
|
|
|
804
804
|
class ExecutionRedrivenEventDetails(TypedDict, total=False):
|
|
805
|
-
redriveCount:
|
|
805
|
+
redriveCount: RedriveCount | None
|
|
806
806
|
|
|
807
807
|
|
|
808
808
|
class ExecutionStartedEventDetails(TypedDict, total=False):
|
|
809
|
-
input:
|
|
810
|
-
inputDetails:
|
|
811
|
-
roleArn:
|
|
812
|
-
stateMachineAliasArn:
|
|
813
|
-
stateMachineVersionArn:
|
|
809
|
+
input: SensitiveData | None
|
|
810
|
+
inputDetails: HistoryEventExecutionDataDetails | None
|
|
811
|
+
roleArn: Arn | None
|
|
812
|
+
stateMachineAliasArn: Arn | None
|
|
813
|
+
stateMachineVersionArn: Arn | None
|
|
814
814
|
|
|
815
815
|
|
|
816
816
|
class ExecutionSucceededEventDetails(TypedDict, total=False):
|
|
817
|
-
output:
|
|
818
|
-
outputDetails:
|
|
817
|
+
output: SensitiveData | None
|
|
818
|
+
outputDetails: HistoryEventExecutionDataDetails | None
|
|
819
819
|
|
|
820
820
|
|
|
821
821
|
class ExecutionTimedOutEventDetails(TypedDict, total=False):
|
|
822
|
-
error:
|
|
823
|
-
cause:
|
|
822
|
+
error: SensitiveError | None
|
|
823
|
+
cause: SensitiveCause | None
|
|
824
824
|
|
|
825
825
|
|
|
826
826
|
class GetActivityTaskInput(ServiceRequest):
|
|
827
827
|
activityArn: Arn
|
|
828
|
-
workerName:
|
|
828
|
+
workerName: Name | None
|
|
829
829
|
|
|
830
830
|
|
|
831
831
|
class GetActivityTaskOutput(TypedDict, total=False):
|
|
832
|
-
taskToken:
|
|
833
|
-
input:
|
|
832
|
+
taskToken: TaskToken | None
|
|
833
|
+
input: SensitiveDataJobInput | None
|
|
834
834
|
|
|
835
835
|
|
|
836
836
|
class GetExecutionHistoryInput(ServiceRequest):
|
|
837
837
|
executionArn: Arn
|
|
838
|
-
maxResults:
|
|
839
|
-
reverseOrder:
|
|
840
|
-
nextToken:
|
|
841
|
-
includeExecutionData:
|
|
838
|
+
maxResults: PageSize | None
|
|
839
|
+
reverseOrder: ReverseOrder | None
|
|
840
|
+
nextToken: PageToken | None
|
|
841
|
+
includeExecutionData: IncludeExecutionDataGetExecutionHistory | None
|
|
842
842
|
|
|
843
843
|
|
|
844
844
|
class MapRunRedrivenEventDetails(TypedDict, total=False):
|
|
845
|
-
mapRunArn:
|
|
846
|
-
redriveCount:
|
|
845
|
+
mapRunArn: LongArn | None
|
|
846
|
+
redriveCount: RedriveCount | None
|
|
847
847
|
|
|
848
848
|
|
|
849
849
|
class MapRunFailedEventDetails(TypedDict, total=False):
|
|
850
|
-
error:
|
|
851
|
-
cause:
|
|
850
|
+
error: SensitiveError | None
|
|
851
|
+
cause: SensitiveCause | None
|
|
852
852
|
|
|
853
853
|
|
|
854
854
|
class MapRunStartedEventDetails(TypedDict, total=False):
|
|
855
|
-
mapRunArn:
|
|
855
|
+
mapRunArn: LongArn | None
|
|
856
856
|
|
|
857
857
|
|
|
858
858
|
class StateExitedEventDetails(TypedDict, total=False):
|
|
859
859
|
name: Name
|
|
860
|
-
output:
|
|
861
|
-
outputDetails:
|
|
862
|
-
assignedVariables:
|
|
863
|
-
assignedVariablesDetails:
|
|
860
|
+
output: SensitiveData | None
|
|
861
|
+
outputDetails: HistoryEventExecutionDataDetails | None
|
|
862
|
+
assignedVariables: AssignedVariables | None
|
|
863
|
+
assignedVariablesDetails: AssignedVariablesDetails | None
|
|
864
864
|
|
|
865
865
|
|
|
866
866
|
class StateEnteredEventDetails(TypedDict, total=False):
|
|
867
867
|
name: Name
|
|
868
|
-
input:
|
|
869
|
-
inputDetails:
|
|
868
|
+
input: SensitiveData | None
|
|
869
|
+
inputDetails: HistoryEventExecutionDataDetails | None
|
|
870
870
|
|
|
871
871
|
|
|
872
872
|
class LambdaFunctionTimedOutEventDetails(TypedDict, total=False):
|
|
873
|
-
error:
|
|
874
|
-
cause:
|
|
873
|
+
error: SensitiveError | None
|
|
874
|
+
cause: SensitiveCause | None
|
|
875
875
|
|
|
876
876
|
|
|
877
877
|
class LambdaFunctionSucceededEventDetails(TypedDict, total=False):
|
|
878
|
-
output:
|
|
879
|
-
outputDetails:
|
|
878
|
+
output: SensitiveData | None
|
|
879
|
+
outputDetails: HistoryEventExecutionDataDetails | None
|
|
880
880
|
|
|
881
881
|
|
|
882
882
|
class LambdaFunctionStartFailedEventDetails(TypedDict, total=False):
|
|
883
|
-
error:
|
|
884
|
-
cause:
|
|
883
|
+
error: SensitiveError | None
|
|
884
|
+
cause: SensitiveCause | None
|
|
885
885
|
|
|
886
886
|
|
|
887
887
|
class TaskCredentials(TypedDict, total=False):
|
|
888
|
-
roleArn:
|
|
888
|
+
roleArn: LongArn | None
|
|
889
889
|
|
|
890
890
|
|
|
891
891
|
class LambdaFunctionScheduledEventDetails(TypedDict, total=False):
|
|
892
892
|
resource: Arn
|
|
893
|
-
input:
|
|
894
|
-
inputDetails:
|
|
895
|
-
timeoutInSeconds:
|
|
896
|
-
taskCredentials:
|
|
893
|
+
input: SensitiveData | None
|
|
894
|
+
inputDetails: HistoryEventExecutionDataDetails | None
|
|
895
|
+
timeoutInSeconds: TimeoutInSeconds | None
|
|
896
|
+
taskCredentials: TaskCredentials | None
|
|
897
897
|
|
|
898
898
|
|
|
899
899
|
class LambdaFunctionScheduleFailedEventDetails(TypedDict, total=False):
|
|
900
|
-
error:
|
|
901
|
-
cause:
|
|
900
|
+
error: SensitiveError | None
|
|
901
|
+
cause: SensitiveCause | None
|
|
902
902
|
|
|
903
903
|
|
|
904
904
|
class LambdaFunctionFailedEventDetails(TypedDict, total=False):
|
|
905
|
-
error:
|
|
906
|
-
cause:
|
|
905
|
+
error: SensitiveError | None
|
|
906
|
+
cause: SensitiveCause | None
|
|
907
907
|
|
|
908
908
|
|
|
909
909
|
class MapIterationEventDetails(TypedDict, total=False):
|
|
910
|
-
name:
|
|
911
|
-
index:
|
|
910
|
+
name: Name | None
|
|
911
|
+
index: UnsignedInteger | None
|
|
912
912
|
|
|
913
913
|
|
|
914
914
|
class MapStateStartedEventDetails(TypedDict, total=False):
|
|
915
|
-
length:
|
|
915
|
+
length: UnsignedInteger | None
|
|
916
916
|
|
|
917
917
|
|
|
918
918
|
class TaskTimedOutEventDetails(TypedDict, total=False):
|
|
919
919
|
resourceType: Name
|
|
920
920
|
resource: Name
|
|
921
|
-
error:
|
|
922
|
-
cause:
|
|
921
|
+
error: SensitiveError | None
|
|
922
|
+
cause: SensitiveCause | None
|
|
923
923
|
|
|
924
924
|
|
|
925
925
|
class TaskSucceededEventDetails(TypedDict, total=False):
|
|
926
926
|
resourceType: Name
|
|
927
927
|
resource: Name
|
|
928
|
-
output:
|
|
929
|
-
outputDetails:
|
|
928
|
+
output: SensitiveData | None
|
|
929
|
+
outputDetails: HistoryEventExecutionDataDetails | None
|
|
930
930
|
|
|
931
931
|
|
|
932
932
|
class TaskSubmittedEventDetails(TypedDict, total=False):
|
|
933
933
|
resourceType: Name
|
|
934
934
|
resource: Name
|
|
935
|
-
output:
|
|
936
|
-
outputDetails:
|
|
935
|
+
output: SensitiveData | None
|
|
936
|
+
outputDetails: HistoryEventExecutionDataDetails | None
|
|
937
937
|
|
|
938
938
|
|
|
939
939
|
class TaskSubmitFailedEventDetails(TypedDict, total=False):
|
|
940
940
|
resourceType: Name
|
|
941
941
|
resource: Name
|
|
942
|
-
error:
|
|
943
|
-
cause:
|
|
942
|
+
error: SensitiveError | None
|
|
943
|
+
cause: SensitiveCause | None
|
|
944
944
|
|
|
945
945
|
|
|
946
946
|
class TaskStartedEventDetails(TypedDict, total=False):
|
|
@@ -951,8 +951,8 @@ class TaskStartedEventDetails(TypedDict, total=False):
|
|
|
951
951
|
class TaskStartFailedEventDetails(TypedDict, total=False):
|
|
952
952
|
resourceType: Name
|
|
953
953
|
resource: Name
|
|
954
|
-
error:
|
|
955
|
-
cause:
|
|
954
|
+
error: SensitiveError | None
|
|
955
|
+
cause: SensitiveCause | None
|
|
956
956
|
|
|
957
957
|
|
|
958
958
|
class TaskScheduledEventDetails(TypedDict, total=False):
|
|
@@ -960,127 +960,127 @@ class TaskScheduledEventDetails(TypedDict, total=False):
|
|
|
960
960
|
resource: Name
|
|
961
961
|
region: Name
|
|
962
962
|
parameters: ConnectorParameters
|
|
963
|
-
timeoutInSeconds:
|
|
964
|
-
heartbeatInSeconds:
|
|
965
|
-
taskCredentials:
|
|
963
|
+
timeoutInSeconds: TimeoutInSeconds | None
|
|
964
|
+
heartbeatInSeconds: TimeoutInSeconds | None
|
|
965
|
+
taskCredentials: TaskCredentials | None
|
|
966
966
|
|
|
967
967
|
|
|
968
968
|
class TaskFailedEventDetails(TypedDict, total=False):
|
|
969
969
|
resourceType: Name
|
|
970
970
|
resource: Name
|
|
971
|
-
error:
|
|
972
|
-
cause:
|
|
971
|
+
error: SensitiveError | None
|
|
972
|
+
cause: SensitiveCause | None
|
|
973
973
|
|
|
974
974
|
|
|
975
975
|
class HistoryEvent(TypedDict, total=False):
|
|
976
976
|
timestamp: Timestamp
|
|
977
977
|
type: HistoryEventType
|
|
978
978
|
id: EventId
|
|
979
|
-
previousEventId:
|
|
980
|
-
activityFailedEventDetails:
|
|
981
|
-
activityScheduleFailedEventDetails:
|
|
982
|
-
activityScheduledEventDetails:
|
|
983
|
-
activityStartedEventDetails:
|
|
984
|
-
activitySucceededEventDetails:
|
|
985
|
-
activityTimedOutEventDetails:
|
|
986
|
-
taskFailedEventDetails:
|
|
987
|
-
taskScheduledEventDetails:
|
|
988
|
-
taskStartFailedEventDetails:
|
|
989
|
-
taskStartedEventDetails:
|
|
990
|
-
taskSubmitFailedEventDetails:
|
|
991
|
-
taskSubmittedEventDetails:
|
|
992
|
-
taskSucceededEventDetails:
|
|
993
|
-
taskTimedOutEventDetails:
|
|
994
|
-
executionFailedEventDetails:
|
|
995
|
-
executionStartedEventDetails:
|
|
996
|
-
executionSucceededEventDetails:
|
|
997
|
-
executionAbortedEventDetails:
|
|
998
|
-
executionTimedOutEventDetails:
|
|
999
|
-
executionRedrivenEventDetails:
|
|
1000
|
-
mapStateStartedEventDetails:
|
|
1001
|
-
mapIterationStartedEventDetails:
|
|
1002
|
-
mapIterationSucceededEventDetails:
|
|
1003
|
-
mapIterationFailedEventDetails:
|
|
1004
|
-
mapIterationAbortedEventDetails:
|
|
1005
|
-
lambdaFunctionFailedEventDetails:
|
|
1006
|
-
lambdaFunctionScheduleFailedEventDetails:
|
|
1007
|
-
lambdaFunctionScheduledEventDetails:
|
|
1008
|
-
lambdaFunctionStartFailedEventDetails:
|
|
1009
|
-
lambdaFunctionSucceededEventDetails:
|
|
1010
|
-
lambdaFunctionTimedOutEventDetails:
|
|
1011
|
-
stateEnteredEventDetails:
|
|
1012
|
-
stateExitedEventDetails:
|
|
1013
|
-
mapRunStartedEventDetails:
|
|
1014
|
-
mapRunFailedEventDetails:
|
|
1015
|
-
mapRunRedrivenEventDetails:
|
|
1016
|
-
evaluationFailedEventDetails:
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
HistoryEventList =
|
|
979
|
+
previousEventId: EventId | None
|
|
980
|
+
activityFailedEventDetails: ActivityFailedEventDetails | None
|
|
981
|
+
activityScheduleFailedEventDetails: ActivityScheduleFailedEventDetails | None
|
|
982
|
+
activityScheduledEventDetails: ActivityScheduledEventDetails | None
|
|
983
|
+
activityStartedEventDetails: ActivityStartedEventDetails | None
|
|
984
|
+
activitySucceededEventDetails: ActivitySucceededEventDetails | None
|
|
985
|
+
activityTimedOutEventDetails: ActivityTimedOutEventDetails | None
|
|
986
|
+
taskFailedEventDetails: TaskFailedEventDetails | None
|
|
987
|
+
taskScheduledEventDetails: TaskScheduledEventDetails | None
|
|
988
|
+
taskStartFailedEventDetails: TaskStartFailedEventDetails | None
|
|
989
|
+
taskStartedEventDetails: TaskStartedEventDetails | None
|
|
990
|
+
taskSubmitFailedEventDetails: TaskSubmitFailedEventDetails | None
|
|
991
|
+
taskSubmittedEventDetails: TaskSubmittedEventDetails | None
|
|
992
|
+
taskSucceededEventDetails: TaskSucceededEventDetails | None
|
|
993
|
+
taskTimedOutEventDetails: TaskTimedOutEventDetails | None
|
|
994
|
+
executionFailedEventDetails: ExecutionFailedEventDetails | None
|
|
995
|
+
executionStartedEventDetails: ExecutionStartedEventDetails | None
|
|
996
|
+
executionSucceededEventDetails: ExecutionSucceededEventDetails | None
|
|
997
|
+
executionAbortedEventDetails: ExecutionAbortedEventDetails | None
|
|
998
|
+
executionTimedOutEventDetails: ExecutionTimedOutEventDetails | None
|
|
999
|
+
executionRedrivenEventDetails: ExecutionRedrivenEventDetails | None
|
|
1000
|
+
mapStateStartedEventDetails: MapStateStartedEventDetails | None
|
|
1001
|
+
mapIterationStartedEventDetails: MapIterationEventDetails | None
|
|
1002
|
+
mapIterationSucceededEventDetails: MapIterationEventDetails | None
|
|
1003
|
+
mapIterationFailedEventDetails: MapIterationEventDetails | None
|
|
1004
|
+
mapIterationAbortedEventDetails: MapIterationEventDetails | None
|
|
1005
|
+
lambdaFunctionFailedEventDetails: LambdaFunctionFailedEventDetails | None
|
|
1006
|
+
lambdaFunctionScheduleFailedEventDetails: LambdaFunctionScheduleFailedEventDetails | None
|
|
1007
|
+
lambdaFunctionScheduledEventDetails: LambdaFunctionScheduledEventDetails | None
|
|
1008
|
+
lambdaFunctionStartFailedEventDetails: LambdaFunctionStartFailedEventDetails | None
|
|
1009
|
+
lambdaFunctionSucceededEventDetails: LambdaFunctionSucceededEventDetails | None
|
|
1010
|
+
lambdaFunctionTimedOutEventDetails: LambdaFunctionTimedOutEventDetails | None
|
|
1011
|
+
stateEnteredEventDetails: StateEnteredEventDetails | None
|
|
1012
|
+
stateExitedEventDetails: StateExitedEventDetails | None
|
|
1013
|
+
mapRunStartedEventDetails: MapRunStartedEventDetails | None
|
|
1014
|
+
mapRunFailedEventDetails: MapRunFailedEventDetails | None
|
|
1015
|
+
mapRunRedrivenEventDetails: MapRunRedrivenEventDetails | None
|
|
1016
|
+
evaluationFailedEventDetails: EvaluationFailedEventDetails | None
|
|
1017
|
+
|
|
1018
|
+
|
|
1019
|
+
HistoryEventList = list[HistoryEvent]
|
|
1020
1020
|
|
|
1021
1021
|
|
|
1022
1022
|
class GetExecutionHistoryOutput(TypedDict, total=False):
|
|
1023
1023
|
events: HistoryEventList
|
|
1024
|
-
nextToken:
|
|
1024
|
+
nextToken: PageToken | None
|
|
1025
1025
|
|
|
1026
1026
|
|
|
1027
1027
|
class InspectionDataResponse(TypedDict, total=False):
|
|
1028
|
-
protocol:
|
|
1029
|
-
statusCode:
|
|
1030
|
-
statusMessage:
|
|
1031
|
-
headers:
|
|
1032
|
-
body:
|
|
1028
|
+
protocol: HTTPProtocol | None
|
|
1029
|
+
statusCode: HTTPStatusCode | None
|
|
1030
|
+
statusMessage: HTTPStatusMessage | None
|
|
1031
|
+
headers: HTTPHeaders | None
|
|
1032
|
+
body: HTTPBody | None
|
|
1033
1033
|
|
|
1034
1034
|
|
|
1035
1035
|
class InspectionDataRequest(TypedDict, total=False):
|
|
1036
|
-
protocol:
|
|
1037
|
-
method:
|
|
1038
|
-
url:
|
|
1039
|
-
headers:
|
|
1040
|
-
body:
|
|
1036
|
+
protocol: HTTPProtocol | None
|
|
1037
|
+
method: HTTPMethod | None
|
|
1038
|
+
url: URL | None
|
|
1039
|
+
headers: HTTPHeaders | None
|
|
1040
|
+
body: HTTPBody | None
|
|
1041
1041
|
|
|
1042
1042
|
|
|
1043
1043
|
class InspectionData(TypedDict, total=False):
|
|
1044
|
-
input:
|
|
1045
|
-
afterArguments:
|
|
1046
|
-
afterInputPath:
|
|
1047
|
-
afterParameters:
|
|
1048
|
-
result:
|
|
1049
|
-
afterResultSelector:
|
|
1050
|
-
afterResultPath:
|
|
1051
|
-
request:
|
|
1052
|
-
response:
|
|
1053
|
-
variables:
|
|
1044
|
+
input: SensitiveData | None
|
|
1045
|
+
afterArguments: SensitiveData | None
|
|
1046
|
+
afterInputPath: SensitiveData | None
|
|
1047
|
+
afterParameters: SensitiveData | None
|
|
1048
|
+
result: SensitiveData | None
|
|
1049
|
+
afterResultSelector: SensitiveData | None
|
|
1050
|
+
afterResultPath: SensitiveData | None
|
|
1051
|
+
request: InspectionDataRequest | None
|
|
1052
|
+
response: InspectionDataResponse | None
|
|
1053
|
+
variables: SensitiveData | None
|
|
1054
1054
|
|
|
1055
1055
|
|
|
1056
1056
|
class ListActivitiesInput(ServiceRequest):
|
|
1057
|
-
maxResults:
|
|
1058
|
-
nextToken:
|
|
1057
|
+
maxResults: PageSize | None
|
|
1058
|
+
nextToken: PageToken | None
|
|
1059
1059
|
|
|
1060
1060
|
|
|
1061
1061
|
class ListActivitiesOutput(TypedDict, total=False):
|
|
1062
1062
|
activities: ActivityList
|
|
1063
|
-
nextToken:
|
|
1063
|
+
nextToken: PageToken | None
|
|
1064
1064
|
|
|
1065
1065
|
|
|
1066
1066
|
class ListExecutionsInput(ServiceRequest):
|
|
1067
|
-
stateMachineArn:
|
|
1068
|
-
statusFilter:
|
|
1069
|
-
maxResults:
|
|
1070
|
-
nextToken:
|
|
1071
|
-
mapRunArn:
|
|
1072
|
-
redriveFilter:
|
|
1067
|
+
stateMachineArn: Arn | None
|
|
1068
|
+
statusFilter: ExecutionStatus | None
|
|
1069
|
+
maxResults: PageSize | None
|
|
1070
|
+
nextToken: ListExecutionsPageToken | None
|
|
1071
|
+
mapRunArn: LongArn | None
|
|
1072
|
+
redriveFilter: ExecutionRedriveFilter | None
|
|
1073
1073
|
|
|
1074
1074
|
|
|
1075
1075
|
class ListExecutionsOutput(TypedDict, total=False):
|
|
1076
1076
|
executions: ExecutionList
|
|
1077
|
-
nextToken:
|
|
1077
|
+
nextToken: ListExecutionsPageToken | None
|
|
1078
1078
|
|
|
1079
1079
|
|
|
1080
1080
|
class ListMapRunsInput(ServiceRequest):
|
|
1081
1081
|
executionArn: Arn
|
|
1082
|
-
maxResults:
|
|
1083
|
-
nextToken:
|
|
1082
|
+
maxResults: PageSize | None
|
|
1083
|
+
nextToken: PageToken | None
|
|
1084
1084
|
|
|
1085
1085
|
|
|
1086
1086
|
class MapRunListItem(TypedDict, total=False):
|
|
@@ -1088,21 +1088,21 @@ class MapRunListItem(TypedDict, total=False):
|
|
|
1088
1088
|
mapRunArn: LongArn
|
|
1089
1089
|
stateMachineArn: Arn
|
|
1090
1090
|
startDate: Timestamp
|
|
1091
|
-
stopDate:
|
|
1091
|
+
stopDate: Timestamp | None
|
|
1092
1092
|
|
|
1093
1093
|
|
|
1094
|
-
MapRunList =
|
|
1094
|
+
MapRunList = list[MapRunListItem]
|
|
1095
1095
|
|
|
1096
1096
|
|
|
1097
1097
|
class ListMapRunsOutput(TypedDict, total=False):
|
|
1098
1098
|
mapRuns: MapRunList
|
|
1099
|
-
nextToken:
|
|
1099
|
+
nextToken: PageToken | None
|
|
1100
1100
|
|
|
1101
1101
|
|
|
1102
1102
|
class ListStateMachineAliasesInput(ServiceRequest):
|
|
1103
1103
|
stateMachineArn: Arn
|
|
1104
|
-
nextToken:
|
|
1105
|
-
maxResults:
|
|
1104
|
+
nextToken: PageToken | None
|
|
1105
|
+
maxResults: PageSize | None
|
|
1106
1106
|
|
|
1107
1107
|
|
|
1108
1108
|
class StateMachineAliasListItem(TypedDict, total=False):
|
|
@@ -1110,18 +1110,18 @@ class StateMachineAliasListItem(TypedDict, total=False):
|
|
|
1110
1110
|
creationDate: Timestamp
|
|
1111
1111
|
|
|
1112
1112
|
|
|
1113
|
-
StateMachineAliasList =
|
|
1113
|
+
StateMachineAliasList = list[StateMachineAliasListItem]
|
|
1114
1114
|
|
|
1115
1115
|
|
|
1116
1116
|
class ListStateMachineAliasesOutput(TypedDict, total=False):
|
|
1117
1117
|
stateMachineAliases: StateMachineAliasList
|
|
1118
|
-
nextToken:
|
|
1118
|
+
nextToken: PageToken | None
|
|
1119
1119
|
|
|
1120
1120
|
|
|
1121
1121
|
class ListStateMachineVersionsInput(ServiceRequest):
|
|
1122
1122
|
stateMachineArn: Arn
|
|
1123
|
-
nextToken:
|
|
1124
|
-
maxResults:
|
|
1123
|
+
nextToken: PageToken | None
|
|
1124
|
+
maxResults: PageSize | None
|
|
1125
1125
|
|
|
1126
1126
|
|
|
1127
1127
|
class StateMachineVersionListItem(TypedDict, total=False):
|
|
@@ -1129,17 +1129,17 @@ class StateMachineVersionListItem(TypedDict, total=False):
|
|
|
1129
1129
|
creationDate: Timestamp
|
|
1130
1130
|
|
|
1131
1131
|
|
|
1132
|
-
StateMachineVersionList =
|
|
1132
|
+
StateMachineVersionList = list[StateMachineVersionListItem]
|
|
1133
1133
|
|
|
1134
1134
|
|
|
1135
1135
|
class ListStateMachineVersionsOutput(TypedDict, total=False):
|
|
1136
1136
|
stateMachineVersions: StateMachineVersionList
|
|
1137
|
-
nextToken:
|
|
1137
|
+
nextToken: PageToken | None
|
|
1138
1138
|
|
|
1139
1139
|
|
|
1140
1140
|
class ListStateMachinesInput(ServiceRequest):
|
|
1141
|
-
maxResults:
|
|
1142
|
-
nextToken:
|
|
1141
|
+
maxResults: PageSize | None
|
|
1142
|
+
nextToken: PageToken | None
|
|
1143
1143
|
|
|
1144
1144
|
|
|
1145
1145
|
class StateMachineListItem(TypedDict, total=False):
|
|
@@ -1149,12 +1149,12 @@ class StateMachineListItem(TypedDict, total=False):
|
|
|
1149
1149
|
creationDate: Timestamp
|
|
1150
1150
|
|
|
1151
1151
|
|
|
1152
|
-
StateMachineList =
|
|
1152
|
+
StateMachineList = list[StateMachineListItem]
|
|
1153
1153
|
|
|
1154
1154
|
|
|
1155
1155
|
class ListStateMachinesOutput(TypedDict, total=False):
|
|
1156
1156
|
stateMachines: StateMachineList
|
|
1157
|
-
nextToken:
|
|
1157
|
+
nextToken: PageToken | None
|
|
1158
1158
|
|
|
1159
1159
|
|
|
1160
1160
|
class ListTagsForResourceInput(ServiceRequest):
|
|
@@ -1162,13 +1162,13 @@ class ListTagsForResourceInput(ServiceRequest):
|
|
|
1162
1162
|
|
|
1163
1163
|
|
|
1164
1164
|
class ListTagsForResourceOutput(TypedDict, total=False):
|
|
1165
|
-
tags:
|
|
1165
|
+
tags: TagList | None
|
|
1166
1166
|
|
|
1167
1167
|
|
|
1168
1168
|
class PublishStateMachineVersionInput(ServiceRequest):
|
|
1169
1169
|
stateMachineArn: Arn
|
|
1170
|
-
revisionId:
|
|
1171
|
-
description:
|
|
1170
|
+
revisionId: RevisionId | None
|
|
1171
|
+
description: VersionDescription | None
|
|
1172
1172
|
|
|
1173
1173
|
|
|
1174
1174
|
class PublishStateMachineVersionOutput(TypedDict, total=False):
|
|
@@ -1178,7 +1178,7 @@ class PublishStateMachineVersionOutput(TypedDict, total=False):
|
|
|
1178
1178
|
|
|
1179
1179
|
class RedriveExecutionInput(ServiceRequest):
|
|
1180
1180
|
executionArn: Arn
|
|
1181
|
-
clientToken:
|
|
1181
|
+
clientToken: ClientToken | None
|
|
1182
1182
|
|
|
1183
1183
|
|
|
1184
1184
|
class RedriveExecutionOutput(TypedDict, total=False):
|
|
@@ -1187,8 +1187,8 @@ class RedriveExecutionOutput(TypedDict, total=False):
|
|
|
1187
1187
|
|
|
1188
1188
|
class SendTaskFailureInput(ServiceRequest):
|
|
1189
1189
|
taskToken: TaskToken
|
|
1190
|
-
error:
|
|
1191
|
-
cause:
|
|
1190
|
+
error: SensitiveError | None
|
|
1191
|
+
cause: SensitiveCause | None
|
|
1192
1192
|
|
|
1193
1193
|
|
|
1194
1194
|
class SendTaskFailureOutput(TypedDict, total=False):
|
|
@@ -1214,9 +1214,9 @@ class SendTaskSuccessOutput(TypedDict, total=False):
|
|
|
1214
1214
|
|
|
1215
1215
|
class StartExecutionInput(ServiceRequest):
|
|
1216
1216
|
stateMachineArn: Arn
|
|
1217
|
-
name:
|
|
1218
|
-
input:
|
|
1219
|
-
traceHeader:
|
|
1217
|
+
name: Name | None
|
|
1218
|
+
input: SensitiveData | None
|
|
1219
|
+
traceHeader: TraceHeader | None
|
|
1220
1220
|
|
|
1221
1221
|
|
|
1222
1222
|
class StartExecutionOutput(TypedDict, total=False):
|
|
@@ -1226,40 +1226,40 @@ class StartExecutionOutput(TypedDict, total=False):
|
|
|
1226
1226
|
|
|
1227
1227
|
class StartSyncExecutionInput(ServiceRequest):
|
|
1228
1228
|
stateMachineArn: Arn
|
|
1229
|
-
name:
|
|
1230
|
-
input:
|
|
1231
|
-
traceHeader:
|
|
1232
|
-
includedData:
|
|
1229
|
+
name: Name | None
|
|
1230
|
+
input: SensitiveData | None
|
|
1231
|
+
traceHeader: TraceHeader | None
|
|
1232
|
+
includedData: IncludedData | None
|
|
1233
1233
|
|
|
1234
1234
|
|
|
1235
1235
|
class StartSyncExecutionOutput(TypedDict, total=False):
|
|
1236
1236
|
executionArn: Arn
|
|
1237
|
-
stateMachineArn:
|
|
1238
|
-
name:
|
|
1237
|
+
stateMachineArn: Arn | None
|
|
1238
|
+
name: Name | None
|
|
1239
1239
|
startDate: Timestamp
|
|
1240
1240
|
stopDate: Timestamp
|
|
1241
1241
|
status: SyncExecutionStatus
|
|
1242
|
-
error:
|
|
1243
|
-
cause:
|
|
1244
|
-
input:
|
|
1245
|
-
inputDetails:
|
|
1246
|
-
output:
|
|
1247
|
-
outputDetails:
|
|
1248
|
-
traceHeader:
|
|
1249
|
-
billingDetails:
|
|
1242
|
+
error: SensitiveError | None
|
|
1243
|
+
cause: SensitiveCause | None
|
|
1244
|
+
input: SensitiveData | None
|
|
1245
|
+
inputDetails: CloudWatchEventsExecutionDataDetails | None
|
|
1246
|
+
output: SensitiveData | None
|
|
1247
|
+
outputDetails: CloudWatchEventsExecutionDataDetails | None
|
|
1248
|
+
traceHeader: TraceHeader | None
|
|
1249
|
+
billingDetails: BillingDetails | None
|
|
1250
1250
|
|
|
1251
1251
|
|
|
1252
1252
|
class StopExecutionInput(ServiceRequest):
|
|
1253
1253
|
executionArn: Arn
|
|
1254
|
-
error:
|
|
1255
|
-
cause:
|
|
1254
|
+
error: SensitiveError | None
|
|
1255
|
+
cause: SensitiveCause | None
|
|
1256
1256
|
|
|
1257
1257
|
|
|
1258
1258
|
class StopExecutionOutput(TypedDict, total=False):
|
|
1259
1259
|
stopDate: Timestamp
|
|
1260
1260
|
|
|
1261
1261
|
|
|
1262
|
-
TagKeyList =
|
|
1262
|
+
TagKeyList = list[TagKey]
|
|
1263
1263
|
|
|
1264
1264
|
|
|
1265
1265
|
class TagResourceInput(ServiceRequest):
|
|
@@ -1273,20 +1273,20 @@ class TagResourceOutput(TypedDict, total=False):
|
|
|
1273
1273
|
|
|
1274
1274
|
class TestStateInput(ServiceRequest):
|
|
1275
1275
|
definition: Definition
|
|
1276
|
-
roleArn:
|
|
1277
|
-
input:
|
|
1278
|
-
inspectionLevel:
|
|
1279
|
-
revealSecrets:
|
|
1280
|
-
variables:
|
|
1276
|
+
roleArn: Arn | None
|
|
1277
|
+
input: SensitiveData | None
|
|
1278
|
+
inspectionLevel: InspectionLevel | None
|
|
1279
|
+
revealSecrets: RevealSecrets | None
|
|
1280
|
+
variables: SensitiveData | None
|
|
1281
1281
|
|
|
1282
1282
|
|
|
1283
1283
|
class TestStateOutput(TypedDict, total=False):
|
|
1284
|
-
output:
|
|
1285
|
-
error:
|
|
1286
|
-
cause:
|
|
1287
|
-
inspectionData:
|
|
1288
|
-
nextState:
|
|
1289
|
-
status:
|
|
1284
|
+
output: SensitiveData | None
|
|
1285
|
+
error: SensitiveError | None
|
|
1286
|
+
cause: SensitiveCause | None
|
|
1287
|
+
inspectionData: InspectionData | None
|
|
1288
|
+
nextState: StateName | None
|
|
1289
|
+
status: TestExecutionStatus | None
|
|
1290
1290
|
|
|
1291
1291
|
|
|
1292
1292
|
class UntagResourceInput(ServiceRequest):
|
|
@@ -1300,9 +1300,9 @@ class UntagResourceOutput(TypedDict, total=False):
|
|
|
1300
1300
|
|
|
1301
1301
|
class UpdateMapRunInput(ServiceRequest):
|
|
1302
1302
|
mapRunArn: LongArn
|
|
1303
|
-
maxConcurrency:
|
|
1304
|
-
toleratedFailurePercentage:
|
|
1305
|
-
toleratedFailureCount:
|
|
1303
|
+
maxConcurrency: MaxConcurrency | None
|
|
1304
|
+
toleratedFailurePercentage: ToleratedFailurePercentage | None
|
|
1305
|
+
toleratedFailureCount: ToleratedFailureCount | None
|
|
1306
1306
|
|
|
1307
1307
|
|
|
1308
1308
|
class UpdateMapRunOutput(TypedDict, total=False):
|
|
@@ -1311,8 +1311,8 @@ class UpdateMapRunOutput(TypedDict, total=False):
|
|
|
1311
1311
|
|
|
1312
1312
|
class UpdateStateMachineAliasInput(ServiceRequest):
|
|
1313
1313
|
stateMachineAliasArn: Arn
|
|
1314
|
-
description:
|
|
1315
|
-
routingConfiguration:
|
|
1314
|
+
description: AliasDescription | None
|
|
1315
|
+
routingConfiguration: RoutingConfigurationList | None
|
|
1316
1316
|
|
|
1317
1317
|
|
|
1318
1318
|
class UpdateStateMachineAliasOutput(TypedDict, total=False):
|
|
@@ -1321,47 +1321,47 @@ class UpdateStateMachineAliasOutput(TypedDict, total=False):
|
|
|
1321
1321
|
|
|
1322
1322
|
class UpdateStateMachineInput(ServiceRequest):
|
|
1323
1323
|
stateMachineArn: Arn
|
|
1324
|
-
definition:
|
|
1325
|
-
roleArn:
|
|
1326
|
-
loggingConfiguration:
|
|
1327
|
-
tracingConfiguration:
|
|
1328
|
-
publish:
|
|
1329
|
-
versionDescription:
|
|
1330
|
-
encryptionConfiguration:
|
|
1324
|
+
definition: Definition | None
|
|
1325
|
+
roleArn: Arn | None
|
|
1326
|
+
loggingConfiguration: LoggingConfiguration | None
|
|
1327
|
+
tracingConfiguration: TracingConfiguration | None
|
|
1328
|
+
publish: Publish | None
|
|
1329
|
+
versionDescription: VersionDescription | None
|
|
1330
|
+
encryptionConfiguration: EncryptionConfiguration | None
|
|
1331
1331
|
|
|
1332
1332
|
|
|
1333
1333
|
class UpdateStateMachineOutput(TypedDict, total=False):
|
|
1334
1334
|
updateDate: Timestamp
|
|
1335
|
-
revisionId:
|
|
1336
|
-
stateMachineVersionArn:
|
|
1335
|
+
revisionId: RevisionId | None
|
|
1336
|
+
stateMachineVersionArn: Arn | None
|
|
1337
1337
|
|
|
1338
1338
|
|
|
1339
1339
|
class ValidateStateMachineDefinitionDiagnostic(TypedDict, total=False):
|
|
1340
1340
|
severity: ValidateStateMachineDefinitionSeverity
|
|
1341
1341
|
code: ValidateStateMachineDefinitionCode
|
|
1342
1342
|
message: ValidateStateMachineDefinitionMessage
|
|
1343
|
-
location:
|
|
1343
|
+
location: ValidateStateMachineDefinitionLocation | None
|
|
1344
1344
|
|
|
1345
1345
|
|
|
1346
|
-
ValidateStateMachineDefinitionDiagnosticList =
|
|
1346
|
+
ValidateStateMachineDefinitionDiagnosticList = list[ValidateStateMachineDefinitionDiagnostic]
|
|
1347
1347
|
|
|
1348
1348
|
|
|
1349
1349
|
class ValidateStateMachineDefinitionInput(TypedDict, total=False):
|
|
1350
1350
|
definition: Definition
|
|
1351
|
-
type:
|
|
1352
|
-
severity:
|
|
1353
|
-
maxResults:
|
|
1351
|
+
type: StateMachineType | None
|
|
1352
|
+
severity: ValidateStateMachineDefinitionSeverity | None
|
|
1353
|
+
maxResults: ValidateStateMachineDefinitionMaxResult | None
|
|
1354
1354
|
|
|
1355
1355
|
|
|
1356
1356
|
class ValidateStateMachineDefinitionOutput(TypedDict, total=False):
|
|
1357
1357
|
result: ValidateStateMachineDefinitionResultCode
|
|
1358
1358
|
diagnostics: ValidateStateMachineDefinitionDiagnosticList
|
|
1359
|
-
truncated:
|
|
1359
|
+
truncated: ValidateStateMachineDefinitionTruncated | None
|
|
1360
1360
|
|
|
1361
1361
|
|
|
1362
1362
|
class StepfunctionsApi:
|
|
1363
|
-
service = "stepfunctions"
|
|
1364
|
-
version = "2016-11-23"
|
|
1363
|
+
service: str = "stepfunctions"
|
|
1364
|
+
version: str = "2016-11-23"
|
|
1365
1365
|
|
|
1366
1366
|
@handler("CreateActivity")
|
|
1367
1367
|
def create_activity(
|