aws.imagebuilder.get_workflow_execution
Example SQL Queries
SELECT * FROMaws.imagebuilder.get_workflow_executionWHERE"workflow_execution_id" = 'VALUE';Description
Get the runtime information that was logged for a specific runtime instance of the workflow.
Table Definition
| Column Name | Column Data Type |
|---|---|
| workflow_execution_id Required Input Column The unique identifier that Image Builder assigned to keep track of runtime details when it ran the workflow. | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| end_time The timestamp when the specified runtime instance of the workflow finished. | VARCHAR |
| image_build_version_arn The Amazon Resource Name (ARN) of the image resource build version that the specified runtime instance of the workflow created. | VARCHAR |
| message The output message from the specified runtime instance of the workflow, if applicable. | VARCHAR |
| parallel_group Test workflows are defined within named runtime groups. The parallel group is a named group that contains one or more test workflows. | VARCHAR |
| request_id The request ID that uniquely identifies this request. | VARCHAR |
| start_time The timestamp when the specified runtime instance of the workflow started. | VARCHAR |
| status The current runtime status for the specified runtime instance of the workflow. | VARCHAR |
| total_step_count The total number of steps in the specified runtime instance of the workflow that ran. This number should equal the sum of the step counts for steps that succeeded, were skipped, and failed. | BIGINT |
| total_steps_failed A runtime count for the number of steps that failed in the specified runtime instance of the workflow. | BIGINT |
| total_steps_skipped A runtime count for the number of steps that were skipped in the specified runtime instance of the workflow. | BIGINT |
| total_steps_succeeded A runtime count for the number of steps that ran successfully in the specified runtime instance of the workflow. | BIGINT |
| type The type of workflow that Image Builder ran for the specified runtime instance of the workflow. | VARCHAR |
| workflow_build_version_arn The Amazon Resource Name (ARN) of the build version for the Image Builder workflow resource that defines the specified runtime instance of the workflow. | VARCHAR |