Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 27 additions & 33 deletions .github/model/lambda.json
Original file line number Diff line number Diff line change
Expand Up @@ -779,20 +779,21 @@
],
"documentation":"<p>Lists event source mappings. Specify an <code>EventSourceArn</code> to show only event source mappings for a single event source.</p>"
},
"ListDurableExecutions":{
"name":"ListDurableExecutions",
"ListDurableExecutionsByFunction":{
"name":"ListDurableExecutionsByFunction",
"http":{
"method":"GET",
"requestUri":"/2025-12-01/durable-executions",
"requestUri":"/2025-12-01/functions/{FunctionName}/durable-executions",
"responseCode":200
},
"input":{"shape":"ListDurableExecutionsRequest"},
"output":{"shape":"ListDurableExecutionsResponse"},
"input":{"shape":"ListDurableExecutionsByFunctionRequest"},
"output":{"shape":"ListDurableExecutionsByFunctionResponse"},
"errors":[
{"shape":"InvalidParameterValueException"},
{"shape":"TooManyRequestsException"},
{"shape":"ServiceException"}
]
],
"readonly":true
},
"ListFunctionEventInvokeConfigs":{
"name":"ListFunctionEventInvokeConfigs",
Expand Down Expand Up @@ -2750,8 +2751,8 @@
"DurableExecutionName":{"shape":"DurableExecutionName"},
"FunctionArn":{"shape":"FunctionArn"},
"Status":{"shape":"ExecutionStatus"},
"StartDate":{"shape":"ExecutionTimestamp"},
"StopDate":{"shape":"ExecutionTimestamp"}
"StartTimestamp":{"shape":"ExecutionTimestamp"},
"EndTimestamp":{"shape":"ExecutionTimestamp"}
}
},
"ExecutionStatus":{
Expand Down Expand Up @@ -3676,7 +3677,6 @@
},
"documentation":"<p>Response to GetFunctionConfiguration request.</p>"
},
"Integer":{"type":"integer"},
"InvalidCodeSignatureException":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -4194,40 +4194,36 @@
}
}
},
"ListDurableExecutionsRequest":{
"ListDurableExecutionsByFunctionRequest":{
"type":"structure",
"required":["FunctionName"],
"members":{
"FunctionName":{
"shape":"FunctionName",
"location":"querystring",
"location":"uri",
"locationName":"FunctionName"
},
"FunctionVersion":{
"shape":"Version",
"Qualifier":{
"shape":"Qualifier",
"location":"querystring",
"locationName":"FunctionVersion"
"locationName":"Qualifier"
},
"DurableExecutionName":{
"shape":"DurableExecutionName",
"location":"querystring",
"locationName":"DurableExecutionName"
},
"StatusFilter":{
"shape":"ExecutionStatus",
"Statuses":{
"shape":"ExecutionStatusList",
"location":"querystring",
"locationName":"StatusFilter"
},
"TimeFilter":{
"shape":"TimeFilter",
"location":"querystring",
"locationName":"TimeFilter"
},
"TimeAfter":{
"StartedAfter":{
"shape":"ExecutionTimestamp",
"location":"querystring",
"locationName":"TimeAfter"
},
"TimeBefore":{
"StartedBefore":{
"shape":"ExecutionTimestamp",
"location":"querystring",
"locationName":"TimeBefore"
Expand All @@ -4249,7 +4245,7 @@
}
}
},
"ListDurableExecutionsResponse":{
"ListDurableExecutionsByFunctionResponse":{
"type":"structure",
"members":{
"DurableExecutions":{"shape":"DurableExecutions"},
Expand Down Expand Up @@ -4811,6 +4807,10 @@
"Error":{"shape":"EventError"}
}
},
"ExecutionStatusList":{
"type":"list",
"member":{"shape":"ExecutionStatus"}
},
"ExecutionStoppedDetails":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -6319,9 +6319,9 @@
"FunctionArn":{"shape":"FunctionArn"},
"InputPayload":{"shape":"InputPayload"},
"Status":{"shape":"ExecutionStatus"},
"StartDate":{"shape":"ExecutionTimestamp"},
"StopDate":{"shape":"ExecutionTimestamp"},
"ResultPayload":{"shape":"ResultPayload"},
"StartTimestamp":{"shape":"ExecutionTimestamp"},
"EndTimestamp":{"shape":"ExecutionTimestamp"},
"Result":{"shape":"ResultPayload"},
"ErrorPayload":{"shape":"ErrorPayload"}
}
},
Expand Down Expand Up @@ -6451,12 +6451,6 @@
"Error":{"shape":"ErrorObject"}
}
},
"WaitCancelledDetails":{
"type":"structure",
"members":{
"Error":{"shape":"EventError"}
}
},
"WaitDetails":{
"type":"structure",
"members":{
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,12 +128,12 @@ jobs:
LAMBDA_ENDPOINT: ${{ secrets.LAMBDA_ENDPOINT }}
run: |
echo "Listing durable executions for function: $FUNCTION_NAME"
aws lambda list-durable-executions \
aws lambda list-durable-executions-by-function \
--function-name "$FUNCTION_NAME" \
--statuses SUCCEEDED \
--region "${{ env.AWS_REGION }}" \
--endpoint-url "$LAMBDA_ENDPOINT" \
--cli-binary-format raw-in-base64-out \
--status-filter SUCCEEDED \
> /tmp/executions.json
echo "Durable Executions:"
cat /tmp/executions.json
Expand Down