Comment on page
ActionExecution Object
Represents a single execution of an action.
ID of the action execution
Type:
string
ID of the action that was executed.
Type:
string
Name of the action.
Type:
string
Type ID of the action.
Type:
string
Version ID of the action that was executed.
Type:
string
ID of the credential.
Type:
string
Date, in ISO8601 format, when the action finished. Will not be present if the status is not "complete".
Type:
string
ID of the Managed Instance in which the action belongs. Will not be present if the action is not part of a Managed Instance.
Type:
string
Result of the action execution. Will not be present if the status is not "complete".
Date, in ISO8601 format, when the action started.
Type:
string
Status of the execution.
Type:
string
Valid Values:
running
complete
cancelling
cancelled
.
ID of the time zone for the action.
Type:
string
Trigger which started the action.
{
"actionExecutionId": "ae-00000001",
"actionId": "a-00000001",
"actionName": "Start My Instances",
"actionType": "amazon-start-ec2-instance",
"actionVersionId": "av-00000001",
"credentialId": "cred-00000001",
"endDate": "2016-06-01T12:03:00Z",
"managedInstanceId": "mi-00000001",
"result": {
"code": 0,
"text": "Execution succeeded"
},
"startDate": "2016-06-01T12:00:00Z",
"status": "complete",
"timeZoneId": "UTC",
"trigger": {
"triggerType": "schedule"
}
}
Last modified 5yr ago