localstack-core 4.10.1.dev7__py3-none-any.whl → 4.11.2.dev14__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 +604 -561
- localstack/aws/api/cloudcontrol/__init__.py +63 -63
- localstack/aws/api/cloudformation/__init__.py +1201 -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 +10062 -8826
- 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 +866 -572
- localstack/aws/api/kinesis/__init__.py +235 -147
- localstack/aws/api/kms/__init__.py +341 -336
- localstack/aws/api/lambda_/__init__.py +974 -621
- localstack/aws/api/logs/__init__.py +988 -675
- localstack/aws/api/opensearch/__init__.py +903 -785
- localstack/aws/api/pipes/__init__.py +336 -336
- localstack/aws/api/redshift/__init__.py +1257 -1166
- localstack/aws/api/resource_groups/__init__.py +175 -175
- localstack/aws/api/resourcegroupstaggingapi/__init__.py +103 -67
- localstack/aws/api/route53/__init__.py +296 -254
- localstack/aws/api/route53resolver/__init__.py +397 -396
- localstack/aws/api/s3/__init__.py +1412 -1349
- localstack/aws/api/s3control/__init__.py +594 -594
- localstack/aws/api/scheduler/__init__.py +118 -118
- localstack/aws/api/secretsmanager/__init__.py +221 -216
- 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 +375 -333
- localstack/aws/api/sts/__init__.py +142 -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/logging.py +8 -4
- localstack/aws/handlers/service.py +22 -3
- localstack/aws/protocol/parser.py +1 -1
- localstack/aws/protocol/serializer.py +1 -1
- localstack/aws/scaffold.py +15 -17
- localstack/cli/localstack.py +6 -1
- localstack/deprecations.py +0 -6
- localstack/dev/kubernetes/__main__.py +38 -3
- localstack/services/acm/provider.py +4 -0
- localstack/services/apigateway/helpers.py +5 -9
- localstack/services/apigateway/legacy/provider.py +60 -24
- localstack/services/apigateway/patches.py +0 -9
- localstack/services/cloudformation/engine/template_preparer.py +6 -2
- localstack/services/cloudformation/engine/v2/change_set_model_preproc.py +12 -0
- localstack/services/cloudformation/provider.py +2 -2
- localstack/services/cloudformation/v2/provider.py +6 -6
- localstack/services/cloudwatch/provider.py +10 -3
- localstack/services/cloudwatch/provider_v2.py +6 -3
- localstack/services/configservice/provider.py +5 -1
- localstack/services/dynamodb/provider.py +1 -0
- localstack/services/dynamodb/v2/provider.py +1 -0
- localstack/services/dynamodbstreams/provider.py +6 -0
- localstack/services/dynamodbstreams/v2/provider.py +6 -0
- localstack/services/ec2/provider.py +6 -0
- localstack/services/es/provider.py +6 -0
- localstack/services/events/provider.py +4 -0
- localstack/services/events/v1/provider.py +9 -0
- localstack/services/firehose/provider.py +5 -0
- localstack/services/iam/provider.py +4 -0
- localstack/services/kinesis/packages.py +1 -1
- localstack/services/kms/models.py +44 -24
- localstack/services/kms/provider.py +97 -16
- localstack/services/lambda_/api_utils.py +40 -21
- localstack/services/lambda_/event_source_mapping/pollers/stream_poller.py +1 -1
- localstack/services/lambda_/invocation/assignment.py +4 -1
- localstack/services/lambda_/invocation/execution_environment.py +21 -2
- localstack/services/lambda_/invocation/lambda_models.py +27 -2
- localstack/services/lambda_/invocation/lambda_service.py +51 -3
- localstack/services/lambda_/invocation/models.py +9 -1
- localstack/services/lambda_/invocation/version_manager.py +18 -3
- localstack/services/lambda_/packages.py +1 -1
- localstack/services/lambda_/provider.py +240 -96
- localstack/services/lambda_/resource_providers/aws_lambda_function.py +33 -1
- localstack/services/lambda_/runtimes.py +10 -3
- localstack/services/logs/provider.py +45 -19
- localstack/services/opensearch/provider.py +53 -3
- localstack/services/resource_groups/provider.py +5 -1
- localstack/services/resourcegroupstaggingapi/provider.py +6 -1
- localstack/services/s3/provider.py +29 -16
- localstack/services/s3/utils.py +35 -14
- localstack/services/s3control/provider.py +101 -2
- localstack/services/s3control/validation.py +50 -0
- localstack/services/sns/constants.py +3 -1
- localstack/services/sns/publisher.py +15 -6
- localstack/services/sns/v2/models.py +30 -1
- localstack/services/sns/v2/provider.py +794 -31
- localstack/services/sns/v2/utils.py +20 -0
- localstack/services/sqs/models.py +37 -10
- localstack/services/stepfunctions/asl/component/common/path/result_path.py +1 -1
- localstack/services/stepfunctions/asl/component/state/state_execution/execute_state.py +0 -1
- localstack/services/stepfunctions/asl/component/state/state_execution/state_map/state_map.py +0 -1
- localstack/services/stepfunctions/asl/component/state/state_execution/state_task/lambda_eval_utils.py +8 -8
- localstack/services/stepfunctions/asl/component/state/state_execution/state_task/{mock_eval_utils.py → local_mock_eval_utils.py} +13 -9
- localstack/services/stepfunctions/asl/component/state/state_execution/state_task/service/state_task_service.py +6 -6
- localstack/services/stepfunctions/asl/component/state/state_execution/state_task/service/state_task_service_callback.py +1 -1
- localstack/services/stepfunctions/asl/component/state/state_fail/state_fail.py +4 -0
- localstack/services/stepfunctions/asl/component/test_state/state/base_mock.py +118 -0
- localstack/services/stepfunctions/asl/component/test_state/state/common.py +82 -0
- localstack/services/stepfunctions/asl/component/test_state/state/execution.py +139 -0
- localstack/services/stepfunctions/asl/component/test_state/state/map.py +77 -0
- localstack/services/stepfunctions/asl/component/test_state/state/task.py +44 -0
- localstack/services/stepfunctions/asl/eval/environment.py +30 -22
- localstack/services/stepfunctions/asl/eval/states.py +1 -1
- localstack/services/stepfunctions/asl/eval/test_state/environment.py +49 -9
- localstack/services/stepfunctions/asl/eval/test_state/program_state.py +22 -0
- localstack/services/stepfunctions/asl/jsonata/jsonata.py +5 -1
- localstack/services/stepfunctions/asl/parse/preprocessor.py +67 -24
- localstack/services/stepfunctions/asl/parse/test_state/asl_parser.py +5 -4
- localstack/services/stepfunctions/asl/parse/test_state/preprocessor.py +222 -31
- localstack/services/stepfunctions/asl/static_analyser/test_state/test_state_analyser.py +170 -22
- localstack/services/stepfunctions/backend/execution.py +6 -6
- localstack/services/stepfunctions/backend/execution_worker.py +5 -5
- localstack/services/stepfunctions/backend/test_state/execution.py +36 -0
- localstack/services/stepfunctions/backend/test_state/execution_worker.py +33 -1
- localstack/services/stepfunctions/backend/test_state/test_state_mock.py +127 -0
- localstack/services/stepfunctions/local_mocking/__init__.py +9 -0
- localstack/services/stepfunctions/{mocking → local_mocking}/mock_config.py +24 -17
- localstack/services/stepfunctions/provider.py +78 -27
- localstack/services/stepfunctions/test_state/mock_config.py +47 -0
- localstack/testing/pytest/fixtures.py +28 -0
- localstack/testing/snapshots/transformer_utility.py +7 -0
- localstack/testing/testselection/matching.py +0 -1
- localstack/utils/analytics/publisher.py +37 -155
- localstack/utils/analytics/service_request_aggregator.py +6 -4
- localstack/utils/aws/arns.py +7 -0
- localstack/utils/aws/client_types.py +0 -8
- localstack/utils/batching.py +258 -0
- localstack/utils/catalog/catalog_loader.py +111 -3
- localstack/utils/collections.py +23 -11
- localstack/utils/crypto.py +109 -0
- localstack/version.py +2 -2
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.11.2.dev14.dist-info}/METADATA +7 -6
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.11.2.dev14.dist-info}/RECORD +149 -141
- localstack_core-4.11.2.dev14.dist-info/plux.json +1 -0
- localstack/services/stepfunctions/mocking/__init__.py +0 -0
- localstack/utils/batch_policy.py +0 -124
- localstack_core-4.10.1.dev7.dist-info/plux.json +0 -1
- /localstack/services/stepfunctions/{mocking → local_mocking}/mock_config_file.py +0 -0
- {localstack_core-4.10.1.dev7.data → localstack_core-4.11.2.dev14.data}/scripts/localstack +0 -0
- {localstack_core-4.10.1.dev7.data → localstack_core-4.11.2.dev14.data}/scripts/localstack-supervisor +0 -0
- {localstack_core-4.10.1.dev7.data → localstack_core-4.11.2.dev14.data}/scripts/localstack.bat +0 -0
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.11.2.dev14.dist-info}/WHEEL +0 -0
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.11.2.dev14.dist-info}/entry_points.txt +0 -0
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.11.2.dev14.dist-info}/licenses/LICENSE.txt +0 -0
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.11.2.dev14.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
|
|
|
@@ -13,6 +13,7 @@ Definition = str
|
|
|
13
13
|
Enabled = bool
|
|
14
14
|
ErrorMessage = str
|
|
15
15
|
EvaluationFailureLocation = str
|
|
16
|
+
ExceptionHandlerIndex = int
|
|
16
17
|
HTTPBody = str
|
|
17
18
|
HTTPHeaders = str
|
|
18
19
|
HTTPMethod = str
|
|
@@ -22,10 +23,14 @@ HTTPStatusMessage = str
|
|
|
22
23
|
Identity = str
|
|
23
24
|
IncludeExecutionData = bool
|
|
24
25
|
IncludeExecutionDataGetExecutionHistory = bool
|
|
26
|
+
InspectionMaxConcurrency = int
|
|
27
|
+
InspectionToleratedFailureCount = int
|
|
28
|
+
InspectionToleratedFailurePercentage = float
|
|
25
29
|
KmsDataKeyReusePeriodSeconds = int
|
|
26
30
|
KmsKeyId = str
|
|
27
31
|
ListExecutionsPageToken = str
|
|
28
32
|
LongArn = str
|
|
33
|
+
MapIterationFailureCount = int
|
|
29
34
|
MapRunLabel = str
|
|
30
35
|
MaxConcurrency = int
|
|
31
36
|
Name = str
|
|
@@ -33,6 +38,8 @@ PageSize = int
|
|
|
33
38
|
PageToken = str
|
|
34
39
|
Publish = bool
|
|
35
40
|
RedriveCount = int
|
|
41
|
+
RetrierRetryCount = int
|
|
42
|
+
RetryBackoffIntervalSeconds = int
|
|
36
43
|
RevealSecrets = bool
|
|
37
44
|
ReverseOrder = bool
|
|
38
45
|
RevisionId = str
|
|
@@ -44,6 +51,7 @@ StateName = str
|
|
|
44
51
|
TagKey = str
|
|
45
52
|
TagValue = str
|
|
46
53
|
TaskToken = str
|
|
54
|
+
TestStateStateName = str
|
|
47
55
|
ToleratedFailurePercentage = float
|
|
48
56
|
TraceHeader = str
|
|
49
57
|
URL = str
|
|
@@ -184,6 +192,12 @@ class MapRunStatus(StrEnum):
|
|
|
184
192
|
ABORTED = "ABORTED"
|
|
185
193
|
|
|
186
194
|
|
|
195
|
+
class MockResponseValidationMode(StrEnum):
|
|
196
|
+
STRICT = "STRICT"
|
|
197
|
+
PRESENT = "PRESENT"
|
|
198
|
+
NONE = "NONE"
|
|
199
|
+
|
|
200
|
+
|
|
187
201
|
class StateMachineStatus(StrEnum):
|
|
188
202
|
ACTIVE = "ACTIVE"
|
|
189
203
|
DELETING = "DELETING"
|
|
@@ -342,7 +356,7 @@ class KmsInvalidStateException(ServiceException):
|
|
|
342
356
|
code: str = "KmsInvalidStateException"
|
|
343
357
|
sender_fault: bool = False
|
|
344
358
|
status_code: int = 400
|
|
345
|
-
kmsKeyState:
|
|
359
|
+
kmsKeyState: KmsKeyState | None
|
|
346
360
|
|
|
347
361
|
|
|
348
362
|
class KmsThrottlingException(ServiceException):
|
|
@@ -361,7 +375,7 @@ class ResourceNotFound(ServiceException):
|
|
|
361
375
|
code: str = "ResourceNotFound"
|
|
362
376
|
sender_fault: bool = False
|
|
363
377
|
status_code: int = 400
|
|
364
|
-
resourceName:
|
|
378
|
+
resourceName: Arn | None
|
|
365
379
|
|
|
366
380
|
|
|
367
381
|
class ServiceQuotaExceededException(ServiceException):
|
|
@@ -416,19 +430,19 @@ class TooManyTags(ServiceException):
|
|
|
416
430
|
code: str = "TooManyTags"
|
|
417
431
|
sender_fault: bool = False
|
|
418
432
|
status_code: int = 400
|
|
419
|
-
resourceName:
|
|
433
|
+
resourceName: Arn | None
|
|
420
434
|
|
|
421
435
|
|
|
422
436
|
class ValidationException(ServiceException):
|
|
423
437
|
code: str = "ValidationException"
|
|
424
438
|
sender_fault: bool = False
|
|
425
439
|
status_code: int = 400
|
|
426
|
-
reason:
|
|
440
|
+
reason: ValidationExceptionReason | None
|
|
427
441
|
|
|
428
442
|
|
|
429
443
|
class ActivityFailedEventDetails(TypedDict, total=False):
|
|
430
|
-
error:
|
|
431
|
-
cause:
|
|
444
|
+
error: SensitiveError | None
|
|
445
|
+
cause: SensitiveCause | None
|
|
432
446
|
|
|
433
447
|
|
|
434
448
|
Timestamp = datetime
|
|
@@ -440,48 +454,48 @@ class ActivityListItem(TypedDict, total=False):
|
|
|
440
454
|
creationDate: Timestamp
|
|
441
455
|
|
|
442
456
|
|
|
443
|
-
ActivityList =
|
|
457
|
+
ActivityList = list[ActivityListItem]
|
|
444
458
|
|
|
445
459
|
|
|
446
460
|
class ActivityScheduleFailedEventDetails(TypedDict, total=False):
|
|
447
|
-
error:
|
|
448
|
-
cause:
|
|
461
|
+
error: SensitiveError | None
|
|
462
|
+
cause: SensitiveCause | None
|
|
449
463
|
|
|
450
464
|
|
|
451
465
|
TimeoutInSeconds = int
|
|
452
466
|
|
|
453
467
|
|
|
454
468
|
class HistoryEventExecutionDataDetails(TypedDict, total=False):
|
|
455
|
-
truncated:
|
|
469
|
+
truncated: truncated | None
|
|
456
470
|
|
|
457
471
|
|
|
458
472
|
class ActivityScheduledEventDetails(TypedDict, total=False):
|
|
459
473
|
resource: Arn
|
|
460
|
-
input:
|
|
461
|
-
inputDetails:
|
|
462
|
-
timeoutInSeconds:
|
|
463
|
-
heartbeatInSeconds:
|
|
474
|
+
input: SensitiveData | None
|
|
475
|
+
inputDetails: HistoryEventExecutionDataDetails | None
|
|
476
|
+
timeoutInSeconds: TimeoutInSeconds | None
|
|
477
|
+
heartbeatInSeconds: TimeoutInSeconds | None
|
|
464
478
|
|
|
465
479
|
|
|
466
480
|
class ActivityStartedEventDetails(TypedDict, total=False):
|
|
467
|
-
workerName:
|
|
481
|
+
workerName: Identity | None
|
|
468
482
|
|
|
469
483
|
|
|
470
484
|
class ActivitySucceededEventDetails(TypedDict, total=False):
|
|
471
|
-
output:
|
|
472
|
-
outputDetails:
|
|
485
|
+
output: SensitiveData | None
|
|
486
|
+
outputDetails: HistoryEventExecutionDataDetails | None
|
|
473
487
|
|
|
474
488
|
|
|
475
489
|
class ActivityTimedOutEventDetails(TypedDict, total=False):
|
|
476
|
-
error:
|
|
477
|
-
cause:
|
|
490
|
+
error: SensitiveError | None
|
|
491
|
+
cause: SensitiveCause | None
|
|
478
492
|
|
|
479
493
|
|
|
480
|
-
AssignedVariables =
|
|
494
|
+
AssignedVariables = dict[VariableName, VariableValue]
|
|
481
495
|
|
|
482
496
|
|
|
483
497
|
class AssignedVariablesDetails(TypedDict, total=False):
|
|
484
|
-
truncated:
|
|
498
|
+
truncated: truncated | None
|
|
485
499
|
|
|
486
500
|
|
|
487
501
|
BilledDuration = int
|
|
@@ -489,36 +503,36 @@ BilledMemoryUsed = int
|
|
|
489
503
|
|
|
490
504
|
|
|
491
505
|
class BillingDetails(TypedDict, total=False):
|
|
492
|
-
billedMemoryUsedInMB:
|
|
493
|
-
billedDurationInMilliseconds:
|
|
506
|
+
billedMemoryUsedInMB: BilledMemoryUsed | None
|
|
507
|
+
billedDurationInMilliseconds: BilledDuration | None
|
|
494
508
|
|
|
495
509
|
|
|
496
510
|
class CloudWatchEventsExecutionDataDetails(TypedDict, total=False):
|
|
497
|
-
included:
|
|
511
|
+
included: includedDetails | None
|
|
498
512
|
|
|
499
513
|
|
|
500
514
|
class CloudWatchLogsLogGroup(TypedDict, total=False):
|
|
501
|
-
logGroupArn:
|
|
515
|
+
logGroupArn: Arn | None
|
|
502
516
|
|
|
503
517
|
|
|
504
518
|
class EncryptionConfiguration(TypedDict, total=False):
|
|
505
|
-
kmsKeyId:
|
|
506
|
-
kmsDataKeyReusePeriodSeconds:
|
|
519
|
+
kmsKeyId: KmsKeyId | None
|
|
520
|
+
kmsDataKeyReusePeriodSeconds: KmsDataKeyReusePeriodSeconds | None
|
|
507
521
|
type: EncryptionType
|
|
508
522
|
|
|
509
523
|
|
|
510
524
|
class Tag(TypedDict, total=False):
|
|
511
|
-
key:
|
|
512
|
-
value:
|
|
525
|
+
key: TagKey | None
|
|
526
|
+
value: TagValue | None
|
|
513
527
|
|
|
514
528
|
|
|
515
|
-
TagList =
|
|
529
|
+
TagList = list[Tag]
|
|
516
530
|
|
|
517
531
|
|
|
518
532
|
class CreateActivityInput(ServiceRequest):
|
|
519
533
|
name: Name
|
|
520
|
-
tags:
|
|
521
|
-
encryptionConfiguration:
|
|
534
|
+
tags: TagList | None
|
|
535
|
+
encryptionConfiguration: EncryptionConfiguration | None
|
|
522
536
|
|
|
523
537
|
|
|
524
538
|
class CreateActivityOutput(TypedDict, total=False):
|
|
@@ -531,11 +545,11 @@ class RoutingConfigurationListItem(TypedDict, total=False):
|
|
|
531
545
|
weight: VersionWeight
|
|
532
546
|
|
|
533
547
|
|
|
534
|
-
RoutingConfigurationList =
|
|
548
|
+
RoutingConfigurationList = list[RoutingConfigurationListItem]
|
|
535
549
|
|
|
536
550
|
|
|
537
551
|
class CreateStateMachineAliasInput(ServiceRequest):
|
|
538
|
-
description:
|
|
552
|
+
description: AliasDescription | None
|
|
539
553
|
name: CharacterRestrictedName
|
|
540
554
|
routingConfiguration: RoutingConfigurationList
|
|
541
555
|
|
|
@@ -546,39 +560,39 @@ class CreateStateMachineAliasOutput(TypedDict, total=False):
|
|
|
546
560
|
|
|
547
561
|
|
|
548
562
|
class TracingConfiguration(TypedDict, total=False):
|
|
549
|
-
enabled:
|
|
563
|
+
enabled: Enabled | None
|
|
550
564
|
|
|
551
565
|
|
|
552
566
|
class LogDestination(TypedDict, total=False):
|
|
553
|
-
cloudWatchLogsLogGroup:
|
|
567
|
+
cloudWatchLogsLogGroup: CloudWatchLogsLogGroup | None
|
|
554
568
|
|
|
555
569
|
|
|
556
|
-
LogDestinationList =
|
|
570
|
+
LogDestinationList = list[LogDestination]
|
|
557
571
|
|
|
558
572
|
|
|
559
573
|
class LoggingConfiguration(TypedDict, total=False):
|
|
560
|
-
level:
|
|
561
|
-
includeExecutionData:
|
|
562
|
-
destinations:
|
|
574
|
+
level: LogLevel | None
|
|
575
|
+
includeExecutionData: IncludeExecutionData | None
|
|
576
|
+
destinations: LogDestinationList | None
|
|
563
577
|
|
|
564
578
|
|
|
565
579
|
class CreateStateMachineInput(TypedDict, total=False):
|
|
566
580
|
name: Name
|
|
567
581
|
definition: Definition
|
|
568
582
|
roleArn: Arn
|
|
569
|
-
type:
|
|
570
|
-
loggingConfiguration:
|
|
571
|
-
tags:
|
|
572
|
-
tracingConfiguration:
|
|
573
|
-
publish:
|
|
574
|
-
versionDescription:
|
|
575
|
-
encryptionConfiguration:
|
|
583
|
+
type: StateMachineType | None
|
|
584
|
+
loggingConfiguration: LoggingConfiguration | None
|
|
585
|
+
tags: TagList | None
|
|
586
|
+
tracingConfiguration: TracingConfiguration | None
|
|
587
|
+
publish: Publish | None
|
|
588
|
+
versionDescription: VersionDescription | None
|
|
589
|
+
encryptionConfiguration: EncryptionConfiguration | None
|
|
576
590
|
|
|
577
591
|
|
|
578
592
|
class CreateStateMachineOutput(TypedDict, total=False):
|
|
579
593
|
stateMachineArn: Arn
|
|
580
594
|
creationDate: Timestamp
|
|
581
|
-
stateMachineVersionArn:
|
|
595
|
+
stateMachineVersionArn: Arn | None
|
|
582
596
|
|
|
583
597
|
|
|
584
598
|
class DeleteActivityInput(ServiceRequest):
|
|
@@ -621,35 +635,35 @@ class DescribeActivityOutput(TypedDict, total=False):
|
|
|
621
635
|
activityArn: Arn
|
|
622
636
|
name: Name
|
|
623
637
|
creationDate: Timestamp
|
|
624
|
-
encryptionConfiguration:
|
|
638
|
+
encryptionConfiguration: EncryptionConfiguration | None
|
|
625
639
|
|
|
626
640
|
|
|
627
641
|
class DescribeExecutionInput(ServiceRequest):
|
|
628
642
|
executionArn: Arn
|
|
629
|
-
includedData:
|
|
643
|
+
includedData: IncludedData | None
|
|
630
644
|
|
|
631
645
|
|
|
632
646
|
class DescribeExecutionOutput(TypedDict, total=False):
|
|
633
647
|
executionArn: Arn
|
|
634
648
|
stateMachineArn: Arn
|
|
635
|
-
name:
|
|
649
|
+
name: Name | None
|
|
636
650
|
status: ExecutionStatus
|
|
637
651
|
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:
|
|
652
|
+
stopDate: Timestamp | None
|
|
653
|
+
input: SensitiveData | None
|
|
654
|
+
inputDetails: CloudWatchEventsExecutionDataDetails | None
|
|
655
|
+
output: SensitiveData | None
|
|
656
|
+
outputDetails: CloudWatchEventsExecutionDataDetails | None
|
|
657
|
+
traceHeader: TraceHeader | None
|
|
658
|
+
mapRunArn: LongArn | None
|
|
659
|
+
error: SensitiveError | None
|
|
660
|
+
cause: SensitiveCause | None
|
|
661
|
+
stateMachineVersionArn: Arn | None
|
|
662
|
+
stateMachineAliasArn: Arn | None
|
|
663
|
+
redriveCount: RedriveCount | None
|
|
664
|
+
redriveDate: Timestamp | None
|
|
665
|
+
redriveStatus: ExecutionRedriveStatus | None
|
|
666
|
+
redriveStatusReason: SensitiveData | None
|
|
653
667
|
|
|
654
668
|
|
|
655
669
|
class DescribeMapRunInput(ServiceRequest):
|
|
@@ -669,8 +683,8 @@ class MapRunExecutionCounts(TypedDict, total=False):
|
|
|
669
683
|
aborted: UnsignedLong
|
|
670
684
|
total: UnsignedLong
|
|
671
685
|
resultsWritten: UnsignedLong
|
|
672
|
-
failuresNotRedrivable:
|
|
673
|
-
pendingRedrive:
|
|
686
|
+
failuresNotRedrivable: LongObject | None
|
|
687
|
+
pendingRedrive: LongObject | None
|
|
674
688
|
|
|
675
689
|
|
|
676
690
|
class MapRunItemCounts(TypedDict, total=False):
|
|
@@ -682,8 +696,8 @@ class MapRunItemCounts(TypedDict, total=False):
|
|
|
682
696
|
aborted: UnsignedLong
|
|
683
697
|
total: UnsignedLong
|
|
684
698
|
resultsWritten: UnsignedLong
|
|
685
|
-
failuresNotRedrivable:
|
|
686
|
-
pendingRedrive:
|
|
699
|
+
failuresNotRedrivable: LongObject | None
|
|
700
|
+
pendingRedrive: LongObject | None
|
|
687
701
|
|
|
688
702
|
|
|
689
703
|
ToleratedFailureCount = int
|
|
@@ -694,14 +708,14 @@ class DescribeMapRunOutput(TypedDict, total=False):
|
|
|
694
708
|
executionArn: Arn
|
|
695
709
|
status: MapRunStatus
|
|
696
710
|
startDate: Timestamp
|
|
697
|
-
stopDate:
|
|
711
|
+
stopDate: Timestamp | None
|
|
698
712
|
maxConcurrency: MaxConcurrency
|
|
699
713
|
toleratedFailurePercentage: ToleratedFailurePercentage
|
|
700
714
|
toleratedFailureCount: ToleratedFailureCount
|
|
701
715
|
itemCounts: MapRunItemCounts
|
|
702
716
|
executionCounts: MapRunExecutionCounts
|
|
703
|
-
redriveCount:
|
|
704
|
-
redriveDate:
|
|
717
|
+
redriveCount: RedriveCount | None
|
|
718
|
+
redriveDate: Timestamp | None
|
|
705
719
|
|
|
706
720
|
|
|
707
721
|
class DescribeStateMachineAliasInput(ServiceRequest):
|
|
@@ -709,21 +723,21 @@ class DescribeStateMachineAliasInput(ServiceRequest):
|
|
|
709
723
|
|
|
710
724
|
|
|
711
725
|
class DescribeStateMachineAliasOutput(TypedDict, total=False):
|
|
712
|
-
stateMachineAliasArn:
|
|
713
|
-
name:
|
|
714
|
-
description:
|
|
715
|
-
routingConfiguration:
|
|
716
|
-
creationDate:
|
|
717
|
-
updateDate:
|
|
726
|
+
stateMachineAliasArn: Arn | None
|
|
727
|
+
name: Name | None
|
|
728
|
+
description: AliasDescription | None
|
|
729
|
+
routingConfiguration: RoutingConfigurationList | None
|
|
730
|
+
creationDate: Timestamp | None
|
|
731
|
+
updateDate: Timestamp | None
|
|
718
732
|
|
|
719
733
|
|
|
720
734
|
class DescribeStateMachineForExecutionInput(ServiceRequest):
|
|
721
735
|
executionArn: Arn
|
|
722
|
-
includedData:
|
|
736
|
+
includedData: IncludedData | None
|
|
723
737
|
|
|
724
738
|
|
|
725
|
-
VariableNameList =
|
|
726
|
-
VariableReferences =
|
|
739
|
+
VariableNameList = list[VariableName]
|
|
740
|
+
VariableReferences = dict[StateName, VariableNameList]
|
|
727
741
|
|
|
728
742
|
|
|
729
743
|
class DescribeStateMachineForExecutionOutput(TypedDict, total=False):
|
|
@@ -732,41 +746,41 @@ class DescribeStateMachineForExecutionOutput(TypedDict, total=False):
|
|
|
732
746
|
definition: Definition
|
|
733
747
|
roleArn: Arn
|
|
734
748
|
updateDate: Timestamp
|
|
735
|
-
loggingConfiguration:
|
|
736
|
-
tracingConfiguration:
|
|
737
|
-
mapRunArn:
|
|
738
|
-
label:
|
|
739
|
-
revisionId:
|
|
740
|
-
encryptionConfiguration:
|
|
741
|
-
variableReferences:
|
|
749
|
+
loggingConfiguration: LoggingConfiguration | None
|
|
750
|
+
tracingConfiguration: TracingConfiguration | None
|
|
751
|
+
mapRunArn: LongArn | None
|
|
752
|
+
label: MapRunLabel | None
|
|
753
|
+
revisionId: RevisionId | None
|
|
754
|
+
encryptionConfiguration: EncryptionConfiguration | None
|
|
755
|
+
variableReferences: VariableReferences | None
|
|
742
756
|
|
|
743
757
|
|
|
744
758
|
class DescribeStateMachineInput(ServiceRequest):
|
|
745
759
|
stateMachineArn: Arn
|
|
746
|
-
includedData:
|
|
760
|
+
includedData: IncludedData | None
|
|
747
761
|
|
|
748
762
|
|
|
749
763
|
class DescribeStateMachineOutput(TypedDict, total=False):
|
|
750
764
|
stateMachineArn: Arn
|
|
751
765
|
name: Name
|
|
752
|
-
status:
|
|
766
|
+
status: StateMachineStatus | None
|
|
753
767
|
definition: Definition
|
|
754
768
|
roleArn: Arn
|
|
755
769
|
type: StateMachineType
|
|
756
770
|
creationDate: Timestamp
|
|
757
|
-
loggingConfiguration:
|
|
758
|
-
tracingConfiguration:
|
|
759
|
-
label:
|
|
760
|
-
revisionId:
|
|
761
|
-
description:
|
|
762
|
-
encryptionConfiguration:
|
|
763
|
-
variableReferences:
|
|
771
|
+
loggingConfiguration: LoggingConfiguration | None
|
|
772
|
+
tracingConfiguration: TracingConfiguration | None
|
|
773
|
+
label: MapRunLabel | None
|
|
774
|
+
revisionId: RevisionId | None
|
|
775
|
+
description: VersionDescription | None
|
|
776
|
+
encryptionConfiguration: EncryptionConfiguration | None
|
|
777
|
+
variableReferences: VariableReferences | None
|
|
764
778
|
|
|
765
779
|
|
|
766
780
|
class EvaluationFailedEventDetails(TypedDict, total=False):
|
|
767
|
-
error:
|
|
768
|
-
cause:
|
|
769
|
-
location:
|
|
781
|
+
error: SensitiveError | None
|
|
782
|
+
cause: SensitiveCause | None
|
|
783
|
+
location: EvaluationFailureLocation | None
|
|
770
784
|
state: StateName
|
|
771
785
|
|
|
772
786
|
|
|
@@ -774,13 +788,13 @@ EventId = int
|
|
|
774
788
|
|
|
775
789
|
|
|
776
790
|
class ExecutionAbortedEventDetails(TypedDict, total=False):
|
|
777
|
-
error:
|
|
778
|
-
cause:
|
|
791
|
+
error: SensitiveError | None
|
|
792
|
+
cause: SensitiveCause | None
|
|
779
793
|
|
|
780
794
|
|
|
781
795
|
class ExecutionFailedEventDetails(TypedDict, total=False):
|
|
782
|
-
error:
|
|
783
|
-
cause:
|
|
796
|
+
error: SensitiveError | None
|
|
797
|
+
cause: SensitiveCause | None
|
|
784
798
|
|
|
785
799
|
|
|
786
800
|
class ExecutionListItem(TypedDict, total=False):
|
|
@@ -789,158 +803,158 @@ class ExecutionListItem(TypedDict, total=False):
|
|
|
789
803
|
name: Name
|
|
790
804
|
status: ExecutionStatus
|
|
791
805
|
startDate: Timestamp
|
|
792
|
-
stopDate:
|
|
793
|
-
mapRunArn:
|
|
794
|
-
itemCount:
|
|
795
|
-
stateMachineVersionArn:
|
|
796
|
-
stateMachineAliasArn:
|
|
797
|
-
redriveCount:
|
|
798
|
-
redriveDate:
|
|
806
|
+
stopDate: Timestamp | None
|
|
807
|
+
mapRunArn: LongArn | None
|
|
808
|
+
itemCount: UnsignedInteger | None
|
|
809
|
+
stateMachineVersionArn: Arn | None
|
|
810
|
+
stateMachineAliasArn: Arn | None
|
|
811
|
+
redriveCount: RedriveCount | None
|
|
812
|
+
redriveDate: Timestamp | None
|
|
799
813
|
|
|
800
814
|
|
|
801
|
-
ExecutionList =
|
|
815
|
+
ExecutionList = list[ExecutionListItem]
|
|
802
816
|
|
|
803
817
|
|
|
804
818
|
class ExecutionRedrivenEventDetails(TypedDict, total=False):
|
|
805
|
-
redriveCount:
|
|
819
|
+
redriveCount: RedriveCount | None
|
|
806
820
|
|
|
807
821
|
|
|
808
822
|
class ExecutionStartedEventDetails(TypedDict, total=False):
|
|
809
|
-
input:
|
|
810
|
-
inputDetails:
|
|
811
|
-
roleArn:
|
|
812
|
-
stateMachineAliasArn:
|
|
813
|
-
stateMachineVersionArn:
|
|
823
|
+
input: SensitiveData | None
|
|
824
|
+
inputDetails: HistoryEventExecutionDataDetails | None
|
|
825
|
+
roleArn: Arn | None
|
|
826
|
+
stateMachineAliasArn: Arn | None
|
|
827
|
+
stateMachineVersionArn: Arn | None
|
|
814
828
|
|
|
815
829
|
|
|
816
830
|
class ExecutionSucceededEventDetails(TypedDict, total=False):
|
|
817
|
-
output:
|
|
818
|
-
outputDetails:
|
|
831
|
+
output: SensitiveData | None
|
|
832
|
+
outputDetails: HistoryEventExecutionDataDetails | None
|
|
819
833
|
|
|
820
834
|
|
|
821
835
|
class ExecutionTimedOutEventDetails(TypedDict, total=False):
|
|
822
|
-
error:
|
|
823
|
-
cause:
|
|
836
|
+
error: SensitiveError | None
|
|
837
|
+
cause: SensitiveCause | None
|
|
824
838
|
|
|
825
839
|
|
|
826
840
|
class GetActivityTaskInput(ServiceRequest):
|
|
827
841
|
activityArn: Arn
|
|
828
|
-
workerName:
|
|
842
|
+
workerName: Name | None
|
|
829
843
|
|
|
830
844
|
|
|
831
845
|
class GetActivityTaskOutput(TypedDict, total=False):
|
|
832
|
-
taskToken:
|
|
833
|
-
input:
|
|
846
|
+
taskToken: TaskToken | None
|
|
847
|
+
input: SensitiveDataJobInput | None
|
|
834
848
|
|
|
835
849
|
|
|
836
850
|
class GetExecutionHistoryInput(ServiceRequest):
|
|
837
851
|
executionArn: Arn
|
|
838
|
-
maxResults:
|
|
839
|
-
reverseOrder:
|
|
840
|
-
nextToken:
|
|
841
|
-
includeExecutionData:
|
|
852
|
+
maxResults: PageSize | None
|
|
853
|
+
reverseOrder: ReverseOrder | None
|
|
854
|
+
nextToken: PageToken | None
|
|
855
|
+
includeExecutionData: IncludeExecutionDataGetExecutionHistory | None
|
|
842
856
|
|
|
843
857
|
|
|
844
858
|
class MapRunRedrivenEventDetails(TypedDict, total=False):
|
|
845
|
-
mapRunArn:
|
|
846
|
-
redriveCount:
|
|
859
|
+
mapRunArn: LongArn | None
|
|
860
|
+
redriveCount: RedriveCount | None
|
|
847
861
|
|
|
848
862
|
|
|
849
863
|
class MapRunFailedEventDetails(TypedDict, total=False):
|
|
850
|
-
error:
|
|
851
|
-
cause:
|
|
864
|
+
error: SensitiveError | None
|
|
865
|
+
cause: SensitiveCause | None
|
|
852
866
|
|
|
853
867
|
|
|
854
868
|
class MapRunStartedEventDetails(TypedDict, total=False):
|
|
855
|
-
mapRunArn:
|
|
869
|
+
mapRunArn: LongArn | None
|
|
856
870
|
|
|
857
871
|
|
|
858
872
|
class StateExitedEventDetails(TypedDict, total=False):
|
|
859
873
|
name: Name
|
|
860
|
-
output:
|
|
861
|
-
outputDetails:
|
|
862
|
-
assignedVariables:
|
|
863
|
-
assignedVariablesDetails:
|
|
874
|
+
output: SensitiveData | None
|
|
875
|
+
outputDetails: HistoryEventExecutionDataDetails | None
|
|
876
|
+
assignedVariables: AssignedVariables | None
|
|
877
|
+
assignedVariablesDetails: AssignedVariablesDetails | None
|
|
864
878
|
|
|
865
879
|
|
|
866
880
|
class StateEnteredEventDetails(TypedDict, total=False):
|
|
867
881
|
name: Name
|
|
868
|
-
input:
|
|
869
|
-
inputDetails:
|
|
882
|
+
input: SensitiveData | None
|
|
883
|
+
inputDetails: HistoryEventExecutionDataDetails | None
|
|
870
884
|
|
|
871
885
|
|
|
872
886
|
class LambdaFunctionTimedOutEventDetails(TypedDict, total=False):
|
|
873
|
-
error:
|
|
874
|
-
cause:
|
|
887
|
+
error: SensitiveError | None
|
|
888
|
+
cause: SensitiveCause | None
|
|
875
889
|
|
|
876
890
|
|
|
877
891
|
class LambdaFunctionSucceededEventDetails(TypedDict, total=False):
|
|
878
|
-
output:
|
|
879
|
-
outputDetails:
|
|
892
|
+
output: SensitiveData | None
|
|
893
|
+
outputDetails: HistoryEventExecutionDataDetails | None
|
|
880
894
|
|
|
881
895
|
|
|
882
896
|
class LambdaFunctionStartFailedEventDetails(TypedDict, total=False):
|
|
883
|
-
error:
|
|
884
|
-
cause:
|
|
897
|
+
error: SensitiveError | None
|
|
898
|
+
cause: SensitiveCause | None
|
|
885
899
|
|
|
886
900
|
|
|
887
901
|
class TaskCredentials(TypedDict, total=False):
|
|
888
|
-
roleArn:
|
|
902
|
+
roleArn: LongArn | None
|
|
889
903
|
|
|
890
904
|
|
|
891
905
|
class LambdaFunctionScheduledEventDetails(TypedDict, total=False):
|
|
892
906
|
resource: Arn
|
|
893
|
-
input:
|
|
894
|
-
inputDetails:
|
|
895
|
-
timeoutInSeconds:
|
|
896
|
-
taskCredentials:
|
|
907
|
+
input: SensitiveData | None
|
|
908
|
+
inputDetails: HistoryEventExecutionDataDetails | None
|
|
909
|
+
timeoutInSeconds: TimeoutInSeconds | None
|
|
910
|
+
taskCredentials: TaskCredentials | None
|
|
897
911
|
|
|
898
912
|
|
|
899
913
|
class LambdaFunctionScheduleFailedEventDetails(TypedDict, total=False):
|
|
900
|
-
error:
|
|
901
|
-
cause:
|
|
914
|
+
error: SensitiveError | None
|
|
915
|
+
cause: SensitiveCause | None
|
|
902
916
|
|
|
903
917
|
|
|
904
918
|
class LambdaFunctionFailedEventDetails(TypedDict, total=False):
|
|
905
|
-
error:
|
|
906
|
-
cause:
|
|
919
|
+
error: SensitiveError | None
|
|
920
|
+
cause: SensitiveCause | None
|
|
907
921
|
|
|
908
922
|
|
|
909
923
|
class MapIterationEventDetails(TypedDict, total=False):
|
|
910
|
-
name:
|
|
911
|
-
index:
|
|
924
|
+
name: Name | None
|
|
925
|
+
index: UnsignedInteger | None
|
|
912
926
|
|
|
913
927
|
|
|
914
928
|
class MapStateStartedEventDetails(TypedDict, total=False):
|
|
915
|
-
length:
|
|
929
|
+
length: UnsignedInteger | None
|
|
916
930
|
|
|
917
931
|
|
|
918
932
|
class TaskTimedOutEventDetails(TypedDict, total=False):
|
|
919
933
|
resourceType: Name
|
|
920
934
|
resource: Name
|
|
921
|
-
error:
|
|
922
|
-
cause:
|
|
935
|
+
error: SensitiveError | None
|
|
936
|
+
cause: SensitiveCause | None
|
|
923
937
|
|
|
924
938
|
|
|
925
939
|
class TaskSucceededEventDetails(TypedDict, total=False):
|
|
926
940
|
resourceType: Name
|
|
927
941
|
resource: Name
|
|
928
|
-
output:
|
|
929
|
-
outputDetails:
|
|
942
|
+
output: SensitiveData | None
|
|
943
|
+
outputDetails: HistoryEventExecutionDataDetails | None
|
|
930
944
|
|
|
931
945
|
|
|
932
946
|
class TaskSubmittedEventDetails(TypedDict, total=False):
|
|
933
947
|
resourceType: Name
|
|
934
948
|
resource: Name
|
|
935
|
-
output:
|
|
936
|
-
outputDetails:
|
|
949
|
+
output: SensitiveData | None
|
|
950
|
+
outputDetails: HistoryEventExecutionDataDetails | None
|
|
937
951
|
|
|
938
952
|
|
|
939
953
|
class TaskSubmitFailedEventDetails(TypedDict, total=False):
|
|
940
954
|
resourceType: Name
|
|
941
955
|
resource: Name
|
|
942
|
-
error:
|
|
943
|
-
cause:
|
|
956
|
+
error: SensitiveError | None
|
|
957
|
+
cause: SensitiveCause | None
|
|
944
958
|
|
|
945
959
|
|
|
946
960
|
class TaskStartedEventDetails(TypedDict, total=False):
|
|
@@ -951,8 +965,8 @@ class TaskStartedEventDetails(TypedDict, total=False):
|
|
|
951
965
|
class TaskStartFailedEventDetails(TypedDict, total=False):
|
|
952
966
|
resourceType: Name
|
|
953
967
|
resource: Name
|
|
954
|
-
error:
|
|
955
|
-
cause:
|
|
968
|
+
error: SensitiveError | None
|
|
969
|
+
cause: SensitiveCause | None
|
|
956
970
|
|
|
957
971
|
|
|
958
972
|
class TaskScheduledEventDetails(TypedDict, total=False):
|
|
@@ -960,127 +974,141 @@ class TaskScheduledEventDetails(TypedDict, total=False):
|
|
|
960
974
|
resource: Name
|
|
961
975
|
region: Name
|
|
962
976
|
parameters: ConnectorParameters
|
|
963
|
-
timeoutInSeconds:
|
|
964
|
-
heartbeatInSeconds:
|
|
965
|
-
taskCredentials:
|
|
977
|
+
timeoutInSeconds: TimeoutInSeconds | None
|
|
978
|
+
heartbeatInSeconds: TimeoutInSeconds | None
|
|
979
|
+
taskCredentials: TaskCredentials | None
|
|
966
980
|
|
|
967
981
|
|
|
968
982
|
class TaskFailedEventDetails(TypedDict, total=False):
|
|
969
983
|
resourceType: Name
|
|
970
984
|
resource: Name
|
|
971
|
-
error:
|
|
972
|
-
cause:
|
|
985
|
+
error: SensitiveError | None
|
|
986
|
+
cause: SensitiveCause | None
|
|
973
987
|
|
|
974
988
|
|
|
975
989
|
class HistoryEvent(TypedDict, total=False):
|
|
976
990
|
timestamp: Timestamp
|
|
977
991
|
type: HistoryEventType
|
|
978
992
|
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 =
|
|
993
|
+
previousEventId: EventId | None
|
|
994
|
+
activityFailedEventDetails: ActivityFailedEventDetails | None
|
|
995
|
+
activityScheduleFailedEventDetails: ActivityScheduleFailedEventDetails | None
|
|
996
|
+
activityScheduledEventDetails: ActivityScheduledEventDetails | None
|
|
997
|
+
activityStartedEventDetails: ActivityStartedEventDetails | None
|
|
998
|
+
activitySucceededEventDetails: ActivitySucceededEventDetails | None
|
|
999
|
+
activityTimedOutEventDetails: ActivityTimedOutEventDetails | None
|
|
1000
|
+
taskFailedEventDetails: TaskFailedEventDetails | None
|
|
1001
|
+
taskScheduledEventDetails: TaskScheduledEventDetails | None
|
|
1002
|
+
taskStartFailedEventDetails: TaskStartFailedEventDetails | None
|
|
1003
|
+
taskStartedEventDetails: TaskStartedEventDetails | None
|
|
1004
|
+
taskSubmitFailedEventDetails: TaskSubmitFailedEventDetails | None
|
|
1005
|
+
taskSubmittedEventDetails: TaskSubmittedEventDetails | None
|
|
1006
|
+
taskSucceededEventDetails: TaskSucceededEventDetails | None
|
|
1007
|
+
taskTimedOutEventDetails: TaskTimedOutEventDetails | None
|
|
1008
|
+
executionFailedEventDetails: ExecutionFailedEventDetails | None
|
|
1009
|
+
executionStartedEventDetails: ExecutionStartedEventDetails | None
|
|
1010
|
+
executionSucceededEventDetails: ExecutionSucceededEventDetails | None
|
|
1011
|
+
executionAbortedEventDetails: ExecutionAbortedEventDetails | None
|
|
1012
|
+
executionTimedOutEventDetails: ExecutionTimedOutEventDetails | None
|
|
1013
|
+
executionRedrivenEventDetails: ExecutionRedrivenEventDetails | None
|
|
1014
|
+
mapStateStartedEventDetails: MapStateStartedEventDetails | None
|
|
1015
|
+
mapIterationStartedEventDetails: MapIterationEventDetails | None
|
|
1016
|
+
mapIterationSucceededEventDetails: MapIterationEventDetails | None
|
|
1017
|
+
mapIterationFailedEventDetails: MapIterationEventDetails | None
|
|
1018
|
+
mapIterationAbortedEventDetails: MapIterationEventDetails | None
|
|
1019
|
+
lambdaFunctionFailedEventDetails: LambdaFunctionFailedEventDetails | None
|
|
1020
|
+
lambdaFunctionScheduleFailedEventDetails: LambdaFunctionScheduleFailedEventDetails | None
|
|
1021
|
+
lambdaFunctionScheduledEventDetails: LambdaFunctionScheduledEventDetails | None
|
|
1022
|
+
lambdaFunctionStartFailedEventDetails: LambdaFunctionStartFailedEventDetails | None
|
|
1023
|
+
lambdaFunctionSucceededEventDetails: LambdaFunctionSucceededEventDetails | None
|
|
1024
|
+
lambdaFunctionTimedOutEventDetails: LambdaFunctionTimedOutEventDetails | None
|
|
1025
|
+
stateEnteredEventDetails: StateEnteredEventDetails | None
|
|
1026
|
+
stateExitedEventDetails: StateExitedEventDetails | None
|
|
1027
|
+
mapRunStartedEventDetails: MapRunStartedEventDetails | None
|
|
1028
|
+
mapRunFailedEventDetails: MapRunFailedEventDetails | None
|
|
1029
|
+
mapRunRedrivenEventDetails: MapRunRedrivenEventDetails | None
|
|
1030
|
+
evaluationFailedEventDetails: EvaluationFailedEventDetails | None
|
|
1031
|
+
|
|
1032
|
+
|
|
1033
|
+
HistoryEventList = list[HistoryEvent]
|
|
1020
1034
|
|
|
1021
1035
|
|
|
1022
1036
|
class GetExecutionHistoryOutput(TypedDict, total=False):
|
|
1023
1037
|
events: HistoryEventList
|
|
1024
|
-
nextToken:
|
|
1038
|
+
nextToken: PageToken | None
|
|
1039
|
+
|
|
1040
|
+
|
|
1041
|
+
class InspectionErrorDetails(TypedDict, total=False):
|
|
1042
|
+
catchIndex: ExceptionHandlerIndex | None
|
|
1043
|
+
retryIndex: ExceptionHandlerIndex | None
|
|
1044
|
+
retryBackoffIntervalSeconds: RetryBackoffIntervalSeconds | None
|
|
1025
1045
|
|
|
1026
1046
|
|
|
1027
1047
|
class InspectionDataResponse(TypedDict, total=False):
|
|
1028
|
-
protocol:
|
|
1029
|
-
statusCode:
|
|
1030
|
-
statusMessage:
|
|
1031
|
-
headers:
|
|
1032
|
-
body:
|
|
1048
|
+
protocol: HTTPProtocol | None
|
|
1049
|
+
statusCode: HTTPStatusCode | None
|
|
1050
|
+
statusMessage: HTTPStatusMessage | None
|
|
1051
|
+
headers: HTTPHeaders | None
|
|
1052
|
+
body: HTTPBody | None
|
|
1033
1053
|
|
|
1034
1054
|
|
|
1035
1055
|
class InspectionDataRequest(TypedDict, total=False):
|
|
1036
|
-
protocol:
|
|
1037
|
-
method:
|
|
1038
|
-
url:
|
|
1039
|
-
headers:
|
|
1040
|
-
body:
|
|
1056
|
+
protocol: HTTPProtocol | None
|
|
1057
|
+
method: HTTPMethod | None
|
|
1058
|
+
url: URL | None
|
|
1059
|
+
headers: HTTPHeaders | None
|
|
1060
|
+
body: HTTPBody | None
|
|
1041
1061
|
|
|
1042
1062
|
|
|
1043
1063
|
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:
|
|
1064
|
+
input: SensitiveData | None
|
|
1065
|
+
afterArguments: SensitiveData | None
|
|
1066
|
+
afterInputPath: SensitiveData | None
|
|
1067
|
+
afterParameters: SensitiveData | None
|
|
1068
|
+
result: SensitiveData | None
|
|
1069
|
+
afterResultSelector: SensitiveData | None
|
|
1070
|
+
afterResultPath: SensitiveData | None
|
|
1071
|
+
request: InspectionDataRequest | None
|
|
1072
|
+
response: InspectionDataResponse | None
|
|
1073
|
+
variables: SensitiveData | None
|
|
1074
|
+
errorDetails: InspectionErrorDetails | None
|
|
1075
|
+
afterItemsPath: SensitiveData | None
|
|
1076
|
+
afterItemSelector: SensitiveData | None
|
|
1077
|
+
afterItemBatcher: SensitiveData | None
|
|
1078
|
+
afterItemsPointer: SensitiveData | None
|
|
1079
|
+
toleratedFailureCount: InspectionToleratedFailureCount | None
|
|
1080
|
+
toleratedFailurePercentage: InspectionToleratedFailurePercentage | None
|
|
1081
|
+
maxConcurrency: InspectionMaxConcurrency | None
|
|
1054
1082
|
|
|
1055
1083
|
|
|
1056
1084
|
class ListActivitiesInput(ServiceRequest):
|
|
1057
|
-
maxResults:
|
|
1058
|
-
nextToken:
|
|
1085
|
+
maxResults: PageSize | None
|
|
1086
|
+
nextToken: PageToken | None
|
|
1059
1087
|
|
|
1060
1088
|
|
|
1061
1089
|
class ListActivitiesOutput(TypedDict, total=False):
|
|
1062
1090
|
activities: ActivityList
|
|
1063
|
-
nextToken:
|
|
1091
|
+
nextToken: PageToken | None
|
|
1064
1092
|
|
|
1065
1093
|
|
|
1066
1094
|
class ListExecutionsInput(ServiceRequest):
|
|
1067
|
-
stateMachineArn:
|
|
1068
|
-
statusFilter:
|
|
1069
|
-
maxResults:
|
|
1070
|
-
nextToken:
|
|
1071
|
-
mapRunArn:
|
|
1072
|
-
redriveFilter:
|
|
1095
|
+
stateMachineArn: Arn | None
|
|
1096
|
+
statusFilter: ExecutionStatus | None
|
|
1097
|
+
maxResults: PageSize | None
|
|
1098
|
+
nextToken: ListExecutionsPageToken | None
|
|
1099
|
+
mapRunArn: LongArn | None
|
|
1100
|
+
redriveFilter: ExecutionRedriveFilter | None
|
|
1073
1101
|
|
|
1074
1102
|
|
|
1075
1103
|
class ListExecutionsOutput(TypedDict, total=False):
|
|
1076
1104
|
executions: ExecutionList
|
|
1077
|
-
nextToken:
|
|
1105
|
+
nextToken: ListExecutionsPageToken | None
|
|
1078
1106
|
|
|
1079
1107
|
|
|
1080
1108
|
class ListMapRunsInput(ServiceRequest):
|
|
1081
1109
|
executionArn: Arn
|
|
1082
|
-
maxResults:
|
|
1083
|
-
nextToken:
|
|
1110
|
+
maxResults: PageSize | None
|
|
1111
|
+
nextToken: PageToken | None
|
|
1084
1112
|
|
|
1085
1113
|
|
|
1086
1114
|
class MapRunListItem(TypedDict, total=False):
|
|
@@ -1088,21 +1116,21 @@ class MapRunListItem(TypedDict, total=False):
|
|
|
1088
1116
|
mapRunArn: LongArn
|
|
1089
1117
|
stateMachineArn: Arn
|
|
1090
1118
|
startDate: Timestamp
|
|
1091
|
-
stopDate:
|
|
1119
|
+
stopDate: Timestamp | None
|
|
1092
1120
|
|
|
1093
1121
|
|
|
1094
|
-
MapRunList =
|
|
1122
|
+
MapRunList = list[MapRunListItem]
|
|
1095
1123
|
|
|
1096
1124
|
|
|
1097
1125
|
class ListMapRunsOutput(TypedDict, total=False):
|
|
1098
1126
|
mapRuns: MapRunList
|
|
1099
|
-
nextToken:
|
|
1127
|
+
nextToken: PageToken | None
|
|
1100
1128
|
|
|
1101
1129
|
|
|
1102
1130
|
class ListStateMachineAliasesInput(ServiceRequest):
|
|
1103
1131
|
stateMachineArn: Arn
|
|
1104
|
-
nextToken:
|
|
1105
|
-
maxResults:
|
|
1132
|
+
nextToken: PageToken | None
|
|
1133
|
+
maxResults: PageSize | None
|
|
1106
1134
|
|
|
1107
1135
|
|
|
1108
1136
|
class StateMachineAliasListItem(TypedDict, total=False):
|
|
@@ -1110,18 +1138,18 @@ class StateMachineAliasListItem(TypedDict, total=False):
|
|
|
1110
1138
|
creationDate: Timestamp
|
|
1111
1139
|
|
|
1112
1140
|
|
|
1113
|
-
StateMachineAliasList =
|
|
1141
|
+
StateMachineAliasList = list[StateMachineAliasListItem]
|
|
1114
1142
|
|
|
1115
1143
|
|
|
1116
1144
|
class ListStateMachineAliasesOutput(TypedDict, total=False):
|
|
1117
1145
|
stateMachineAliases: StateMachineAliasList
|
|
1118
|
-
nextToken:
|
|
1146
|
+
nextToken: PageToken | None
|
|
1119
1147
|
|
|
1120
1148
|
|
|
1121
1149
|
class ListStateMachineVersionsInput(ServiceRequest):
|
|
1122
1150
|
stateMachineArn: Arn
|
|
1123
|
-
nextToken:
|
|
1124
|
-
maxResults:
|
|
1151
|
+
nextToken: PageToken | None
|
|
1152
|
+
maxResults: PageSize | None
|
|
1125
1153
|
|
|
1126
1154
|
|
|
1127
1155
|
class StateMachineVersionListItem(TypedDict, total=False):
|
|
@@ -1129,17 +1157,17 @@ class StateMachineVersionListItem(TypedDict, total=False):
|
|
|
1129
1157
|
creationDate: Timestamp
|
|
1130
1158
|
|
|
1131
1159
|
|
|
1132
|
-
StateMachineVersionList =
|
|
1160
|
+
StateMachineVersionList = list[StateMachineVersionListItem]
|
|
1133
1161
|
|
|
1134
1162
|
|
|
1135
1163
|
class ListStateMachineVersionsOutput(TypedDict, total=False):
|
|
1136
1164
|
stateMachineVersions: StateMachineVersionList
|
|
1137
|
-
nextToken:
|
|
1165
|
+
nextToken: PageToken | None
|
|
1138
1166
|
|
|
1139
1167
|
|
|
1140
1168
|
class ListStateMachinesInput(ServiceRequest):
|
|
1141
|
-
maxResults:
|
|
1142
|
-
nextToken:
|
|
1169
|
+
maxResults: PageSize | None
|
|
1170
|
+
nextToken: PageToken | None
|
|
1143
1171
|
|
|
1144
1172
|
|
|
1145
1173
|
class StateMachineListItem(TypedDict, total=False):
|
|
@@ -1149,12 +1177,12 @@ class StateMachineListItem(TypedDict, total=False):
|
|
|
1149
1177
|
creationDate: Timestamp
|
|
1150
1178
|
|
|
1151
1179
|
|
|
1152
|
-
StateMachineList =
|
|
1180
|
+
StateMachineList = list[StateMachineListItem]
|
|
1153
1181
|
|
|
1154
1182
|
|
|
1155
1183
|
class ListStateMachinesOutput(TypedDict, total=False):
|
|
1156
1184
|
stateMachines: StateMachineList
|
|
1157
|
-
nextToken:
|
|
1185
|
+
nextToken: PageToken | None
|
|
1158
1186
|
|
|
1159
1187
|
|
|
1160
1188
|
class ListTagsForResourceInput(ServiceRequest):
|
|
@@ -1162,13 +1190,24 @@ class ListTagsForResourceInput(ServiceRequest):
|
|
|
1162
1190
|
|
|
1163
1191
|
|
|
1164
1192
|
class ListTagsForResourceOutput(TypedDict, total=False):
|
|
1165
|
-
tags:
|
|
1193
|
+
tags: TagList | None
|
|
1194
|
+
|
|
1195
|
+
|
|
1196
|
+
class MockErrorOutput(TypedDict, total=False):
|
|
1197
|
+
error: SensitiveError | None
|
|
1198
|
+
cause: SensitiveCause | None
|
|
1199
|
+
|
|
1200
|
+
|
|
1201
|
+
class MockInput(TypedDict, total=False):
|
|
1202
|
+
result: SensitiveData | None
|
|
1203
|
+
errorOutput: MockErrorOutput | None
|
|
1204
|
+
fieldValidationMode: MockResponseValidationMode | None
|
|
1166
1205
|
|
|
1167
1206
|
|
|
1168
1207
|
class PublishStateMachineVersionInput(ServiceRequest):
|
|
1169
1208
|
stateMachineArn: Arn
|
|
1170
|
-
revisionId:
|
|
1171
|
-
description:
|
|
1209
|
+
revisionId: RevisionId | None
|
|
1210
|
+
description: VersionDescription | None
|
|
1172
1211
|
|
|
1173
1212
|
|
|
1174
1213
|
class PublishStateMachineVersionOutput(TypedDict, total=False):
|
|
@@ -1178,7 +1217,7 @@ class PublishStateMachineVersionOutput(TypedDict, total=False):
|
|
|
1178
1217
|
|
|
1179
1218
|
class RedriveExecutionInput(ServiceRequest):
|
|
1180
1219
|
executionArn: Arn
|
|
1181
|
-
clientToken:
|
|
1220
|
+
clientToken: ClientToken | None
|
|
1182
1221
|
|
|
1183
1222
|
|
|
1184
1223
|
class RedriveExecutionOutput(TypedDict, total=False):
|
|
@@ -1187,8 +1226,8 @@ class RedriveExecutionOutput(TypedDict, total=False):
|
|
|
1187
1226
|
|
|
1188
1227
|
class SendTaskFailureInput(ServiceRequest):
|
|
1189
1228
|
taskToken: TaskToken
|
|
1190
|
-
error:
|
|
1191
|
-
cause:
|
|
1229
|
+
error: SensitiveError | None
|
|
1230
|
+
cause: SensitiveCause | None
|
|
1192
1231
|
|
|
1193
1232
|
|
|
1194
1233
|
class SendTaskFailureOutput(TypedDict, total=False):
|
|
@@ -1214,9 +1253,9 @@ class SendTaskSuccessOutput(TypedDict, total=False):
|
|
|
1214
1253
|
|
|
1215
1254
|
class StartExecutionInput(ServiceRequest):
|
|
1216
1255
|
stateMachineArn: Arn
|
|
1217
|
-
name:
|
|
1218
|
-
input:
|
|
1219
|
-
traceHeader:
|
|
1256
|
+
name: Name | None
|
|
1257
|
+
input: SensitiveData | None
|
|
1258
|
+
traceHeader: TraceHeader | None
|
|
1220
1259
|
|
|
1221
1260
|
|
|
1222
1261
|
class StartExecutionOutput(TypedDict, total=False):
|
|
@@ -1226,40 +1265,40 @@ class StartExecutionOutput(TypedDict, total=False):
|
|
|
1226
1265
|
|
|
1227
1266
|
class StartSyncExecutionInput(ServiceRequest):
|
|
1228
1267
|
stateMachineArn: Arn
|
|
1229
|
-
name:
|
|
1230
|
-
input:
|
|
1231
|
-
traceHeader:
|
|
1232
|
-
includedData:
|
|
1268
|
+
name: Name | None
|
|
1269
|
+
input: SensitiveData | None
|
|
1270
|
+
traceHeader: TraceHeader | None
|
|
1271
|
+
includedData: IncludedData | None
|
|
1233
1272
|
|
|
1234
1273
|
|
|
1235
1274
|
class StartSyncExecutionOutput(TypedDict, total=False):
|
|
1236
1275
|
executionArn: Arn
|
|
1237
|
-
stateMachineArn:
|
|
1238
|
-
name:
|
|
1276
|
+
stateMachineArn: Arn | None
|
|
1277
|
+
name: Name | None
|
|
1239
1278
|
startDate: Timestamp
|
|
1240
1279
|
stopDate: Timestamp
|
|
1241
1280
|
status: SyncExecutionStatus
|
|
1242
|
-
error:
|
|
1243
|
-
cause:
|
|
1244
|
-
input:
|
|
1245
|
-
inputDetails:
|
|
1246
|
-
output:
|
|
1247
|
-
outputDetails:
|
|
1248
|
-
traceHeader:
|
|
1249
|
-
billingDetails:
|
|
1281
|
+
error: SensitiveError | None
|
|
1282
|
+
cause: SensitiveCause | None
|
|
1283
|
+
input: SensitiveData | None
|
|
1284
|
+
inputDetails: CloudWatchEventsExecutionDataDetails | None
|
|
1285
|
+
output: SensitiveData | None
|
|
1286
|
+
outputDetails: CloudWatchEventsExecutionDataDetails | None
|
|
1287
|
+
traceHeader: TraceHeader | None
|
|
1288
|
+
billingDetails: BillingDetails | None
|
|
1250
1289
|
|
|
1251
1290
|
|
|
1252
1291
|
class StopExecutionInput(ServiceRequest):
|
|
1253
1292
|
executionArn: Arn
|
|
1254
|
-
error:
|
|
1255
|
-
cause:
|
|
1293
|
+
error: SensitiveError | None
|
|
1294
|
+
cause: SensitiveCause | None
|
|
1256
1295
|
|
|
1257
1296
|
|
|
1258
1297
|
class StopExecutionOutput(TypedDict, total=False):
|
|
1259
1298
|
stopDate: Timestamp
|
|
1260
1299
|
|
|
1261
1300
|
|
|
1262
|
-
TagKeyList =
|
|
1301
|
+
TagKeyList = list[TagKey]
|
|
1263
1302
|
|
|
1264
1303
|
|
|
1265
1304
|
class TagResourceInput(ServiceRequest):
|
|
@@ -1271,22 +1310,33 @@ class TagResourceOutput(TypedDict, total=False):
|
|
|
1271
1310
|
pass
|
|
1272
1311
|
|
|
1273
1312
|
|
|
1313
|
+
class TestStateConfiguration(TypedDict, total=False):
|
|
1314
|
+
retrierRetryCount: RetrierRetryCount | None
|
|
1315
|
+
errorCausedByState: TestStateStateName | None
|
|
1316
|
+
mapIterationFailureCount: MapIterationFailureCount | None
|
|
1317
|
+
mapItemReaderData: SensitiveData | None
|
|
1318
|
+
|
|
1319
|
+
|
|
1274
1320
|
class TestStateInput(ServiceRequest):
|
|
1275
1321
|
definition: Definition
|
|
1276
|
-
roleArn:
|
|
1277
|
-
input:
|
|
1278
|
-
inspectionLevel:
|
|
1279
|
-
revealSecrets:
|
|
1280
|
-
variables:
|
|
1322
|
+
roleArn: Arn | None
|
|
1323
|
+
input: SensitiveData | None
|
|
1324
|
+
inspectionLevel: InspectionLevel | None
|
|
1325
|
+
revealSecrets: RevealSecrets | None
|
|
1326
|
+
variables: SensitiveData | None
|
|
1327
|
+
stateName: TestStateStateName | None
|
|
1328
|
+
mock: MockInput | None
|
|
1329
|
+
context: SensitiveData | None
|
|
1330
|
+
stateConfiguration: TestStateConfiguration | None
|
|
1281
1331
|
|
|
1282
1332
|
|
|
1283
1333
|
class TestStateOutput(TypedDict, total=False):
|
|
1284
|
-
output:
|
|
1285
|
-
error:
|
|
1286
|
-
cause:
|
|
1287
|
-
inspectionData:
|
|
1288
|
-
nextState:
|
|
1289
|
-
status:
|
|
1334
|
+
output: SensitiveData | None
|
|
1335
|
+
error: SensitiveError | None
|
|
1336
|
+
cause: SensitiveCause | None
|
|
1337
|
+
inspectionData: InspectionData | None
|
|
1338
|
+
nextState: StateName | None
|
|
1339
|
+
status: TestExecutionStatus | None
|
|
1290
1340
|
|
|
1291
1341
|
|
|
1292
1342
|
class UntagResourceInput(ServiceRequest):
|
|
@@ -1300,9 +1350,9 @@ class UntagResourceOutput(TypedDict, total=False):
|
|
|
1300
1350
|
|
|
1301
1351
|
class UpdateMapRunInput(ServiceRequest):
|
|
1302
1352
|
mapRunArn: LongArn
|
|
1303
|
-
maxConcurrency:
|
|
1304
|
-
toleratedFailurePercentage:
|
|
1305
|
-
toleratedFailureCount:
|
|
1353
|
+
maxConcurrency: MaxConcurrency | None
|
|
1354
|
+
toleratedFailurePercentage: ToleratedFailurePercentage | None
|
|
1355
|
+
toleratedFailureCount: ToleratedFailureCount | None
|
|
1306
1356
|
|
|
1307
1357
|
|
|
1308
1358
|
class UpdateMapRunOutput(TypedDict, total=False):
|
|
@@ -1311,8 +1361,8 @@ class UpdateMapRunOutput(TypedDict, total=False):
|
|
|
1311
1361
|
|
|
1312
1362
|
class UpdateStateMachineAliasInput(ServiceRequest):
|
|
1313
1363
|
stateMachineAliasArn: Arn
|
|
1314
|
-
description:
|
|
1315
|
-
routingConfiguration:
|
|
1364
|
+
description: AliasDescription | None
|
|
1365
|
+
routingConfiguration: RoutingConfigurationList | None
|
|
1316
1366
|
|
|
1317
1367
|
|
|
1318
1368
|
class UpdateStateMachineAliasOutput(TypedDict, total=False):
|
|
@@ -1321,47 +1371,47 @@ class UpdateStateMachineAliasOutput(TypedDict, total=False):
|
|
|
1321
1371
|
|
|
1322
1372
|
class UpdateStateMachineInput(ServiceRequest):
|
|
1323
1373
|
stateMachineArn: Arn
|
|
1324
|
-
definition:
|
|
1325
|
-
roleArn:
|
|
1326
|
-
loggingConfiguration:
|
|
1327
|
-
tracingConfiguration:
|
|
1328
|
-
publish:
|
|
1329
|
-
versionDescription:
|
|
1330
|
-
encryptionConfiguration:
|
|
1374
|
+
definition: Definition | None
|
|
1375
|
+
roleArn: Arn | None
|
|
1376
|
+
loggingConfiguration: LoggingConfiguration | None
|
|
1377
|
+
tracingConfiguration: TracingConfiguration | None
|
|
1378
|
+
publish: Publish | None
|
|
1379
|
+
versionDescription: VersionDescription | None
|
|
1380
|
+
encryptionConfiguration: EncryptionConfiguration | None
|
|
1331
1381
|
|
|
1332
1382
|
|
|
1333
1383
|
class UpdateStateMachineOutput(TypedDict, total=False):
|
|
1334
1384
|
updateDate: Timestamp
|
|
1335
|
-
revisionId:
|
|
1336
|
-
stateMachineVersionArn:
|
|
1385
|
+
revisionId: RevisionId | None
|
|
1386
|
+
stateMachineVersionArn: Arn | None
|
|
1337
1387
|
|
|
1338
1388
|
|
|
1339
1389
|
class ValidateStateMachineDefinitionDiagnostic(TypedDict, total=False):
|
|
1340
1390
|
severity: ValidateStateMachineDefinitionSeverity
|
|
1341
1391
|
code: ValidateStateMachineDefinitionCode
|
|
1342
1392
|
message: ValidateStateMachineDefinitionMessage
|
|
1343
|
-
location:
|
|
1393
|
+
location: ValidateStateMachineDefinitionLocation | None
|
|
1344
1394
|
|
|
1345
1395
|
|
|
1346
|
-
ValidateStateMachineDefinitionDiagnosticList =
|
|
1396
|
+
ValidateStateMachineDefinitionDiagnosticList = list[ValidateStateMachineDefinitionDiagnostic]
|
|
1347
1397
|
|
|
1348
1398
|
|
|
1349
1399
|
class ValidateStateMachineDefinitionInput(TypedDict, total=False):
|
|
1350
1400
|
definition: Definition
|
|
1351
|
-
type:
|
|
1352
|
-
severity:
|
|
1353
|
-
maxResults:
|
|
1401
|
+
type: StateMachineType | None
|
|
1402
|
+
severity: ValidateStateMachineDefinitionSeverity | None
|
|
1403
|
+
maxResults: ValidateStateMachineDefinitionMaxResult | None
|
|
1354
1404
|
|
|
1355
1405
|
|
|
1356
1406
|
class ValidateStateMachineDefinitionOutput(TypedDict, total=False):
|
|
1357
1407
|
result: ValidateStateMachineDefinitionResultCode
|
|
1358
1408
|
diagnostics: ValidateStateMachineDefinitionDiagnosticList
|
|
1359
|
-
truncated:
|
|
1409
|
+
truncated: ValidateStateMachineDefinitionTruncated | None
|
|
1360
1410
|
|
|
1361
1411
|
|
|
1362
1412
|
class StepfunctionsApi:
|
|
1363
|
-
service = "stepfunctions"
|
|
1364
|
-
version = "2016-11-23"
|
|
1413
|
+
service: str = "stepfunctions"
|
|
1414
|
+
version: str = "2016-11-23"
|
|
1365
1415
|
|
|
1366
1416
|
@handler("CreateActivity")
|
|
1367
1417
|
def create_activity(
|
|
@@ -1641,17 +1691,9 @@ class StepfunctionsApi:
|
|
|
1641
1691
|
) -> TagResourceOutput:
|
|
1642
1692
|
raise NotImplementedError
|
|
1643
1693
|
|
|
1644
|
-
@handler("TestState")
|
|
1694
|
+
@handler("TestState", expand=False)
|
|
1645
1695
|
def test_state(
|
|
1646
|
-
self,
|
|
1647
|
-
context: RequestContext,
|
|
1648
|
-
definition: Definition,
|
|
1649
|
-
role_arn: Arn | None = None,
|
|
1650
|
-
input: SensitiveData | None = None,
|
|
1651
|
-
inspection_level: InspectionLevel | None = None,
|
|
1652
|
-
reveal_secrets: RevealSecrets | None = None,
|
|
1653
|
-
variables: SensitiveData | None = None,
|
|
1654
|
-
**kwargs,
|
|
1696
|
+
self, context: RequestContext, request: TestStateInput, **kwargs
|
|
1655
1697
|
) -> TestStateOutput:
|
|
1656
1698
|
raise NotImplementedError
|
|
1657
1699
|
|