work_unit_results
Creates, updates, deletes, gets or lists a work_unit_results resource.
Overview
| Name | work_unit_results |
| Type | Resource |
| Id | aws.lakeformation.work_unit_results |
Fields
The following fields are returned by SELECT queries:
- get_work_unit_results
| Name | Datatype | Description |
|---|---|---|
result_stream | string (byte) | Rows returned from the GetWorkUnitResults operation as a stream of Apache Arrow v1.0 messages. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_work_unit_results | select | region | Returns the work units resulting from the query. Work units can be executed in any order and in parallel. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_work_unit_results
Returns the work units resulting from the query. Work units can be executed in any order and in parallel.
SELECT
result_stream
FROM aws.lakeformation.work_unit_results
WHERE region = '{{ region }}' -- required
;