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
|
|
|
@@ -369,7 +369,7 @@ class ActivityTask(TypedDict, total=False):
|
|
|
369
369
|
startedEventId: EventId
|
|
370
370
|
workflowExecution: WorkflowExecution
|
|
371
371
|
activityType: ActivityType
|
|
372
|
-
input:
|
|
372
|
+
input: Data | None
|
|
373
373
|
|
|
374
374
|
|
|
375
375
|
class ActivityTaskCancelRequestedEventAttributes(TypedDict, total=False):
|
|
@@ -378,21 +378,21 @@ class ActivityTaskCancelRequestedEventAttributes(TypedDict, total=False):
|
|
|
378
378
|
|
|
379
379
|
|
|
380
380
|
class ActivityTaskCanceledEventAttributes(TypedDict, total=False):
|
|
381
|
-
details:
|
|
381
|
+
details: Data | None
|
|
382
382
|
scheduledEventId: EventId
|
|
383
383
|
startedEventId: EventId
|
|
384
|
-
latestCancelRequestedEventId:
|
|
384
|
+
latestCancelRequestedEventId: EventId | None
|
|
385
385
|
|
|
386
386
|
|
|
387
387
|
class ActivityTaskCompletedEventAttributes(TypedDict, total=False):
|
|
388
|
-
result:
|
|
388
|
+
result: Data | None
|
|
389
389
|
scheduledEventId: EventId
|
|
390
390
|
startedEventId: EventId
|
|
391
391
|
|
|
392
392
|
|
|
393
393
|
class ActivityTaskFailedEventAttributes(TypedDict, total=False):
|
|
394
|
-
reason:
|
|
395
|
-
details:
|
|
394
|
+
reason: FailureReason | None
|
|
395
|
+
details: Data | None
|
|
396
396
|
scheduledEventId: EventId
|
|
397
397
|
startedEventId: EventId
|
|
398
398
|
|
|
@@ -404,19 +404,19 @@ class TaskList(TypedDict, total=False):
|
|
|
404
404
|
class ActivityTaskScheduledEventAttributes(TypedDict, total=False):
|
|
405
405
|
activityType: ActivityType
|
|
406
406
|
activityId: ActivityId
|
|
407
|
-
input:
|
|
408
|
-
control:
|
|
409
|
-
scheduleToStartTimeout:
|
|
410
|
-
scheduleToCloseTimeout:
|
|
411
|
-
startToCloseTimeout:
|
|
407
|
+
input: Data | None
|
|
408
|
+
control: Data | None
|
|
409
|
+
scheduleToStartTimeout: DurationInSecondsOptional | None
|
|
410
|
+
scheduleToCloseTimeout: DurationInSecondsOptional | None
|
|
411
|
+
startToCloseTimeout: DurationInSecondsOptional | None
|
|
412
412
|
taskList: TaskList
|
|
413
|
-
taskPriority:
|
|
413
|
+
taskPriority: TaskPriority | None
|
|
414
414
|
decisionTaskCompletedEventId: EventId
|
|
415
|
-
heartbeatTimeout:
|
|
415
|
+
heartbeatTimeout: DurationInSecondsOptional | None
|
|
416
416
|
|
|
417
417
|
|
|
418
418
|
class ActivityTaskStartedEventAttributes(TypedDict, total=False):
|
|
419
|
-
identity:
|
|
419
|
+
identity: Identity | None
|
|
420
420
|
scheduledEventId: EventId
|
|
421
421
|
|
|
422
422
|
|
|
@@ -428,16 +428,16 @@ class ActivityTaskTimedOutEventAttributes(TypedDict, total=False):
|
|
|
428
428
|
timeoutType: ActivityTaskTimeoutType
|
|
429
429
|
scheduledEventId: EventId
|
|
430
430
|
startedEventId: EventId
|
|
431
|
-
details:
|
|
431
|
+
details: LimitedData | None
|
|
432
432
|
|
|
433
433
|
|
|
434
434
|
class ActivityTypeConfiguration(TypedDict, total=False):
|
|
435
|
-
defaultTaskStartToCloseTimeout:
|
|
436
|
-
defaultTaskHeartbeatTimeout:
|
|
437
|
-
defaultTaskList:
|
|
438
|
-
defaultTaskPriority:
|
|
439
|
-
defaultTaskScheduleToStartTimeout:
|
|
440
|
-
defaultTaskScheduleToCloseTimeout:
|
|
435
|
+
defaultTaskStartToCloseTimeout: DurationInSecondsOptional | None
|
|
436
|
+
defaultTaskHeartbeatTimeout: DurationInSecondsOptional | None
|
|
437
|
+
defaultTaskList: TaskList | None
|
|
438
|
+
defaultTaskPriority: TaskPriority | None
|
|
439
|
+
defaultTaskScheduleToStartTimeout: DurationInSecondsOptional | None
|
|
440
|
+
defaultTaskScheduleToCloseTimeout: DurationInSecondsOptional | None
|
|
441
441
|
|
|
442
442
|
|
|
443
443
|
Timestamp = datetime
|
|
@@ -446,9 +446,9 @@ Timestamp = datetime
|
|
|
446
446
|
class ActivityTypeInfo(TypedDict, total=False):
|
|
447
447
|
activityType: ActivityType
|
|
448
448
|
status: RegistrationStatus
|
|
449
|
-
description:
|
|
449
|
+
description: Description | None
|
|
450
450
|
creationDate: Timestamp
|
|
451
|
-
deprecationDate:
|
|
451
|
+
deprecationDate: Timestamp | None
|
|
452
452
|
|
|
453
453
|
|
|
454
454
|
class ActivityTypeDetail(TypedDict, total=False):
|
|
@@ -456,12 +456,12 @@ class ActivityTypeDetail(TypedDict, total=False):
|
|
|
456
456
|
configuration: ActivityTypeConfiguration
|
|
457
457
|
|
|
458
458
|
|
|
459
|
-
ActivityTypeInfoList =
|
|
459
|
+
ActivityTypeInfoList = list[ActivityTypeInfo]
|
|
460
460
|
|
|
461
461
|
|
|
462
462
|
class ActivityTypeInfos(TypedDict, total=False):
|
|
463
463
|
typeInfos: ActivityTypeInfoList
|
|
464
|
-
nextPageToken:
|
|
464
|
+
nextPageToken: PageToken | None
|
|
465
465
|
|
|
466
466
|
|
|
467
467
|
class CancelTimerDecisionAttributes(TypedDict, total=False):
|
|
@@ -475,7 +475,7 @@ class CancelTimerFailedEventAttributes(TypedDict, total=False):
|
|
|
475
475
|
|
|
476
476
|
|
|
477
477
|
class CancelWorkflowExecutionDecisionAttributes(TypedDict, total=False):
|
|
478
|
-
details:
|
|
478
|
+
details: Data | None
|
|
479
479
|
|
|
480
480
|
|
|
481
481
|
class CancelWorkflowExecutionFailedEventAttributes(TypedDict, total=False):
|
|
@@ -491,7 +491,7 @@ class WorkflowType(TypedDict, total=False):
|
|
|
491
491
|
class ChildWorkflowExecutionCanceledEventAttributes(TypedDict, total=False):
|
|
492
492
|
workflowExecution: WorkflowExecution
|
|
493
493
|
workflowType: WorkflowType
|
|
494
|
-
details:
|
|
494
|
+
details: Data | None
|
|
495
495
|
initiatedEventId: EventId
|
|
496
496
|
startedEventId: EventId
|
|
497
497
|
|
|
@@ -499,7 +499,7 @@ class ChildWorkflowExecutionCanceledEventAttributes(TypedDict, total=False):
|
|
|
499
499
|
class ChildWorkflowExecutionCompletedEventAttributes(TypedDict, total=False):
|
|
500
500
|
workflowExecution: WorkflowExecution
|
|
501
501
|
workflowType: WorkflowType
|
|
502
|
-
result:
|
|
502
|
+
result: Data | None
|
|
503
503
|
initiatedEventId: EventId
|
|
504
504
|
startedEventId: EventId
|
|
505
505
|
|
|
@@ -507,8 +507,8 @@ class ChildWorkflowExecutionCompletedEventAttributes(TypedDict, total=False):
|
|
|
507
507
|
class ChildWorkflowExecutionFailedEventAttributes(TypedDict, total=False):
|
|
508
508
|
workflowExecution: WorkflowExecution
|
|
509
509
|
workflowType: WorkflowType
|
|
510
|
-
reason:
|
|
511
|
-
details:
|
|
510
|
+
reason: FailureReason | None
|
|
511
|
+
details: Data | None
|
|
512
512
|
initiatedEventId: EventId
|
|
513
513
|
startedEventId: EventId
|
|
514
514
|
|
|
@@ -539,7 +539,7 @@ class CloseStatusFilter(TypedDict, total=False):
|
|
|
539
539
|
|
|
540
540
|
|
|
541
541
|
class CompleteWorkflowExecutionDecisionAttributes(TypedDict, total=False):
|
|
542
|
-
result:
|
|
542
|
+
result: Data | None
|
|
543
543
|
|
|
544
544
|
|
|
545
545
|
class CompleteWorkflowExecutionFailedEventAttributes(TypedDict, total=False):
|
|
@@ -547,19 +547,19 @@ class CompleteWorkflowExecutionFailedEventAttributes(TypedDict, total=False):
|
|
|
547
547
|
decisionTaskCompletedEventId: EventId
|
|
548
548
|
|
|
549
549
|
|
|
550
|
-
TagList =
|
|
550
|
+
TagList = list[Tag]
|
|
551
551
|
|
|
552
552
|
|
|
553
553
|
class ContinueAsNewWorkflowExecutionDecisionAttributes(TypedDict, total=False):
|
|
554
|
-
input:
|
|
555
|
-
executionStartToCloseTimeout:
|
|
556
|
-
taskList:
|
|
557
|
-
taskPriority:
|
|
558
|
-
taskStartToCloseTimeout:
|
|
559
|
-
childPolicy:
|
|
560
|
-
tagList:
|
|
561
|
-
workflowTypeVersion:
|
|
562
|
-
lambdaRole:
|
|
554
|
+
input: Data | None
|
|
555
|
+
executionStartToCloseTimeout: DurationInSecondsOptional | None
|
|
556
|
+
taskList: TaskList | None
|
|
557
|
+
taskPriority: TaskPriority | None
|
|
558
|
+
taskStartToCloseTimeout: DurationInSecondsOptional | None
|
|
559
|
+
childPolicy: ChildPolicy | None
|
|
560
|
+
tagList: TagList | None
|
|
561
|
+
workflowTypeVersion: Version | None
|
|
562
|
+
lambdaRole: Arn | None
|
|
563
563
|
|
|
564
564
|
|
|
565
565
|
class ContinueAsNewWorkflowExecutionFailedEventAttributes(TypedDict, total=False):
|
|
@@ -573,7 +573,7 @@ class TagFilter(TypedDict, total=False):
|
|
|
573
573
|
|
|
574
574
|
class WorkflowTypeFilter(TypedDict, total=False):
|
|
575
575
|
name: Name
|
|
576
|
-
version:
|
|
576
|
+
version: VersionOptional | None
|
|
577
577
|
|
|
578
578
|
|
|
579
579
|
class WorkflowExecutionFilter(TypedDict, total=False):
|
|
@@ -582,25 +582,25 @@ class WorkflowExecutionFilter(TypedDict, total=False):
|
|
|
582
582
|
|
|
583
583
|
class ExecutionTimeFilter(TypedDict, total=False):
|
|
584
584
|
oldestDate: Timestamp
|
|
585
|
-
latestDate:
|
|
585
|
+
latestDate: Timestamp | None
|
|
586
586
|
|
|
587
587
|
|
|
588
588
|
class CountClosedWorkflowExecutionsInput(ServiceRequest):
|
|
589
589
|
domain: DomainName
|
|
590
|
-
startTimeFilter:
|
|
591
|
-
closeTimeFilter:
|
|
592
|
-
executionFilter:
|
|
593
|
-
typeFilter:
|
|
594
|
-
tagFilter:
|
|
595
|
-
closeStatusFilter:
|
|
590
|
+
startTimeFilter: ExecutionTimeFilter | None
|
|
591
|
+
closeTimeFilter: ExecutionTimeFilter | None
|
|
592
|
+
executionFilter: WorkflowExecutionFilter | None
|
|
593
|
+
typeFilter: WorkflowTypeFilter | None
|
|
594
|
+
tagFilter: TagFilter | None
|
|
595
|
+
closeStatusFilter: CloseStatusFilter | None
|
|
596
596
|
|
|
597
597
|
|
|
598
598
|
class CountOpenWorkflowExecutionsInput(ServiceRequest):
|
|
599
599
|
domain: DomainName
|
|
600
600
|
startTimeFilter: ExecutionTimeFilter
|
|
601
|
-
typeFilter:
|
|
602
|
-
tagFilter:
|
|
603
|
-
executionFilter:
|
|
601
|
+
typeFilter: WorkflowTypeFilter | None
|
|
602
|
+
tagFilter: TagFilter | None
|
|
603
|
+
executionFilter: WorkflowExecutionFilter | None
|
|
604
604
|
|
|
605
605
|
|
|
606
606
|
class CountPendingActivityTasksInput(ServiceRequest):
|
|
@@ -616,53 +616,53 @@ class CountPendingDecisionTasksInput(ServiceRequest):
|
|
|
616
616
|
class ScheduleLambdaFunctionDecisionAttributes(TypedDict, total=False):
|
|
617
617
|
id: FunctionId
|
|
618
618
|
name: FunctionName
|
|
619
|
-
control:
|
|
620
|
-
input:
|
|
621
|
-
startToCloseTimeout:
|
|
619
|
+
control: Data | None
|
|
620
|
+
input: FunctionInput | None
|
|
621
|
+
startToCloseTimeout: DurationInSecondsOptional | None
|
|
622
622
|
|
|
623
623
|
|
|
624
624
|
class StartChildWorkflowExecutionDecisionAttributes(TypedDict, total=False):
|
|
625
625
|
workflowType: WorkflowType
|
|
626
626
|
workflowId: WorkflowId
|
|
627
|
-
control:
|
|
628
|
-
input:
|
|
629
|
-
executionStartToCloseTimeout:
|
|
630
|
-
taskList:
|
|
631
|
-
taskPriority:
|
|
632
|
-
taskStartToCloseTimeout:
|
|
633
|
-
childPolicy:
|
|
634
|
-
tagList:
|
|
635
|
-
lambdaRole:
|
|
627
|
+
control: Data | None
|
|
628
|
+
input: Data | None
|
|
629
|
+
executionStartToCloseTimeout: DurationInSecondsOptional | None
|
|
630
|
+
taskList: TaskList | None
|
|
631
|
+
taskPriority: TaskPriority | None
|
|
632
|
+
taskStartToCloseTimeout: DurationInSecondsOptional | None
|
|
633
|
+
childPolicy: ChildPolicy | None
|
|
634
|
+
tagList: TagList | None
|
|
635
|
+
lambdaRole: Arn | None
|
|
636
636
|
|
|
637
637
|
|
|
638
638
|
class RequestCancelExternalWorkflowExecutionDecisionAttributes(TypedDict, total=False):
|
|
639
639
|
workflowId: WorkflowId
|
|
640
|
-
runId:
|
|
641
|
-
control:
|
|
640
|
+
runId: WorkflowRunIdOptional | None
|
|
641
|
+
control: Data | None
|
|
642
642
|
|
|
643
643
|
|
|
644
644
|
class SignalExternalWorkflowExecutionDecisionAttributes(TypedDict, total=False):
|
|
645
645
|
workflowId: WorkflowId
|
|
646
|
-
runId:
|
|
646
|
+
runId: WorkflowRunIdOptional | None
|
|
647
647
|
signalName: SignalName
|
|
648
|
-
input:
|
|
649
|
-
control:
|
|
648
|
+
input: Data | None
|
|
649
|
+
control: Data | None
|
|
650
650
|
|
|
651
651
|
|
|
652
652
|
class StartTimerDecisionAttributes(TypedDict, total=False):
|
|
653
653
|
timerId: TimerId
|
|
654
|
-
control:
|
|
654
|
+
control: Data | None
|
|
655
655
|
startToFireTimeout: DurationInSeconds
|
|
656
656
|
|
|
657
657
|
|
|
658
658
|
class RecordMarkerDecisionAttributes(TypedDict, total=False):
|
|
659
659
|
markerName: MarkerName
|
|
660
|
-
details:
|
|
660
|
+
details: Data | None
|
|
661
661
|
|
|
662
662
|
|
|
663
663
|
class FailWorkflowExecutionDecisionAttributes(TypedDict, total=False):
|
|
664
|
-
reason:
|
|
665
|
-
details:
|
|
664
|
+
reason: FailureReason | None
|
|
665
|
+
details: Data | None
|
|
666
666
|
|
|
667
667
|
|
|
668
668
|
class RequestCancelActivityTaskDecisionAttributes(TypedDict, total=False):
|
|
@@ -672,52 +672,48 @@ class RequestCancelActivityTaskDecisionAttributes(TypedDict, total=False):
|
|
|
672
672
|
class ScheduleActivityTaskDecisionAttributes(TypedDict, total=False):
|
|
673
673
|
activityType: ActivityType
|
|
674
674
|
activityId: ActivityId
|
|
675
|
-
control:
|
|
676
|
-
input:
|
|
677
|
-
scheduleToCloseTimeout:
|
|
678
|
-
taskList:
|
|
679
|
-
taskPriority:
|
|
680
|
-
scheduleToStartTimeout:
|
|
681
|
-
startToCloseTimeout:
|
|
682
|
-
heartbeatTimeout:
|
|
675
|
+
control: Data | None
|
|
676
|
+
input: Data | None
|
|
677
|
+
scheduleToCloseTimeout: DurationInSecondsOptional | None
|
|
678
|
+
taskList: TaskList | None
|
|
679
|
+
taskPriority: TaskPriority | None
|
|
680
|
+
scheduleToStartTimeout: DurationInSecondsOptional | None
|
|
681
|
+
startToCloseTimeout: DurationInSecondsOptional | None
|
|
682
|
+
heartbeatTimeout: DurationInSecondsOptional | None
|
|
683
683
|
|
|
684
684
|
|
|
685
685
|
class Decision(TypedDict, total=False):
|
|
686
686
|
decisionType: DecisionType
|
|
687
|
-
scheduleActivityTaskDecisionAttributes:
|
|
688
|
-
requestCancelActivityTaskDecisionAttributes:
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
scheduleLambdaFunctionDecisionAttributes: Optional[ScheduleLambdaFunctionDecisionAttributes]
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
DecisionList = List[Decision]
|
|
687
|
+
scheduleActivityTaskDecisionAttributes: ScheduleActivityTaskDecisionAttributes | None
|
|
688
|
+
requestCancelActivityTaskDecisionAttributes: RequestCancelActivityTaskDecisionAttributes | None
|
|
689
|
+
completeWorkflowExecutionDecisionAttributes: CompleteWorkflowExecutionDecisionAttributes | None
|
|
690
|
+
failWorkflowExecutionDecisionAttributes: FailWorkflowExecutionDecisionAttributes | None
|
|
691
|
+
cancelWorkflowExecutionDecisionAttributes: CancelWorkflowExecutionDecisionAttributes | None
|
|
692
|
+
continueAsNewWorkflowExecutionDecisionAttributes: (
|
|
693
|
+
ContinueAsNewWorkflowExecutionDecisionAttributes | None
|
|
694
|
+
)
|
|
695
|
+
recordMarkerDecisionAttributes: RecordMarkerDecisionAttributes | None
|
|
696
|
+
startTimerDecisionAttributes: StartTimerDecisionAttributes | None
|
|
697
|
+
cancelTimerDecisionAttributes: CancelTimerDecisionAttributes | None
|
|
698
|
+
signalExternalWorkflowExecutionDecisionAttributes: (
|
|
699
|
+
SignalExternalWorkflowExecutionDecisionAttributes | None
|
|
700
|
+
)
|
|
701
|
+
requestCancelExternalWorkflowExecutionDecisionAttributes: (
|
|
702
|
+
RequestCancelExternalWorkflowExecutionDecisionAttributes | None
|
|
703
|
+
)
|
|
704
|
+
startChildWorkflowExecutionDecisionAttributes: (
|
|
705
|
+
StartChildWorkflowExecutionDecisionAttributes | None
|
|
706
|
+
)
|
|
707
|
+
scheduleLambdaFunctionDecisionAttributes: ScheduleLambdaFunctionDecisionAttributes | None
|
|
708
|
+
|
|
709
|
+
|
|
710
|
+
DecisionList = list[Decision]
|
|
715
711
|
|
|
716
712
|
|
|
717
713
|
class StartLambdaFunctionFailedEventAttributes(TypedDict, total=False):
|
|
718
|
-
scheduledEventId:
|
|
719
|
-
cause:
|
|
720
|
-
message:
|
|
714
|
+
scheduledEventId: EventId | None
|
|
715
|
+
cause: StartLambdaFunctionFailedCause | None
|
|
716
|
+
message: CauseMessage | None
|
|
721
717
|
|
|
722
718
|
|
|
723
719
|
class ScheduleLambdaFunctionFailedEventAttributes(TypedDict, total=False):
|
|
@@ -730,20 +726,20 @@ class ScheduleLambdaFunctionFailedEventAttributes(TypedDict, total=False):
|
|
|
730
726
|
class LambdaFunctionTimedOutEventAttributes(TypedDict, total=False):
|
|
731
727
|
scheduledEventId: EventId
|
|
732
728
|
startedEventId: EventId
|
|
733
|
-
timeoutType:
|
|
729
|
+
timeoutType: LambdaFunctionTimeoutType | None
|
|
734
730
|
|
|
735
731
|
|
|
736
732
|
class LambdaFunctionFailedEventAttributes(TypedDict, total=False):
|
|
737
733
|
scheduledEventId: EventId
|
|
738
734
|
startedEventId: EventId
|
|
739
|
-
reason:
|
|
740
|
-
details:
|
|
735
|
+
reason: FailureReason | None
|
|
736
|
+
details: Data | None
|
|
741
737
|
|
|
742
738
|
|
|
743
739
|
class LambdaFunctionCompletedEventAttributes(TypedDict, total=False):
|
|
744
740
|
scheduledEventId: EventId
|
|
745
741
|
startedEventId: EventId
|
|
746
|
-
result:
|
|
742
|
+
result: Data | None
|
|
747
743
|
|
|
748
744
|
|
|
749
745
|
class LambdaFunctionStartedEventAttributes(TypedDict, total=False):
|
|
@@ -753,9 +749,9 @@ class LambdaFunctionStartedEventAttributes(TypedDict, total=False):
|
|
|
753
749
|
class LambdaFunctionScheduledEventAttributes(TypedDict, total=False):
|
|
754
750
|
id: FunctionId
|
|
755
751
|
name: FunctionName
|
|
756
|
-
control:
|
|
757
|
-
input:
|
|
758
|
-
startToCloseTimeout:
|
|
752
|
+
control: Data | None
|
|
753
|
+
input: FunctionInput | None
|
|
754
|
+
startToCloseTimeout: DurationInSecondsOptional | None
|
|
759
755
|
decisionTaskCompletedEventId: EventId
|
|
760
756
|
|
|
761
757
|
|
|
@@ -765,7 +761,7 @@ class StartChildWorkflowExecutionFailedEventAttributes(TypedDict, total=False):
|
|
|
765
761
|
workflowId: WorkflowId
|
|
766
762
|
initiatedEventId: EventId
|
|
767
763
|
decisionTaskCompletedEventId: EventId
|
|
768
|
-
control:
|
|
764
|
+
control: Data | None
|
|
769
765
|
|
|
770
766
|
|
|
771
767
|
class StartTimerFailedEventAttributes(TypedDict, total=False):
|
|
@@ -789,18 +785,18 @@ class ScheduleActivityTaskFailedEventAttributes(TypedDict, total=False):
|
|
|
789
785
|
|
|
790
786
|
class RequestCancelExternalWorkflowExecutionFailedEventAttributes(TypedDict, total=False):
|
|
791
787
|
workflowId: WorkflowId
|
|
792
|
-
runId:
|
|
788
|
+
runId: WorkflowRunIdOptional | None
|
|
793
789
|
cause: RequestCancelExternalWorkflowExecutionFailedCause
|
|
794
790
|
initiatedEventId: EventId
|
|
795
791
|
decisionTaskCompletedEventId: EventId
|
|
796
|
-
control:
|
|
792
|
+
control: Data | None
|
|
797
793
|
|
|
798
794
|
|
|
799
795
|
class RequestCancelExternalWorkflowExecutionInitiatedEventAttributes(TypedDict, total=False):
|
|
800
796
|
workflowId: WorkflowId
|
|
801
|
-
runId:
|
|
797
|
+
runId: WorkflowRunIdOptional | None
|
|
802
798
|
decisionTaskCompletedEventId: EventId
|
|
803
|
-
control:
|
|
799
|
+
control: Data | None
|
|
804
800
|
|
|
805
801
|
|
|
806
802
|
class ExternalWorkflowExecutionCancelRequestedEventAttributes(TypedDict, total=False):
|
|
@@ -810,11 +806,11 @@ class ExternalWorkflowExecutionCancelRequestedEventAttributes(TypedDict, total=F
|
|
|
810
806
|
|
|
811
807
|
class SignalExternalWorkflowExecutionFailedEventAttributes(TypedDict, total=False):
|
|
812
808
|
workflowId: WorkflowId
|
|
813
|
-
runId:
|
|
809
|
+
runId: WorkflowRunIdOptional | None
|
|
814
810
|
cause: SignalExternalWorkflowExecutionFailedCause
|
|
815
811
|
initiatedEventId: EventId
|
|
816
812
|
decisionTaskCompletedEventId: EventId
|
|
817
|
-
control:
|
|
813
|
+
control: Data | None
|
|
818
814
|
|
|
819
815
|
|
|
820
816
|
class ExternalWorkflowExecutionSignaledEventAttributes(TypedDict, total=False):
|
|
@@ -824,26 +820,26 @@ class ExternalWorkflowExecutionSignaledEventAttributes(TypedDict, total=False):
|
|
|
824
820
|
|
|
825
821
|
class SignalExternalWorkflowExecutionInitiatedEventAttributes(TypedDict, total=False):
|
|
826
822
|
workflowId: WorkflowId
|
|
827
|
-
runId:
|
|
823
|
+
runId: WorkflowRunIdOptional | None
|
|
828
824
|
signalName: SignalName
|
|
829
|
-
input:
|
|
825
|
+
input: Data | None
|
|
830
826
|
decisionTaskCompletedEventId: EventId
|
|
831
|
-
control:
|
|
827
|
+
control: Data | None
|
|
832
828
|
|
|
833
829
|
|
|
834
830
|
class StartChildWorkflowExecutionInitiatedEventAttributes(TypedDict, total=False):
|
|
835
831
|
workflowId: WorkflowId
|
|
836
832
|
workflowType: WorkflowType
|
|
837
|
-
control:
|
|
838
|
-
input:
|
|
839
|
-
executionStartToCloseTimeout:
|
|
833
|
+
control: Data | None
|
|
834
|
+
input: Data | None
|
|
835
|
+
executionStartToCloseTimeout: DurationInSecondsOptional | None
|
|
840
836
|
taskList: TaskList
|
|
841
|
-
taskPriority:
|
|
837
|
+
taskPriority: TaskPriority | None
|
|
842
838
|
decisionTaskCompletedEventId: EventId
|
|
843
839
|
childPolicy: ChildPolicy
|
|
844
|
-
taskStartToCloseTimeout:
|
|
845
|
-
tagList:
|
|
846
|
-
lambdaRole:
|
|
840
|
+
taskStartToCloseTimeout: DurationInSecondsOptional | None
|
|
841
|
+
tagList: TagList | None
|
|
842
|
+
lambdaRole: Arn | None
|
|
847
843
|
|
|
848
844
|
|
|
849
845
|
class TimerCanceledEventAttributes(TypedDict, total=False):
|
|
@@ -859,7 +855,7 @@ class TimerFiredEventAttributes(TypedDict, total=False):
|
|
|
859
855
|
|
|
860
856
|
class TimerStartedEventAttributes(TypedDict, total=False):
|
|
861
857
|
timerId: TimerId
|
|
862
|
-
control:
|
|
858
|
+
control: Data | None
|
|
863
859
|
startToFireTimeout: DurationInSeconds
|
|
864
860
|
decisionTaskCompletedEventId: EventId
|
|
865
861
|
|
|
@@ -872,15 +868,15 @@ class RecordMarkerFailedEventAttributes(TypedDict, total=False):
|
|
|
872
868
|
|
|
873
869
|
class MarkerRecordedEventAttributes(TypedDict, total=False):
|
|
874
870
|
markerName: MarkerName
|
|
875
|
-
details:
|
|
871
|
+
details: Data | None
|
|
876
872
|
decisionTaskCompletedEventId: EventId
|
|
877
873
|
|
|
878
874
|
|
|
879
875
|
class WorkflowExecutionSignaledEventAttributes(TypedDict, total=False):
|
|
880
876
|
signalName: SignalName
|
|
881
|
-
input:
|
|
882
|
-
externalWorkflowExecution:
|
|
883
|
-
externalInitiatedEventId:
|
|
877
|
+
input: Data | None
|
|
878
|
+
externalWorkflowExecution: WorkflowExecution | None
|
|
879
|
+
externalInitiatedEventId: EventId | None
|
|
884
880
|
|
|
885
881
|
|
|
886
882
|
class DecisionTaskTimedOutEventAttributes(TypedDict, total=False):
|
|
@@ -890,54 +886,54 @@ class DecisionTaskTimedOutEventAttributes(TypedDict, total=False):
|
|
|
890
886
|
|
|
891
887
|
|
|
892
888
|
class DecisionTaskCompletedEventAttributes(TypedDict, total=False):
|
|
893
|
-
executionContext:
|
|
889
|
+
executionContext: Data | None
|
|
894
890
|
scheduledEventId: EventId
|
|
895
891
|
startedEventId: EventId
|
|
896
|
-
taskList:
|
|
897
|
-
taskListScheduleToStartTimeout:
|
|
892
|
+
taskList: TaskList | None
|
|
893
|
+
taskListScheduleToStartTimeout: DurationInSecondsOptional | None
|
|
898
894
|
|
|
899
895
|
|
|
900
896
|
class DecisionTaskStartedEventAttributes(TypedDict, total=False):
|
|
901
|
-
identity:
|
|
897
|
+
identity: Identity | None
|
|
902
898
|
scheduledEventId: EventId
|
|
903
899
|
|
|
904
900
|
|
|
905
901
|
class DecisionTaskScheduledEventAttributes(TypedDict, total=False):
|
|
906
902
|
taskList: TaskList
|
|
907
|
-
taskPriority:
|
|
908
|
-
startToCloseTimeout:
|
|
909
|
-
scheduleToStartTimeout:
|
|
903
|
+
taskPriority: TaskPriority | None
|
|
904
|
+
startToCloseTimeout: DurationInSecondsOptional | None
|
|
905
|
+
scheduleToStartTimeout: DurationInSecondsOptional | None
|
|
910
906
|
|
|
911
907
|
|
|
912
908
|
class WorkflowExecutionCancelRequestedEventAttributes(TypedDict, total=False):
|
|
913
|
-
externalWorkflowExecution:
|
|
914
|
-
externalInitiatedEventId:
|
|
915
|
-
cause:
|
|
909
|
+
externalWorkflowExecution: WorkflowExecution | None
|
|
910
|
+
externalInitiatedEventId: EventId | None
|
|
911
|
+
cause: WorkflowExecutionCancelRequestedCause | None
|
|
916
912
|
|
|
917
913
|
|
|
918
914
|
class WorkflowExecutionTerminatedEventAttributes(TypedDict, total=False):
|
|
919
|
-
reason:
|
|
920
|
-
details:
|
|
915
|
+
reason: TerminateReason | None
|
|
916
|
+
details: Data | None
|
|
921
917
|
childPolicy: ChildPolicy
|
|
922
|
-
cause:
|
|
918
|
+
cause: WorkflowExecutionTerminatedCause | None
|
|
923
919
|
|
|
924
920
|
|
|
925
921
|
class WorkflowExecutionContinuedAsNewEventAttributes(TypedDict, total=False):
|
|
926
|
-
input:
|
|
922
|
+
input: Data | None
|
|
927
923
|
decisionTaskCompletedEventId: EventId
|
|
928
924
|
newExecutionRunId: WorkflowRunId
|
|
929
|
-
executionStartToCloseTimeout:
|
|
925
|
+
executionStartToCloseTimeout: DurationInSecondsOptional | None
|
|
930
926
|
taskList: TaskList
|
|
931
|
-
taskPriority:
|
|
932
|
-
taskStartToCloseTimeout:
|
|
927
|
+
taskPriority: TaskPriority | None
|
|
928
|
+
taskStartToCloseTimeout: DurationInSecondsOptional | None
|
|
933
929
|
childPolicy: ChildPolicy
|
|
934
|
-
tagList:
|
|
930
|
+
tagList: TagList | None
|
|
935
931
|
workflowType: WorkflowType
|
|
936
|
-
lambdaRole:
|
|
932
|
+
lambdaRole: Arn | None
|
|
937
933
|
|
|
938
934
|
|
|
939
935
|
class WorkflowExecutionCanceledEventAttributes(TypedDict, total=False):
|
|
940
|
-
details:
|
|
936
|
+
details: Data | None
|
|
941
937
|
decisionTaskCompletedEventId: EventId
|
|
942
938
|
|
|
943
939
|
|
|
@@ -952,134 +948,130 @@ class FailWorkflowExecutionFailedEventAttributes(TypedDict, total=False):
|
|
|
952
948
|
|
|
953
949
|
|
|
954
950
|
class WorkflowExecutionFailedEventAttributes(TypedDict, total=False):
|
|
955
|
-
reason:
|
|
956
|
-
details:
|
|
951
|
+
reason: FailureReason | None
|
|
952
|
+
details: Data | None
|
|
957
953
|
decisionTaskCompletedEventId: EventId
|
|
958
954
|
|
|
959
955
|
|
|
960
956
|
class WorkflowExecutionCompletedEventAttributes(TypedDict, total=False):
|
|
961
|
-
result:
|
|
957
|
+
result: Data | None
|
|
962
958
|
decisionTaskCompletedEventId: EventId
|
|
963
959
|
|
|
964
960
|
|
|
965
961
|
class WorkflowExecutionStartedEventAttributes(TypedDict, total=False):
|
|
966
|
-
input:
|
|
967
|
-
executionStartToCloseTimeout:
|
|
968
|
-
taskStartToCloseTimeout:
|
|
962
|
+
input: Data | None
|
|
963
|
+
executionStartToCloseTimeout: DurationInSecondsOptional | None
|
|
964
|
+
taskStartToCloseTimeout: DurationInSecondsOptional | None
|
|
969
965
|
childPolicy: ChildPolicy
|
|
970
966
|
taskList: TaskList
|
|
971
|
-
taskPriority:
|
|
967
|
+
taskPriority: TaskPriority | None
|
|
972
968
|
workflowType: WorkflowType
|
|
973
|
-
tagList:
|
|
974
|
-
continuedExecutionRunId:
|
|
975
|
-
parentWorkflowExecution:
|
|
976
|
-
parentInitiatedEventId:
|
|
977
|
-
lambdaRole:
|
|
969
|
+
tagList: TagList | None
|
|
970
|
+
continuedExecutionRunId: WorkflowRunIdOptional | None
|
|
971
|
+
parentWorkflowExecution: WorkflowExecution | None
|
|
972
|
+
parentInitiatedEventId: EventId | None
|
|
973
|
+
lambdaRole: Arn | None
|
|
978
974
|
|
|
979
975
|
|
|
980
976
|
class HistoryEvent(TypedDict, total=False):
|
|
981
977
|
eventTimestamp: Timestamp
|
|
982
978
|
eventType: EventType
|
|
983
979
|
eventId: EventId
|
|
984
|
-
workflowExecutionStartedEventAttributes:
|
|
985
|
-
workflowExecutionCompletedEventAttributes:
|
|
986
|
-
completeWorkflowExecutionFailedEventAttributes:
|
|
987
|
-
CompleteWorkflowExecutionFailedEventAttributes
|
|
988
|
-
|
|
989
|
-
workflowExecutionFailedEventAttributes:
|
|
990
|
-
failWorkflowExecutionFailedEventAttributes:
|
|
991
|
-
workflowExecutionTimedOutEventAttributes:
|
|
992
|
-
workflowExecutionCanceledEventAttributes:
|
|
993
|
-
cancelWorkflowExecutionFailedEventAttributes:
|
|
994
|
-
CancelWorkflowExecutionFailedEventAttributes
|
|
995
|
-
|
|
996
|
-
workflowExecutionContinuedAsNewEventAttributes:
|
|
997
|
-
WorkflowExecutionContinuedAsNewEventAttributes
|
|
998
|
-
|
|
999
|
-
continueAsNewWorkflowExecutionFailedEventAttributes:
|
|
1000
|
-
ContinueAsNewWorkflowExecutionFailedEventAttributes
|
|
1001
|
-
|
|
1002
|
-
workflowExecutionTerminatedEventAttributes:
|
|
1003
|
-
workflowExecutionCancelRequestedEventAttributes:
|
|
1004
|
-
WorkflowExecutionCancelRequestedEventAttributes
|
|
1005
|
-
|
|
1006
|
-
decisionTaskScheduledEventAttributes:
|
|
1007
|
-
decisionTaskStartedEventAttributes:
|
|
1008
|
-
decisionTaskCompletedEventAttributes:
|
|
1009
|
-
decisionTaskTimedOutEventAttributes:
|
|
1010
|
-
activityTaskScheduledEventAttributes:
|
|
1011
|
-
activityTaskStartedEventAttributes:
|
|
1012
|
-
activityTaskCompletedEventAttributes:
|
|
1013
|
-
activityTaskFailedEventAttributes:
|
|
1014
|
-
activityTaskTimedOutEventAttributes:
|
|
1015
|
-
activityTaskCanceledEventAttributes:
|
|
1016
|
-
activityTaskCancelRequestedEventAttributes:
|
|
1017
|
-
workflowExecutionSignaledEventAttributes:
|
|
1018
|
-
markerRecordedEventAttributes:
|
|
1019
|
-
recordMarkerFailedEventAttributes:
|
|
1020
|
-
timerStartedEventAttributes:
|
|
1021
|
-
timerFiredEventAttributes:
|
|
1022
|
-
timerCanceledEventAttributes:
|
|
1023
|
-
startChildWorkflowExecutionInitiatedEventAttributes:
|
|
1024
|
-
StartChildWorkflowExecutionInitiatedEventAttributes
|
|
1025
|
-
|
|
1026
|
-
childWorkflowExecutionStartedEventAttributes:
|
|
1027
|
-
ChildWorkflowExecutionStartedEventAttributes
|
|
1028
|
-
|
|
1029
|
-
childWorkflowExecutionCompletedEventAttributes:
|
|
1030
|
-
ChildWorkflowExecutionCompletedEventAttributes
|
|
1031
|
-
|
|
1032
|
-
childWorkflowExecutionFailedEventAttributes:
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
startLambdaFunctionFailedEventAttributes: Optional[StartLambdaFunctionFailedEventAttributes]
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
HistoryEventList = List[HistoryEvent]
|
|
980
|
+
workflowExecutionStartedEventAttributes: WorkflowExecutionStartedEventAttributes | None
|
|
981
|
+
workflowExecutionCompletedEventAttributes: WorkflowExecutionCompletedEventAttributes | None
|
|
982
|
+
completeWorkflowExecutionFailedEventAttributes: (
|
|
983
|
+
CompleteWorkflowExecutionFailedEventAttributes | None
|
|
984
|
+
)
|
|
985
|
+
workflowExecutionFailedEventAttributes: WorkflowExecutionFailedEventAttributes | None
|
|
986
|
+
failWorkflowExecutionFailedEventAttributes: FailWorkflowExecutionFailedEventAttributes | None
|
|
987
|
+
workflowExecutionTimedOutEventAttributes: WorkflowExecutionTimedOutEventAttributes | None
|
|
988
|
+
workflowExecutionCanceledEventAttributes: WorkflowExecutionCanceledEventAttributes | None
|
|
989
|
+
cancelWorkflowExecutionFailedEventAttributes: (
|
|
990
|
+
CancelWorkflowExecutionFailedEventAttributes | None
|
|
991
|
+
)
|
|
992
|
+
workflowExecutionContinuedAsNewEventAttributes: (
|
|
993
|
+
WorkflowExecutionContinuedAsNewEventAttributes | None
|
|
994
|
+
)
|
|
995
|
+
continueAsNewWorkflowExecutionFailedEventAttributes: (
|
|
996
|
+
ContinueAsNewWorkflowExecutionFailedEventAttributes | None
|
|
997
|
+
)
|
|
998
|
+
workflowExecutionTerminatedEventAttributes: WorkflowExecutionTerminatedEventAttributes | None
|
|
999
|
+
workflowExecutionCancelRequestedEventAttributes: (
|
|
1000
|
+
WorkflowExecutionCancelRequestedEventAttributes | None
|
|
1001
|
+
)
|
|
1002
|
+
decisionTaskScheduledEventAttributes: DecisionTaskScheduledEventAttributes | None
|
|
1003
|
+
decisionTaskStartedEventAttributes: DecisionTaskStartedEventAttributes | None
|
|
1004
|
+
decisionTaskCompletedEventAttributes: DecisionTaskCompletedEventAttributes | None
|
|
1005
|
+
decisionTaskTimedOutEventAttributes: DecisionTaskTimedOutEventAttributes | None
|
|
1006
|
+
activityTaskScheduledEventAttributes: ActivityTaskScheduledEventAttributes | None
|
|
1007
|
+
activityTaskStartedEventAttributes: ActivityTaskStartedEventAttributes | None
|
|
1008
|
+
activityTaskCompletedEventAttributes: ActivityTaskCompletedEventAttributes | None
|
|
1009
|
+
activityTaskFailedEventAttributes: ActivityTaskFailedEventAttributes | None
|
|
1010
|
+
activityTaskTimedOutEventAttributes: ActivityTaskTimedOutEventAttributes | None
|
|
1011
|
+
activityTaskCanceledEventAttributes: ActivityTaskCanceledEventAttributes | None
|
|
1012
|
+
activityTaskCancelRequestedEventAttributes: ActivityTaskCancelRequestedEventAttributes | None
|
|
1013
|
+
workflowExecutionSignaledEventAttributes: WorkflowExecutionSignaledEventAttributes | None
|
|
1014
|
+
markerRecordedEventAttributes: MarkerRecordedEventAttributes | None
|
|
1015
|
+
recordMarkerFailedEventAttributes: RecordMarkerFailedEventAttributes | None
|
|
1016
|
+
timerStartedEventAttributes: TimerStartedEventAttributes | None
|
|
1017
|
+
timerFiredEventAttributes: TimerFiredEventAttributes | None
|
|
1018
|
+
timerCanceledEventAttributes: TimerCanceledEventAttributes | None
|
|
1019
|
+
startChildWorkflowExecutionInitiatedEventAttributes: (
|
|
1020
|
+
StartChildWorkflowExecutionInitiatedEventAttributes | None
|
|
1021
|
+
)
|
|
1022
|
+
childWorkflowExecutionStartedEventAttributes: (
|
|
1023
|
+
ChildWorkflowExecutionStartedEventAttributes | None
|
|
1024
|
+
)
|
|
1025
|
+
childWorkflowExecutionCompletedEventAttributes: (
|
|
1026
|
+
ChildWorkflowExecutionCompletedEventAttributes | None
|
|
1027
|
+
)
|
|
1028
|
+
childWorkflowExecutionFailedEventAttributes: ChildWorkflowExecutionFailedEventAttributes | None
|
|
1029
|
+
childWorkflowExecutionTimedOutEventAttributes: (
|
|
1030
|
+
ChildWorkflowExecutionTimedOutEventAttributes | None
|
|
1031
|
+
)
|
|
1032
|
+
childWorkflowExecutionCanceledEventAttributes: (
|
|
1033
|
+
ChildWorkflowExecutionCanceledEventAttributes | None
|
|
1034
|
+
)
|
|
1035
|
+
childWorkflowExecutionTerminatedEventAttributes: (
|
|
1036
|
+
ChildWorkflowExecutionTerminatedEventAttributes | None
|
|
1037
|
+
)
|
|
1038
|
+
signalExternalWorkflowExecutionInitiatedEventAttributes: (
|
|
1039
|
+
SignalExternalWorkflowExecutionInitiatedEventAttributes | None
|
|
1040
|
+
)
|
|
1041
|
+
externalWorkflowExecutionSignaledEventAttributes: (
|
|
1042
|
+
ExternalWorkflowExecutionSignaledEventAttributes | None
|
|
1043
|
+
)
|
|
1044
|
+
signalExternalWorkflowExecutionFailedEventAttributes: (
|
|
1045
|
+
SignalExternalWorkflowExecutionFailedEventAttributes | None
|
|
1046
|
+
)
|
|
1047
|
+
externalWorkflowExecutionCancelRequestedEventAttributes: (
|
|
1048
|
+
ExternalWorkflowExecutionCancelRequestedEventAttributes | None
|
|
1049
|
+
)
|
|
1050
|
+
requestCancelExternalWorkflowExecutionInitiatedEventAttributes: (
|
|
1051
|
+
RequestCancelExternalWorkflowExecutionInitiatedEventAttributes | None
|
|
1052
|
+
)
|
|
1053
|
+
requestCancelExternalWorkflowExecutionFailedEventAttributes: (
|
|
1054
|
+
RequestCancelExternalWorkflowExecutionFailedEventAttributes | None
|
|
1055
|
+
)
|
|
1056
|
+
scheduleActivityTaskFailedEventAttributes: ScheduleActivityTaskFailedEventAttributes | None
|
|
1057
|
+
requestCancelActivityTaskFailedEventAttributes: (
|
|
1058
|
+
RequestCancelActivityTaskFailedEventAttributes | None
|
|
1059
|
+
)
|
|
1060
|
+
startTimerFailedEventAttributes: StartTimerFailedEventAttributes | None
|
|
1061
|
+
cancelTimerFailedEventAttributes: CancelTimerFailedEventAttributes | None
|
|
1062
|
+
startChildWorkflowExecutionFailedEventAttributes: (
|
|
1063
|
+
StartChildWorkflowExecutionFailedEventAttributes | None
|
|
1064
|
+
)
|
|
1065
|
+
lambdaFunctionScheduledEventAttributes: LambdaFunctionScheduledEventAttributes | None
|
|
1066
|
+
lambdaFunctionStartedEventAttributes: LambdaFunctionStartedEventAttributes | None
|
|
1067
|
+
lambdaFunctionCompletedEventAttributes: LambdaFunctionCompletedEventAttributes | None
|
|
1068
|
+
lambdaFunctionFailedEventAttributes: LambdaFunctionFailedEventAttributes | None
|
|
1069
|
+
lambdaFunctionTimedOutEventAttributes: LambdaFunctionTimedOutEventAttributes | None
|
|
1070
|
+
scheduleLambdaFunctionFailedEventAttributes: ScheduleLambdaFunctionFailedEventAttributes | None
|
|
1071
|
+
startLambdaFunctionFailedEventAttributes: StartLambdaFunctionFailedEventAttributes | None
|
|
1072
|
+
|
|
1073
|
+
|
|
1074
|
+
HistoryEventList = list[HistoryEvent]
|
|
1083
1075
|
|
|
1084
1076
|
|
|
1085
1077
|
class DecisionTask(TypedDict, total=False):
|
|
@@ -1088,8 +1080,8 @@ class DecisionTask(TypedDict, total=False):
|
|
|
1088
1080
|
workflowExecution: WorkflowExecution
|
|
1089
1081
|
workflowType: WorkflowType
|
|
1090
1082
|
events: HistoryEventList
|
|
1091
|
-
nextPageToken:
|
|
1092
|
-
previousStartedEventId:
|
|
1083
|
+
nextPageToken: PageToken | None
|
|
1084
|
+
previousStartedEventId: EventId | None
|
|
1093
1085
|
|
|
1094
1086
|
|
|
1095
1087
|
class DeleteActivityTypeInput(ServiceRequest):
|
|
@@ -1142,8 +1134,8 @@ class DomainConfiguration(TypedDict, total=False):
|
|
|
1142
1134
|
class DomainInfo(TypedDict, total=False):
|
|
1143
1135
|
name: DomainName
|
|
1144
1136
|
status: RegistrationStatus
|
|
1145
|
-
description:
|
|
1146
|
-
arn:
|
|
1137
|
+
description: Description | None
|
|
1138
|
+
arn: Arn | None
|
|
1147
1139
|
|
|
1148
1140
|
|
|
1149
1141
|
class DomainDetail(TypedDict, total=False):
|
|
@@ -1151,65 +1143,65 @@ class DomainDetail(TypedDict, total=False):
|
|
|
1151
1143
|
configuration: DomainConfiguration
|
|
1152
1144
|
|
|
1153
1145
|
|
|
1154
|
-
DomainInfoList =
|
|
1146
|
+
DomainInfoList = list[DomainInfo]
|
|
1155
1147
|
|
|
1156
1148
|
|
|
1157
1149
|
class DomainInfos(TypedDict, total=False):
|
|
1158
1150
|
domainInfos: DomainInfoList
|
|
1159
|
-
nextPageToken:
|
|
1151
|
+
nextPageToken: PageToken | None
|
|
1160
1152
|
|
|
1161
1153
|
|
|
1162
1154
|
class GetWorkflowExecutionHistoryInput(ServiceRequest):
|
|
1163
1155
|
domain: DomainName
|
|
1164
1156
|
execution: WorkflowExecution
|
|
1165
|
-
nextPageToken:
|
|
1166
|
-
maximumPageSize:
|
|
1167
|
-
reverseOrder:
|
|
1157
|
+
nextPageToken: PageToken | None
|
|
1158
|
+
maximumPageSize: PageSize | None
|
|
1159
|
+
reverseOrder: ReverseOrder | None
|
|
1168
1160
|
|
|
1169
1161
|
|
|
1170
1162
|
class History(TypedDict, total=False):
|
|
1171
1163
|
events: HistoryEventList
|
|
1172
|
-
nextPageToken:
|
|
1164
|
+
nextPageToken: PageToken | None
|
|
1173
1165
|
|
|
1174
1166
|
|
|
1175
1167
|
class ListActivityTypesInput(ServiceRequest):
|
|
1176
1168
|
domain: DomainName
|
|
1177
|
-
name:
|
|
1169
|
+
name: Name | None
|
|
1178
1170
|
registrationStatus: RegistrationStatus
|
|
1179
|
-
nextPageToken:
|
|
1180
|
-
maximumPageSize:
|
|
1181
|
-
reverseOrder:
|
|
1171
|
+
nextPageToken: PageToken | None
|
|
1172
|
+
maximumPageSize: PageSize | None
|
|
1173
|
+
reverseOrder: ReverseOrder | None
|
|
1182
1174
|
|
|
1183
1175
|
|
|
1184
1176
|
class ListClosedWorkflowExecutionsInput(ServiceRequest):
|
|
1185
1177
|
domain: DomainName
|
|
1186
|
-
startTimeFilter:
|
|
1187
|
-
closeTimeFilter:
|
|
1188
|
-
executionFilter:
|
|
1189
|
-
closeStatusFilter:
|
|
1190
|
-
typeFilter:
|
|
1191
|
-
tagFilter:
|
|
1192
|
-
nextPageToken:
|
|
1193
|
-
maximumPageSize:
|
|
1194
|
-
reverseOrder:
|
|
1178
|
+
startTimeFilter: ExecutionTimeFilter | None
|
|
1179
|
+
closeTimeFilter: ExecutionTimeFilter | None
|
|
1180
|
+
executionFilter: WorkflowExecutionFilter | None
|
|
1181
|
+
closeStatusFilter: CloseStatusFilter | None
|
|
1182
|
+
typeFilter: WorkflowTypeFilter | None
|
|
1183
|
+
tagFilter: TagFilter | None
|
|
1184
|
+
nextPageToken: PageToken | None
|
|
1185
|
+
maximumPageSize: PageSize | None
|
|
1186
|
+
reverseOrder: ReverseOrder | None
|
|
1195
1187
|
|
|
1196
1188
|
|
|
1197
1189
|
class ListDomainsInput(ServiceRequest):
|
|
1198
|
-
nextPageToken:
|
|
1190
|
+
nextPageToken: PageToken | None
|
|
1199
1191
|
registrationStatus: RegistrationStatus
|
|
1200
|
-
maximumPageSize:
|
|
1201
|
-
reverseOrder:
|
|
1192
|
+
maximumPageSize: PageSize | None
|
|
1193
|
+
reverseOrder: ReverseOrder | None
|
|
1202
1194
|
|
|
1203
1195
|
|
|
1204
1196
|
class ListOpenWorkflowExecutionsInput(ServiceRequest):
|
|
1205
1197
|
domain: DomainName
|
|
1206
1198
|
startTimeFilter: ExecutionTimeFilter
|
|
1207
|
-
typeFilter:
|
|
1208
|
-
tagFilter:
|
|
1209
|
-
nextPageToken:
|
|
1210
|
-
maximumPageSize:
|
|
1211
|
-
reverseOrder:
|
|
1212
|
-
executionFilter:
|
|
1199
|
+
typeFilter: WorkflowTypeFilter | None
|
|
1200
|
+
tagFilter: TagFilter | None
|
|
1201
|
+
nextPageToken: PageToken | None
|
|
1202
|
+
maximumPageSize: PageSize | None
|
|
1203
|
+
reverseOrder: ReverseOrder | None
|
|
1204
|
+
executionFilter: WorkflowExecutionFilter | None
|
|
1213
1205
|
|
|
1214
1206
|
|
|
1215
1207
|
class ListTagsForResourceInput(ServiceRequest):
|
|
@@ -1218,141 +1210,141 @@ class ListTagsForResourceInput(ServiceRequest):
|
|
|
1218
1210
|
|
|
1219
1211
|
class ResourceTag(TypedDict, total=False):
|
|
1220
1212
|
key: ResourceTagKey
|
|
1221
|
-
value:
|
|
1213
|
+
value: ResourceTagValue | None
|
|
1222
1214
|
|
|
1223
1215
|
|
|
1224
|
-
ResourceTagList =
|
|
1216
|
+
ResourceTagList = list[ResourceTag]
|
|
1225
1217
|
|
|
1226
1218
|
|
|
1227
1219
|
class ListTagsForResourceOutput(TypedDict, total=False):
|
|
1228
|
-
tags:
|
|
1220
|
+
tags: ResourceTagList | None
|
|
1229
1221
|
|
|
1230
1222
|
|
|
1231
1223
|
class ListWorkflowTypesInput(ServiceRequest):
|
|
1232
1224
|
domain: DomainName
|
|
1233
|
-
name:
|
|
1225
|
+
name: Name | None
|
|
1234
1226
|
registrationStatus: RegistrationStatus
|
|
1235
|
-
nextPageToken:
|
|
1236
|
-
maximumPageSize:
|
|
1237
|
-
reverseOrder:
|
|
1227
|
+
nextPageToken: PageToken | None
|
|
1228
|
+
maximumPageSize: PageSize | None
|
|
1229
|
+
reverseOrder: ReverseOrder | None
|
|
1238
1230
|
|
|
1239
1231
|
|
|
1240
1232
|
class PendingTaskCount(TypedDict, total=False):
|
|
1241
1233
|
count: Count
|
|
1242
|
-
truncated:
|
|
1234
|
+
truncated: Truncated | None
|
|
1243
1235
|
|
|
1244
1236
|
|
|
1245
1237
|
class PollForActivityTaskInput(ServiceRequest):
|
|
1246
1238
|
domain: DomainName
|
|
1247
1239
|
taskList: TaskList
|
|
1248
|
-
identity:
|
|
1240
|
+
identity: Identity | None
|
|
1249
1241
|
|
|
1250
1242
|
|
|
1251
1243
|
class PollForDecisionTaskInput(ServiceRequest):
|
|
1252
1244
|
domain: DomainName
|
|
1253
1245
|
taskList: TaskList
|
|
1254
|
-
identity:
|
|
1255
|
-
nextPageToken:
|
|
1256
|
-
maximumPageSize:
|
|
1257
|
-
reverseOrder:
|
|
1258
|
-
startAtPreviousStartedEvent:
|
|
1246
|
+
identity: Identity | None
|
|
1247
|
+
nextPageToken: PageToken | None
|
|
1248
|
+
maximumPageSize: PageSize | None
|
|
1249
|
+
reverseOrder: ReverseOrder | None
|
|
1250
|
+
startAtPreviousStartedEvent: StartAtPreviousStartedEvent | None
|
|
1259
1251
|
|
|
1260
1252
|
|
|
1261
1253
|
class RecordActivityTaskHeartbeatInput(ServiceRequest):
|
|
1262
1254
|
taskToken: TaskToken
|
|
1263
|
-
details:
|
|
1255
|
+
details: LimitedData | None
|
|
1264
1256
|
|
|
1265
1257
|
|
|
1266
1258
|
class RegisterActivityTypeInput(ServiceRequest):
|
|
1267
1259
|
domain: DomainName
|
|
1268
1260
|
name: Name
|
|
1269
1261
|
version: Version
|
|
1270
|
-
description:
|
|
1271
|
-
defaultTaskStartToCloseTimeout:
|
|
1272
|
-
defaultTaskHeartbeatTimeout:
|
|
1273
|
-
defaultTaskList:
|
|
1274
|
-
defaultTaskPriority:
|
|
1275
|
-
defaultTaskScheduleToStartTimeout:
|
|
1276
|
-
defaultTaskScheduleToCloseTimeout:
|
|
1262
|
+
description: Description | None
|
|
1263
|
+
defaultTaskStartToCloseTimeout: DurationInSecondsOptional | None
|
|
1264
|
+
defaultTaskHeartbeatTimeout: DurationInSecondsOptional | None
|
|
1265
|
+
defaultTaskList: TaskList | None
|
|
1266
|
+
defaultTaskPriority: TaskPriority | None
|
|
1267
|
+
defaultTaskScheduleToStartTimeout: DurationInSecondsOptional | None
|
|
1268
|
+
defaultTaskScheduleToCloseTimeout: DurationInSecondsOptional | None
|
|
1277
1269
|
|
|
1278
1270
|
|
|
1279
1271
|
class RegisterDomainInput(ServiceRequest):
|
|
1280
1272
|
name: DomainName
|
|
1281
|
-
description:
|
|
1273
|
+
description: Description | None
|
|
1282
1274
|
workflowExecutionRetentionPeriodInDays: DurationInDays
|
|
1283
|
-
tags:
|
|
1275
|
+
tags: ResourceTagList | None
|
|
1284
1276
|
|
|
1285
1277
|
|
|
1286
1278
|
class RegisterWorkflowTypeInput(ServiceRequest):
|
|
1287
1279
|
domain: DomainName
|
|
1288
1280
|
name: Name
|
|
1289
1281
|
version: Version
|
|
1290
|
-
description:
|
|
1291
|
-
defaultTaskStartToCloseTimeout:
|
|
1292
|
-
defaultExecutionStartToCloseTimeout:
|
|
1293
|
-
defaultTaskList:
|
|
1294
|
-
defaultTaskPriority:
|
|
1295
|
-
defaultChildPolicy:
|
|
1296
|
-
defaultLambdaRole:
|
|
1282
|
+
description: Description | None
|
|
1283
|
+
defaultTaskStartToCloseTimeout: DurationInSecondsOptional | None
|
|
1284
|
+
defaultExecutionStartToCloseTimeout: DurationInSecondsOptional | None
|
|
1285
|
+
defaultTaskList: TaskList | None
|
|
1286
|
+
defaultTaskPriority: TaskPriority | None
|
|
1287
|
+
defaultChildPolicy: ChildPolicy | None
|
|
1288
|
+
defaultLambdaRole: Arn | None
|
|
1297
1289
|
|
|
1298
1290
|
|
|
1299
1291
|
class RequestCancelWorkflowExecutionInput(ServiceRequest):
|
|
1300
1292
|
domain: DomainName
|
|
1301
1293
|
workflowId: WorkflowId
|
|
1302
|
-
runId:
|
|
1294
|
+
runId: WorkflowRunIdOptional | None
|
|
1303
1295
|
|
|
1304
1296
|
|
|
1305
|
-
ResourceTagKeyList =
|
|
1297
|
+
ResourceTagKeyList = list[ResourceTagKey]
|
|
1306
1298
|
|
|
1307
1299
|
|
|
1308
1300
|
class RespondActivityTaskCanceledInput(ServiceRequest):
|
|
1309
1301
|
taskToken: TaskToken
|
|
1310
|
-
details:
|
|
1302
|
+
details: Data | None
|
|
1311
1303
|
|
|
1312
1304
|
|
|
1313
1305
|
class RespondActivityTaskCompletedInput(ServiceRequest):
|
|
1314
1306
|
taskToken: TaskToken
|
|
1315
|
-
result:
|
|
1307
|
+
result: Data | None
|
|
1316
1308
|
|
|
1317
1309
|
|
|
1318
1310
|
class RespondActivityTaskFailedInput(ServiceRequest):
|
|
1319
1311
|
taskToken: TaskToken
|
|
1320
|
-
reason:
|
|
1321
|
-
details:
|
|
1312
|
+
reason: FailureReason | None
|
|
1313
|
+
details: Data | None
|
|
1322
1314
|
|
|
1323
1315
|
|
|
1324
1316
|
class RespondDecisionTaskCompletedInput(ServiceRequest):
|
|
1325
1317
|
taskToken: TaskToken
|
|
1326
|
-
decisions:
|
|
1327
|
-
executionContext:
|
|
1328
|
-
taskList:
|
|
1329
|
-
taskListScheduleToStartTimeout:
|
|
1318
|
+
decisions: DecisionList | None
|
|
1319
|
+
executionContext: Data | None
|
|
1320
|
+
taskList: TaskList | None
|
|
1321
|
+
taskListScheduleToStartTimeout: DurationInSecondsOptional | None
|
|
1330
1322
|
|
|
1331
1323
|
|
|
1332
1324
|
class Run(TypedDict, total=False):
|
|
1333
|
-
runId:
|
|
1325
|
+
runId: WorkflowRunId | None
|
|
1334
1326
|
|
|
1335
1327
|
|
|
1336
1328
|
class SignalWorkflowExecutionInput(ServiceRequest):
|
|
1337
1329
|
domain: DomainName
|
|
1338
1330
|
workflowId: WorkflowId
|
|
1339
|
-
runId:
|
|
1331
|
+
runId: WorkflowRunIdOptional | None
|
|
1340
1332
|
signalName: SignalName
|
|
1341
|
-
input:
|
|
1333
|
+
input: Data | None
|
|
1342
1334
|
|
|
1343
1335
|
|
|
1344
1336
|
class StartWorkflowExecutionInput(ServiceRequest):
|
|
1345
1337
|
domain: DomainName
|
|
1346
1338
|
workflowId: WorkflowId
|
|
1347
1339
|
workflowType: WorkflowType
|
|
1348
|
-
taskList:
|
|
1349
|
-
taskPriority:
|
|
1350
|
-
input:
|
|
1351
|
-
executionStartToCloseTimeout:
|
|
1352
|
-
tagList:
|
|
1353
|
-
taskStartToCloseTimeout:
|
|
1354
|
-
childPolicy:
|
|
1355
|
-
lambdaRole:
|
|
1340
|
+
taskList: TaskList | None
|
|
1341
|
+
taskPriority: TaskPriority | None
|
|
1342
|
+
input: Data | None
|
|
1343
|
+
executionStartToCloseTimeout: DurationInSecondsOptional | None
|
|
1344
|
+
tagList: TagList | None
|
|
1345
|
+
taskStartToCloseTimeout: DurationInSecondsOptional | None
|
|
1346
|
+
childPolicy: ChildPolicy | None
|
|
1347
|
+
lambdaRole: Arn | None
|
|
1356
1348
|
|
|
1357
1349
|
|
|
1358
1350
|
class TagResourceInput(ServiceRequest):
|
|
@@ -1363,10 +1355,10 @@ class TagResourceInput(ServiceRequest):
|
|
|
1363
1355
|
class TerminateWorkflowExecutionInput(ServiceRequest):
|
|
1364
1356
|
domain: DomainName
|
|
1365
1357
|
workflowId: WorkflowId
|
|
1366
|
-
runId:
|
|
1367
|
-
reason:
|
|
1368
|
-
details:
|
|
1369
|
-
childPolicy:
|
|
1358
|
+
runId: WorkflowRunIdOptional | None
|
|
1359
|
+
reason: TerminateReason | None
|
|
1360
|
+
details: Data | None
|
|
1361
|
+
childPolicy: ChildPolicy | None
|
|
1370
1362
|
|
|
1371
1363
|
|
|
1372
1364
|
class UndeprecateActivityTypeInput(ServiceRequest):
|
|
@@ -1392,14 +1384,14 @@ class WorkflowExecutionConfiguration(TypedDict, total=False):
|
|
|
1392
1384
|
taskStartToCloseTimeout: DurationInSeconds
|
|
1393
1385
|
executionStartToCloseTimeout: DurationInSeconds
|
|
1394
1386
|
taskList: TaskList
|
|
1395
|
-
taskPriority:
|
|
1387
|
+
taskPriority: TaskPriority | None
|
|
1396
1388
|
childPolicy: ChildPolicy
|
|
1397
|
-
lambdaRole:
|
|
1389
|
+
lambdaRole: Arn | None
|
|
1398
1390
|
|
|
1399
1391
|
|
|
1400
1392
|
class WorkflowExecutionCount(TypedDict, total=False):
|
|
1401
1393
|
count: Count
|
|
1402
|
-
truncated:
|
|
1394
|
+
truncated: Truncated | None
|
|
1403
1395
|
|
|
1404
1396
|
|
|
1405
1397
|
class WorkflowExecutionOpenCounts(TypedDict, total=False):
|
|
@@ -1407,52 +1399,52 @@ class WorkflowExecutionOpenCounts(TypedDict, total=False):
|
|
|
1407
1399
|
openDecisionTasks: OpenDecisionTasksCount
|
|
1408
1400
|
openTimers: Count
|
|
1409
1401
|
openChildWorkflowExecutions: Count
|
|
1410
|
-
openLambdaFunctions:
|
|
1402
|
+
openLambdaFunctions: Count | None
|
|
1411
1403
|
|
|
1412
1404
|
|
|
1413
1405
|
class WorkflowExecutionInfo(TypedDict, total=False):
|
|
1414
1406
|
execution: WorkflowExecution
|
|
1415
1407
|
workflowType: WorkflowType
|
|
1416
1408
|
startTimestamp: Timestamp
|
|
1417
|
-
closeTimestamp:
|
|
1409
|
+
closeTimestamp: Timestamp | None
|
|
1418
1410
|
executionStatus: ExecutionStatus
|
|
1419
|
-
closeStatus:
|
|
1420
|
-
parent:
|
|
1421
|
-
tagList:
|
|
1422
|
-
cancelRequested:
|
|
1411
|
+
closeStatus: CloseStatus | None
|
|
1412
|
+
parent: WorkflowExecution | None
|
|
1413
|
+
tagList: TagList | None
|
|
1414
|
+
cancelRequested: Canceled | None
|
|
1423
1415
|
|
|
1424
1416
|
|
|
1425
1417
|
class WorkflowExecutionDetail(TypedDict, total=False):
|
|
1426
1418
|
executionInfo: WorkflowExecutionInfo
|
|
1427
1419
|
executionConfiguration: WorkflowExecutionConfiguration
|
|
1428
1420
|
openCounts: WorkflowExecutionOpenCounts
|
|
1429
|
-
latestActivityTaskTimestamp:
|
|
1430
|
-
latestExecutionContext:
|
|
1421
|
+
latestActivityTaskTimestamp: Timestamp | None
|
|
1422
|
+
latestExecutionContext: Data | None
|
|
1431
1423
|
|
|
1432
1424
|
|
|
1433
|
-
WorkflowExecutionInfoList =
|
|
1425
|
+
WorkflowExecutionInfoList = list[WorkflowExecutionInfo]
|
|
1434
1426
|
|
|
1435
1427
|
|
|
1436
1428
|
class WorkflowExecutionInfos(TypedDict, total=False):
|
|
1437
1429
|
executionInfos: WorkflowExecutionInfoList
|
|
1438
|
-
nextPageToken:
|
|
1430
|
+
nextPageToken: PageToken | None
|
|
1439
1431
|
|
|
1440
1432
|
|
|
1441
1433
|
class WorkflowTypeConfiguration(TypedDict, total=False):
|
|
1442
|
-
defaultTaskStartToCloseTimeout:
|
|
1443
|
-
defaultExecutionStartToCloseTimeout:
|
|
1444
|
-
defaultTaskList:
|
|
1445
|
-
defaultTaskPriority:
|
|
1446
|
-
defaultChildPolicy:
|
|
1447
|
-
defaultLambdaRole:
|
|
1434
|
+
defaultTaskStartToCloseTimeout: DurationInSecondsOptional | None
|
|
1435
|
+
defaultExecutionStartToCloseTimeout: DurationInSecondsOptional | None
|
|
1436
|
+
defaultTaskList: TaskList | None
|
|
1437
|
+
defaultTaskPriority: TaskPriority | None
|
|
1438
|
+
defaultChildPolicy: ChildPolicy | None
|
|
1439
|
+
defaultLambdaRole: Arn | None
|
|
1448
1440
|
|
|
1449
1441
|
|
|
1450
1442
|
class WorkflowTypeInfo(TypedDict, total=False):
|
|
1451
1443
|
workflowType: WorkflowType
|
|
1452
1444
|
status: RegistrationStatus
|
|
1453
|
-
description:
|
|
1445
|
+
description: Description | None
|
|
1454
1446
|
creationDate: Timestamp
|
|
1455
|
-
deprecationDate:
|
|
1447
|
+
deprecationDate: Timestamp | None
|
|
1456
1448
|
|
|
1457
1449
|
|
|
1458
1450
|
class WorkflowTypeDetail(TypedDict, total=False):
|
|
@@ -1460,17 +1452,17 @@ class WorkflowTypeDetail(TypedDict, total=False):
|
|
|
1460
1452
|
configuration: WorkflowTypeConfiguration
|
|
1461
1453
|
|
|
1462
1454
|
|
|
1463
|
-
WorkflowTypeInfoList =
|
|
1455
|
+
WorkflowTypeInfoList = list[WorkflowTypeInfo]
|
|
1464
1456
|
|
|
1465
1457
|
|
|
1466
1458
|
class WorkflowTypeInfos(TypedDict, total=False):
|
|
1467
1459
|
typeInfos: WorkflowTypeInfoList
|
|
1468
|
-
nextPageToken:
|
|
1460
|
+
nextPageToken: PageToken | None
|
|
1469
1461
|
|
|
1470
1462
|
|
|
1471
1463
|
class SwfApi:
|
|
1472
|
-
service = "swf"
|
|
1473
|
-
version = "2012-01-25"
|
|
1464
|
+
service: str = "swf"
|
|
1465
|
+
version: str = "2012-01-25"
|
|
1474
1466
|
|
|
1475
1467
|
@handler("CountClosedWorkflowExecutions")
|
|
1476
1468
|
def count_closed_workflow_executions(
|