getWorkflowExecution
inline suspend fun ImagebuilderClient.getWorkflowExecution(crossinline block: GetWorkflowExecutionRequest.Builder.() -> Unit): GetWorkflowExecutionResponse
Retrieves runtime information for a specific runtime instance of the workflow.
Samples
// The following example retrieves runtime status and step counts for the build workflow that ran for
// an image build version, using the workflow execution ID returned by ListWorkflowExecutions.
val resp = imagebuilderClient.getWorkflowExecution {
workflowExecutionId = "wf-165b1cb6-3a62-4618-a021-94ddcbe32908"
}Content copied to clipboard