Get Workflow Execution
imagebuilder_get_workflow_execution | R Documentation |
Get the runtime information that was logged for a specific runtime instance of the workflow¶
Description¶
Get the runtime information that was logged for a specific runtime instance of the workflow.
Usage¶
Arguments¶
workflowExecutionId
[required] Use the unique identifier for a runtime instance of the workflow to get runtime details.
Value¶
A list with the following syntax:
list(
requestId = "string",
workflowBuildVersionArn = "string",
workflowExecutionId = "string",
imageBuildVersionArn = "string",
type = "BUILD"|"TEST"|"DISTRIBUTION",
status = "PENDING"|"SKIPPED"|"RUNNING"|"COMPLETED"|"FAILED"|"ROLLBACK_IN_PROGRESS"|"ROLLBACK_COMPLETED"|"CANCELLED",
message = "string",
totalStepCount = 123,
totalStepsSucceeded = 123,
totalStepsFailed = 123,
totalStepsSkipped = 123,
startTime = "string",
endTime = "string",
parallelGroup = "string"
)