{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codepipeline/refs/heads/main/json-structure/amazon-codepipeline-action-execution-structure.json", "name": "ActionExecution", "description": "Represents information about the run of an action.", "type": "object", "properties": { "actionExecutionId": { "allOf": [ { "$ref": "#/components/schemas/ActionExecutionId" }, { "description": "
ID of the workflow action execution in the current stage. Use the GetPipelineState action to retrieve the current action execution details of the current stage.
For older executions, this field might be empty. The action execution ID is available for executions run on or after March 2020.
GetPipelineState command. It is used to validate that the approval request corresponding to this token is still valid."
}
]
},
"lastUpdatedBy": {
"allOf": [
{
"$ref": "#/components/schemas/LastUpdatedBy"
},
{
"description": "The ARN of the user who last changed the pipeline."
}
]
},
"externalExecutionId": {
"allOf": [
{
"$ref": "#/components/schemas/ExecutionId"
},
{
"description": "The external ID of the run of the action."
}
]
},
"externalExecutionUrl": {
"allOf": [
{
"$ref": "#/components/schemas/Url"
},
{
"description": "The URL of a resource external to Amazon Web Services that is used when running the action (for example, an external repository URL)."
}
]
},
"percentComplete": {
"allOf": [
{
"$ref": "#/components/schemas/Percentage"
},
{
"description": "A percentage of completeness of the action as it runs."
}
]
},
"errorDetails": {
"allOf": [
{
"$ref": "#/components/schemas/ErrorDetails"
},
{
"description": "The details of an error returned by a URL external to Amazon Web Services."
}
]
}
}
}