|
779 | 779 | ], |
780 | 780 | "documentation":"<p>Lists event source mappings. Specify an <code>EventSourceArn</code> to show only event source mappings for a single event source.</p>" |
781 | 781 | }, |
782 | | - "ListDurableExecutions":{ |
783 | | - "name":"ListDurableExecutions", |
| 782 | + "ListDurableExecutionsByFunction":{ |
| 783 | + "name":"ListDurableExecutionsByFunction", |
784 | 784 | "http":{ |
785 | 785 | "method":"GET", |
786 | | - "requestUri":"/2025-12-01/durable-executions", |
| 786 | + "requestUri":"/2025-12-01/functions/{FunctionName}/durable-executions", |
787 | 787 | "responseCode":200 |
788 | 788 | }, |
789 | | - "input":{"shape":"ListDurableExecutionsRequest"}, |
790 | | - "output":{"shape":"ListDurableExecutionsResponse"}, |
| 789 | + "input":{"shape":"ListDurableExecutionsByFunctionRequest"}, |
| 790 | + "output":{"shape":"ListDurableExecutionsByFunctionResponse"}, |
791 | 791 | "errors":[ |
792 | 792 | {"shape":"InvalidParameterValueException"}, |
793 | 793 | {"shape":"TooManyRequestsException"}, |
794 | 794 | {"shape":"ServiceException"} |
795 | | - ] |
| 795 | + ], |
| 796 | + "readonly":true |
796 | 797 | }, |
797 | 798 | "ListFunctionEventInvokeConfigs":{ |
798 | 799 | "name":"ListFunctionEventInvokeConfigs", |
|
2750 | 2751 | "DurableExecutionName":{"shape":"DurableExecutionName"}, |
2751 | 2752 | "FunctionArn":{"shape":"FunctionArn"}, |
2752 | 2753 | "Status":{"shape":"ExecutionStatus"}, |
2753 | | - "StartDate":{"shape":"ExecutionTimestamp"}, |
2754 | | - "StopDate":{"shape":"ExecutionTimestamp"} |
| 2754 | + "StartTimestamp":{"shape":"ExecutionTimestamp"}, |
| 2755 | + "EndTimestamp":{"shape":"ExecutionTimestamp"} |
2755 | 2756 | } |
2756 | 2757 | }, |
2757 | 2758 | "ExecutionStatus":{ |
|
3676 | 3677 | }, |
3677 | 3678 | "documentation":"<p>Response to GetFunctionConfiguration request.</p>" |
3678 | 3679 | }, |
3679 | | - "Integer":{"type":"integer"}, |
3680 | 3680 | "InvalidCodeSignatureException":{ |
3681 | 3681 | "type":"structure", |
3682 | 3682 | "members":{ |
|
4194 | 4194 | } |
4195 | 4195 | } |
4196 | 4196 | }, |
4197 | | - "ListDurableExecutionsRequest":{ |
| 4197 | + "ListDurableExecutionsByFunctionRequest":{ |
4198 | 4198 | "type":"structure", |
| 4199 | + "required":["FunctionName"], |
4199 | 4200 | "members":{ |
4200 | 4201 | "FunctionName":{ |
4201 | 4202 | "shape":"FunctionName", |
4202 | | - "location":"querystring", |
| 4203 | + "location":"uri", |
4203 | 4204 | "locationName":"FunctionName" |
4204 | 4205 | }, |
4205 | | - "FunctionVersion":{ |
4206 | | - "shape":"Version", |
| 4206 | + "Qualifier":{ |
| 4207 | + "shape":"Qualifier", |
4207 | 4208 | "location":"querystring", |
4208 | | - "locationName":"FunctionVersion" |
| 4209 | + "locationName":"Qualifier" |
4209 | 4210 | }, |
4210 | 4211 | "DurableExecutionName":{ |
4211 | 4212 | "shape":"DurableExecutionName", |
4212 | 4213 | "location":"querystring", |
4213 | 4214 | "locationName":"DurableExecutionName" |
4214 | 4215 | }, |
4215 | | - "StatusFilter":{ |
4216 | | - "shape":"ExecutionStatus", |
| 4216 | + "Statuses":{ |
| 4217 | + "shape":"ExecutionStatusList", |
4217 | 4218 | "location":"querystring", |
4218 | 4219 | "locationName":"StatusFilter" |
4219 | 4220 | }, |
4220 | | - "TimeFilter":{ |
4221 | | - "shape":"TimeFilter", |
4222 | | - "location":"querystring", |
4223 | | - "locationName":"TimeFilter" |
4224 | | - }, |
4225 | | - "TimeAfter":{ |
| 4221 | + "StartedAfter":{ |
4226 | 4222 | "shape":"ExecutionTimestamp", |
4227 | 4223 | "location":"querystring", |
4228 | 4224 | "locationName":"TimeAfter" |
4229 | 4225 | }, |
4230 | | - "TimeBefore":{ |
| 4226 | + "StartedBefore":{ |
4231 | 4227 | "shape":"ExecutionTimestamp", |
4232 | 4228 | "location":"querystring", |
4233 | 4229 | "locationName":"TimeBefore" |
|
4249 | 4245 | } |
4250 | 4246 | } |
4251 | 4247 | }, |
4252 | | - "ListDurableExecutionsResponse":{ |
| 4248 | + "ListDurableExecutionsByFunctionResponse":{ |
4253 | 4249 | "type":"structure", |
4254 | 4250 | "members":{ |
4255 | 4251 | "DurableExecutions":{"shape":"DurableExecutions"}, |
|
4811 | 4807 | "Error":{"shape":"EventError"} |
4812 | 4808 | } |
4813 | 4809 | }, |
| 4810 | + "ExecutionStatusList":{ |
| 4811 | + "type":"list", |
| 4812 | + "member":{"shape":"ExecutionStatus"} |
| 4813 | + }, |
4814 | 4814 | "ExecutionStoppedDetails":{ |
4815 | 4815 | "type":"structure", |
4816 | 4816 | "members":{ |
|
6319 | 6319 | "FunctionArn":{"shape":"FunctionArn"}, |
6320 | 6320 | "InputPayload":{"shape":"InputPayload"}, |
6321 | 6321 | "Status":{"shape":"ExecutionStatus"}, |
6322 | | - "StartDate":{"shape":"ExecutionTimestamp"}, |
6323 | | - "StopDate":{"shape":"ExecutionTimestamp"}, |
6324 | | - "ResultPayload":{"shape":"ResultPayload"}, |
| 6322 | + "StartTimestamp":{"shape":"ExecutionTimestamp"}, |
| 6323 | + "EndTimestamp":{"shape":"ExecutionTimestamp"}, |
| 6324 | + "Result":{"shape":"ResultPayload"}, |
6325 | 6325 | "ErrorPayload":{"shape":"ErrorPayload"} |
6326 | 6326 | } |
6327 | 6327 | }, |
|
6451 | 6451 | "Error":{"shape":"ErrorObject"} |
6452 | 6452 | } |
6453 | 6453 | }, |
6454 | | - "WaitCancelledDetails":{ |
6455 | | - "type":"structure", |
6456 | | - "members":{ |
6457 | | - "Error":{"shape":"EventError"} |
6458 | | - } |
6459 | | - }, |
6460 | 6454 | "WaitDetails":{ |
6461 | 6455 | "type":"structure", |
6462 | 6456 | "members":{ |
|
0 commit comments