|
475 | 475 | ], |
476 | 476 | "documentation":"<p>Returns details about a Lambda function URL.</p>" |
477 | 477 | }, |
| 478 | + "GetDurableExecutionHistory":{ |
| 479 | + "name":"GetDurableExecutionHistory", |
| 480 | + "http":{ |
| 481 | + "method":"GET", |
| 482 | + "requestUri":"/2025-12-01/durable-executions/{DurableExecutionArn}/history", |
| 483 | + "responseCode":200 |
| 484 | + }, |
| 485 | + "input":{"shape":"GetDurableExecutionHistoryRequest"}, |
| 486 | + "output":{"shape":"GetDurableExecutionHistoryResponse"}, |
| 487 | + "errors":[ |
| 488 | + {"shape":"InvalidParameterValueException"}, |
| 489 | + {"shape":"TooManyRequestsException"}, |
| 490 | + {"shape":"ServiceException"}, |
| 491 | + {"shape":"ResourceNotFoundException"} |
| 492 | + ] |
| 493 | + }, |
478 | 494 | "GetLayerVersion":{ |
479 | 495 | "name":"GetLayerVersion", |
480 | 496 | "http":{ |
|
667 | 683 | ], |
668 | 684 | "documentation":"<p>Lists event source mappings. Specify an <code>EventSourceArn</code> to show only event source mappings for a single event source.</p>" |
669 | 685 | }, |
| 686 | + "ListDurableExecutions":{ |
| 687 | + "name":"ListDurableExecutions", |
| 688 | + "http":{ |
| 689 | + "method":"GET", |
| 690 | + "requestUri":"/2025-12-01/durable-executions", |
| 691 | + "responseCode":200 |
| 692 | + }, |
| 693 | + "input":{"shape":"ListDurableExecutionsRequest"}, |
| 694 | + "output":{"shape":"ListDurableExecutionsResponse"}, |
| 695 | + "errors":[ |
| 696 | + {"shape":"InvalidParameterValueException"}, |
| 697 | + {"shape":"TooManyRequestsException"}, |
| 698 | + {"shape":"ServiceException"} |
| 699 | + ] |
| 700 | + }, |
670 | 701 | "ListFunctionEventInvokeConfigs":{ |
671 | 702 | "name":"ListFunctionEventInvokeConfigs", |
672 | 703 | "http":{ |
|
2096 | 2127 | }, |
2097 | 2128 | "documentation":"<p>A configuration object that specifies the destination of an event after Lambda processes it.</p>" |
2098 | 2129 | }, |
| 2130 | + "DurableExecutionArn":{ |
| 2131 | + "type":"string", |
| 2132 | + "max":1024, |
| 2133 | + "min":1 |
| 2134 | + }, |
| 2135 | + "DurableExecutionName":{ |
| 2136 | + "type":"string", |
| 2137 | + "max":64, |
| 2138 | + "min":1, |
| 2139 | + "pattern":"[a-zA-Z0-9-_]+" |
| 2140 | + }, |
| 2141 | + "DurableExecutions":{ |
| 2142 | + "type":"list", |
| 2143 | + "member":{"shape":"Execution"} |
| 2144 | + }, |
2099 | 2145 | "EC2AccessDeniedException":{ |
2100 | 2146 | "type":"structure", |
2101 | 2147 | "members":{ |
|
2394 | 2440 | "min":0, |
2395 | 2441 | "pattern":"[a-zA-Z0-9._\\-]+" |
2396 | 2442 | }, |
| 2443 | + "Event":{ |
| 2444 | + "type":"structure", |
| 2445 | + "members":{ |
| 2446 | + "EventType":{"shape":"EventType"}, |
| 2447 | + "EventId":{"shape":"EventId"}, |
| 2448 | + "EventTimestamp":{"shape":"ExecutionTimestamp"} |
| 2449 | + } |
| 2450 | + }, |
| 2451 | + "EventId":{ |
| 2452 | + "type":"integer", |
| 2453 | + "box":true, |
| 2454 | + "min":1 |
| 2455 | + }, |
| 2456 | + "Events":{ |
| 2457 | + "type":"list", |
| 2458 | + "member":{"shape":"Event"} |
| 2459 | + }, |
| 2460 | + "EventType":{ |
| 2461 | + "type":"string", |
| 2462 | + "enum":[ |
| 2463 | + "ExecutionStarted", |
| 2464 | + "ExecutionSucceeded", |
| 2465 | + "ExecutionFailed" |
| 2466 | + ] |
| 2467 | + }, |
| 2468 | + "Execution":{ |
| 2469 | + "type":"structure", |
| 2470 | + "members":{ |
| 2471 | + "DurableExecutionArn":{"shape":"DurableExecutionArn"}, |
| 2472 | + "DurableExecutionName":{"shape":"DurableExecutionName"}, |
| 2473 | + "FunctionArn":{"shape":"FunctionArn"}, |
| 2474 | + "Status":{"shape":"ExecutionStatus"}, |
| 2475 | + "StartDate":{"shape":"ExecutionTimestamp"}, |
| 2476 | + "StopDate":{"shape":"ExecutionTimestamp"} |
| 2477 | + } |
| 2478 | + }, |
| 2479 | + "ExecutionStatus":{ |
| 2480 | + "type":"string", |
| 2481 | + "enum":[ |
| 2482 | + "RUNNING", |
| 2483 | + "SUCCEEDED", |
| 2484 | + "FAILED", |
| 2485 | + "TIMED_OUT", |
| 2486 | + "STOPPED" |
| 2487 | + ] |
| 2488 | + }, |
| 2489 | + "ExecutionTimestamp":{"type":"timestamp"}, |
2397 | 2490 | "FileSystemArn":{ |
2398 | 2491 | "type":"string", |
2399 | 2492 | "max":200, |
|
2829 | 2922 | } |
2830 | 2923 | } |
2831 | 2924 | }, |
| 2925 | + "GetDurableExecutionHistoryRequest":{ |
| 2926 | + "type":"structure", |
| 2927 | + "required":["DurableExecutionArn"], |
| 2928 | + "members":{ |
| 2929 | + "DurableExecutionArn":{ |
| 2930 | + "shape":"DurableExecutionArn", |
| 2931 | + "location":"uri", |
| 2932 | + "locationName":"DurableExecutionArn" |
| 2933 | + }, |
| 2934 | + "IncludeExecutionData":{ |
| 2935 | + "shape":"IncludeExecutionData", |
| 2936 | + "location":"querystring", |
| 2937 | + "locationName":"IncludeExecutionData" |
| 2938 | + }, |
| 2939 | + "MaxItems":{ |
| 2940 | + "shape":"ItemCount", |
| 2941 | + "location":"querystring", |
| 2942 | + "locationName":"MaxItems" |
| 2943 | + }, |
| 2944 | + "Marker":{ |
| 2945 | + "shape":"PaginationMarker", |
| 2946 | + "location":"querystring", |
| 2947 | + "locationName":"Marker" |
| 2948 | + }, |
| 2949 | + "ReverseOrder":{ |
| 2950 | + "shape":"ReverseOrder", |
| 2951 | + "location":"querystring", |
| 2952 | + "locationName":"ReverseOrder" |
| 2953 | + } |
| 2954 | + } |
| 2955 | + }, |
| 2956 | + "GetDurableExecutionHistoryResponse":{ |
| 2957 | + "type":"structure", |
| 2958 | + "members":{ |
| 2959 | + "Events":{"shape":"Events"}, |
| 2960 | + "NextMarker":{"shape":"PaginationMarker"} |
| 2961 | + } |
| 2962 | + }, |
2832 | 2963 | "GetFunctionCodeSigningConfigRequest":{ |
2833 | 2964 | "type":"structure", |
2834 | 2965 | "required":["FunctionName"], |
|
3525 | 3656 | "InvalidImage" |
3526 | 3657 | ] |
3527 | 3658 | }, |
| 3659 | + "IncludeExecutionData":{ |
| 3660 | + "type":"boolean", |
| 3661 | + "box":true |
| 3662 | + }, |
| 3663 | + "Integer":{"type":"integer"}, |
| 3664 | + "ItemCount":{ |
| 3665 | + "type":"integer", |
| 3666 | + "min":0 |
| 3667 | + }, |
3528 | 3668 | "Layer":{ |
3529 | 3669 | "type":"structure", |
3530 | 3670 | "members":{ |
|
3768 | 3908 | } |
3769 | 3909 | } |
3770 | 3910 | }, |
| 3911 | + "ListDurableExecutionsRequest":{ |
| 3912 | + "type":"structure", |
| 3913 | + "members":{ |
| 3914 | + "FunctionName":{ |
| 3915 | + "shape":"FunctionName", |
| 3916 | + "location":"querystring", |
| 3917 | + "locationName":"FunctionName" |
| 3918 | + }, |
| 3919 | + "FunctionVersion":{ |
| 3920 | + "shape":"Version", |
| 3921 | + "location":"querystring", |
| 3922 | + "locationName":"FunctionVersion" |
| 3923 | + }, |
| 3924 | + "DurableExecutionName":{ |
| 3925 | + "shape":"DurableExecutionName", |
| 3926 | + "location":"querystring", |
| 3927 | + "locationName":"DurableExecutionName" |
| 3928 | + }, |
| 3929 | + "StatusFilter":{ |
| 3930 | + "shape":"ExecutionStatus", |
| 3931 | + "location":"querystring", |
| 3932 | + "locationName":"StatusFilter" |
| 3933 | + }, |
| 3934 | + "TimeFilter":{ |
| 3935 | + "shape":"TimeFilter", |
| 3936 | + "location":"querystring", |
| 3937 | + "locationName":"TimeFilter" |
| 3938 | + }, |
| 3939 | + "TimeAfter":{ |
| 3940 | + "shape":"ExecutionTimestamp", |
| 3941 | + "location":"querystring", |
| 3942 | + "locationName":"TimeAfter" |
| 3943 | + }, |
| 3944 | + "TimeBefore":{ |
| 3945 | + "shape":"ExecutionTimestamp", |
| 3946 | + "location":"querystring", |
| 3947 | + "locationName":"TimeBefore" |
| 3948 | + }, |
| 3949 | + "ReverseOrder":{ |
| 3950 | + "shape":"ReverseOrder", |
| 3951 | + "location":"querystring", |
| 3952 | + "locationName":"ReverseOrder" |
| 3953 | + }, |
| 3954 | + "Marker":{ |
| 3955 | + "shape":"PaginationMarker", |
| 3956 | + "location":"querystring", |
| 3957 | + "locationName":"Marker" |
| 3958 | + }, |
| 3959 | + "MaxItems":{ |
| 3960 | + "shape":"ItemCount", |
| 3961 | + "location":"querystring", |
| 3962 | + "locationName":"MaxItems" |
| 3963 | + } |
| 3964 | + } |
| 3965 | + }, |
| 3966 | + "ListDurableExecutionsResponse":{ |
| 3967 | + "type":"structure", |
| 3968 | + "members":{ |
| 3969 | + "DurableExecutions":{"shape":"DurableExecutions"}, |
| 3970 | + "NextMarker":{"shape":"PaginationMarker"} |
| 3971 | + } |
| 3972 | + }, |
3771 | 3973 | "ListEventSourceMappingsRequest":{ |
3772 | 3974 | "type":"structure", |
3773 | 3975 | "members":{ |
|
4284 | 4486 | "min":1, |
4285 | 4487 | "pattern":".*" |
4286 | 4488 | }, |
| 4489 | + "PaginationMarker":{ |
| 4490 | + "type":"string", |
| 4491 | + "max":1024, |
| 4492 | + "min":1 |
| 4493 | + }, |
4287 | 4494 | "PackageType":{ |
4288 | 4495 | "type":"string", |
4289 | 4496 | "enum":[ |
|
4797 | 5004 | "type":"string", |
4798 | 5005 | "pattern":"arn:(aws[a-zA-Z-]*)?:iam::\\d{12}:role/?[a-zA-Z_0-9+=,.@\\-_/]+" |
4799 | 5006 | }, |
| 5007 | + "ReverseOrder":{ |
| 5008 | + "type":"boolean", |
| 5009 | + "box":true |
| 5010 | + }, |
4800 | 5011 | "Runtime":{ |
4801 | 5012 | "type":"string", |
4802 | 5013 | "enum":[ |
|
5025 | 5236 | "CallerRateLimitExceeded" |
5026 | 5237 | ] |
5027 | 5238 | }, |
| 5239 | + "TimeFilter":{ |
| 5240 | + "type":"string", |
| 5241 | + "enum":[ |
| 5242 | + "START", |
| 5243 | + "END" |
| 5244 | + ] |
| 5245 | + }, |
5028 | 5246 | "Timeout":{ |
5029 | 5247 | "type":"integer", |
5030 | 5248 | "min":1 |
|
0 commit comments