|
744 | 744 | "executionSucceededEventDetails":{"shape":"ExecutionSucceededEventDetails"}, |
745 | 745 | "executionAbortedEventDetails":{"shape":"ExecutionAbortedEventDetails"}, |
746 | 746 | "executionTimedOutEventDetails":{"shape":"ExecutionTimedOutEventDetails"}, |
| 747 | + "mapStateStartedEventDetails":{"shape":"MapStateStartedEventDetails"}, |
| 748 | + "mapIterationStartedEventDetails":{"shape":"MapIterationEventDetails"}, |
| 749 | + "mapIterationSucceededEventDetails":{"shape":"MapIterationEventDetails"}, |
| 750 | + "mapIterationFailedEventDetails":{"shape":"MapIterationEventDetails"}, |
| 751 | + "mapIterationAbortedEventDetails":{"shape":"MapIterationEventDetails"}, |
747 | 752 | "lambdaFunctionFailedEventDetails":{"shape":"LambdaFunctionFailedEventDetails"}, |
748 | 753 | "lambdaFunctionScheduleFailedEventDetails":{"shape":"LambdaFunctionScheduleFailedEventDetails"}, |
749 | 754 | "lambdaFunctionScheduledEventDetails":{"shape":"LambdaFunctionScheduledEventDetails"}, |
|
762 | 767 | "type":"string", |
763 | 768 | "enum":[ |
764 | 769 | "ActivityFailed", |
765 | | - "ActivityScheduleFailed", |
766 | 770 | "ActivityScheduled", |
| 771 | + "ActivityScheduleFailed", |
767 | 772 | "ActivityStarted", |
768 | 773 | "ActivitySucceeded", |
769 | 774 | "ActivityTimedOut", |
770 | 775 | "ChoiceStateEntered", |
771 | 776 | "ChoiceStateExited", |
772 | | - "TaskFailed", |
773 | | - "TaskScheduled", |
774 | | - "TaskStartFailed", |
775 | | - "TaskStarted", |
776 | | - "TaskSubmitFailed", |
777 | | - "TaskSubmitted", |
778 | | - "TaskSucceeded", |
779 | | - "TaskTimedOut", |
| 777 | + "ExecutionAborted", |
780 | 778 | "ExecutionFailed", |
781 | 779 | "ExecutionStarted", |
782 | 780 | "ExecutionSucceeded", |
783 | | - "ExecutionAborted", |
784 | 781 | "ExecutionTimedOut", |
785 | 782 | "FailStateEntered", |
786 | 783 | "LambdaFunctionFailed", |
787 | | - "LambdaFunctionScheduleFailed", |
788 | 784 | "LambdaFunctionScheduled", |
789 | | - "LambdaFunctionStartFailed", |
| 785 | + "LambdaFunctionScheduleFailed", |
790 | 786 | "LambdaFunctionStarted", |
| 787 | + "LambdaFunctionStartFailed", |
791 | 788 | "LambdaFunctionSucceeded", |
792 | 789 | "LambdaFunctionTimedOut", |
793 | | - "SucceedStateEntered", |
794 | | - "SucceedStateExited", |
795 | | - "TaskStateAborted", |
796 | | - "TaskStateEntered", |
797 | | - "TaskStateExited", |
798 | | - "PassStateEntered", |
799 | | - "PassStateExited", |
| 790 | + "MapIterationAborted", |
| 791 | + "MapIterationFailed", |
| 792 | + "MapIterationStarted", |
| 793 | + "MapIterationSucceeded", |
| 794 | + "MapStateAborted", |
| 795 | + "MapStateEntered", |
| 796 | + "MapStateExited", |
| 797 | + "MapStateFailed", |
| 798 | + "MapStateStarted", |
| 799 | + "MapStateSucceeded", |
800 | 800 | "ParallelStateAborted", |
801 | 801 | "ParallelStateEntered", |
802 | 802 | "ParallelStateExited", |
803 | 803 | "ParallelStateFailed", |
804 | 804 | "ParallelStateStarted", |
805 | 805 | "ParallelStateSucceeded", |
| 806 | + "PassStateEntered", |
| 807 | + "PassStateExited", |
| 808 | + "SucceedStateEntered", |
| 809 | + "SucceedStateExited", |
| 810 | + "TaskFailed", |
| 811 | + "TaskScheduled", |
| 812 | + "TaskStarted", |
| 813 | + "TaskStartFailed", |
| 814 | + "TaskStateAborted", |
| 815 | + "TaskStateEntered", |
| 816 | + "TaskStateExited", |
| 817 | + "TaskSubmitFailed", |
| 818 | + "TaskSubmitted", |
| 819 | + "TaskSucceeded", |
| 820 | + "TaskTimedOut", |
806 | 821 | "WaitStateAborted", |
807 | 822 | "WaitStateEntered", |
808 | 823 | "WaitStateExited" |
|
922 | 937 | "stateMachineArn":{"shape":"Arn"}, |
923 | 938 | "statusFilter":{"shape":"ExecutionStatus"}, |
924 | 939 | "maxResults":{"shape":"PageSize"}, |
925 | | - "nextToken":{"shape":"PageToken"} |
| 940 | + "nextToken":{"shape":"ListExecutionsPageToken"} |
926 | 941 | } |
927 | 942 | }, |
928 | 943 | "ListExecutionsOutput":{ |
929 | 944 | "type":"structure", |
930 | 945 | "required":["executions"], |
931 | 946 | "members":{ |
932 | 947 | "executions":{"shape":"ExecutionList"}, |
933 | | - "nextToken":{"shape":"PageToken"} |
| 948 | + "nextToken":{"shape":"ListExecutionsPageToken"} |
934 | 949 | } |
935 | 950 | }, |
| 951 | + "ListExecutionsPageToken":{ |
| 952 | + "type":"string", |
| 953 | + "max":3096, |
| 954 | + "min":1 |
| 955 | + }, |
936 | 956 | "ListStateMachinesInput":{ |
937 | 957 | "type":"structure", |
938 | 958 | "members":{ |
|
961 | 981 | "tags":{"shape":"TagList"} |
962 | 982 | } |
963 | 983 | }, |
| 984 | + "MapIterationEventDetails":{ |
| 985 | + "type":"structure", |
| 986 | + "members":{ |
| 987 | + "Name":{"shape":"Name"}, |
| 988 | + "Index":{"shape":"UnsignedInteger"} |
| 989 | + } |
| 990 | + }, |
| 991 | + "MapStateStartedEventDetails":{ |
| 992 | + "type":"structure", |
| 993 | + "members":{ |
| 994 | + "Length":{"shape":"UnsignedInteger"} |
| 995 | + } |
| 996 | + }, |
964 | 997 | "MissingRequiredParameter":{ |
965 | 998 | "type":"structure", |
966 | 999 | "members":{ |
|
1336 | 1369 | }, |
1337 | 1370 | "exception":true |
1338 | 1371 | }, |
| 1372 | + "UnsignedInteger":{ |
| 1373 | + "type":"integer", |
| 1374 | + "min":0 |
| 1375 | + }, |
1339 | 1376 | "UntagResourceInput":{ |
1340 | 1377 | "type":"structure", |
1341 | 1378 | "required":[ |
|
0 commit comments