Get Workflow Step Execution
imagebuilder_get_workflow_step_execution | R Documentation |
Get the runtime information that was logged for a specific runtime instance of the workflow step¶
Description¶
Get the runtime information that was logged for a specific runtime instance of the workflow step.
Usage¶
Arguments¶
stepExecutionId
[required] Use the unique identifier for a specific runtime instance of the workflow step to get runtime details for that step.
Value¶
A list with the following syntax:
list(
requestId = "string",
stepExecutionId = "string",
workflowBuildVersionArn = "string",
workflowExecutionId = "string",
imageBuildVersionArn = "string",
name = "string",
description = "string",
action = "string",
status = "PENDING"|"SKIPPED"|"RUNNING"|"COMPLETED"|"FAILED"|"CANCELLED",
rollbackStatus = "RUNNING"|"COMPLETED"|"SKIPPED"|"FAILED",
message = "string",
inputs = "string",
outputs = "string",
startTime = "string",
endTime = "string",
onFailure = "string",
timeoutSeconds = 123
)