Skip to main content

work_unit_results

Creates, updates, deletes, gets or lists a work_unit_results resource.

Overview

Namework_unit_results
TypeResource
Idaws.lakeformation.work_unit_results

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
result_streamstring (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:

NameAccessible byRequired ParamsOptional ParamsDescription
get_work_unit_resultsselectregionReturns 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;