Class: Aws::LakeFormation::Types::GetWorkUnitResultsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LakeFormation::Types::GetWorkUnitResultsRequest
- Defined in:
- gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb
Overview
Note:
When making an API call, you may pass GetWorkUnitResultsRequest data as a hash:
{
query_id: "GetWorkUnitResultsRequestQueryIdString", # required
work_unit_id: 1, # required
work_unit_token: "SyntheticGetWorkUnitResultsRequestWorkUnitTokenString", # required
}
Constant Summary collapse
- SENSITIVE =
[:work_unit_token]
Instance Attribute Summary collapse
-
#query_id ⇒ String
The ID of the plan query operation for which to get results.
-
#work_unit_id ⇒ Integer
The work unit ID for which to get results.
-
#work_unit_token ⇒ String
A work token used to query the execution service.
Instance Attribute Details
#query_id ⇒ String
The ID of the plan query operation for which to get results.
2084 2085 2086 2087 2088 2089 2090 |
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 2084 class GetWorkUnitResultsRequest < Struct.new( :query_id, :work_unit_id, :work_unit_token) SENSITIVE = [:work_unit_token] include Aws::Structure end |
#work_unit_id ⇒ Integer
The work unit ID for which to get results. Value generated by
enumerating WorkUnitIdMin
to WorkUnitIdMax
(inclusive) from the
WorkUnitRange
in the output of GetWorkUnits
.
2084 2085 2086 2087 2088 2089 2090 |
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 2084 class GetWorkUnitResultsRequest < Struct.new( :query_id, :work_unit_id, :work_unit_token) SENSITIVE = [:work_unit_token] include Aws::Structure end |
#work_unit_token ⇒ String
A work token used to query the execution service. Token output from
GetWorkUnits
.
2084 2085 2086 2087 2088 2089 2090 |
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 2084 class GetWorkUnitResultsRequest < Struct.new( :query_id, :work_unit_id, :work_unit_token) SENSITIVE = [:work_unit_token] include Aws::Structure end |