Class: Aws::LakeFormation::Types::WorkUnitRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::LakeFormation::Types::WorkUnitRange
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lakeformation/types.rb
Overview
Defines the valid range of work unit IDs for querying the execution service.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#work_unit_id_max ⇒ Integer
Defines the maximum work unit ID in the range.
-
#work_unit_id_min ⇒ Integer
Defines the minimum work unit ID in the range.
-
#work_unit_token ⇒ String
A work token used to query the execution service.
Instance Attribute Details
#work_unit_id_max ⇒ Integer
Defines the maximum work unit ID in the range. The maximum value is inclusive.
4047 4048 4049 4050 4051 4052 4053 |
# File 'lib/aws-sdk-lakeformation/types.rb', line 4047 class WorkUnitRange < Struct.new( :work_unit_id_max, :work_unit_id_min, :work_unit_token) SENSITIVE = [] include Aws::Structure end |
#work_unit_id_min ⇒ Integer
Defines the minimum work unit ID in the range.
4047 4048 4049 4050 4051 4052 4053 |
# File 'lib/aws-sdk-lakeformation/types.rb', line 4047 class WorkUnitRange < Struct.new( :work_unit_id_max, :work_unit_id_min, :work_unit_token) SENSITIVE = [] include Aws::Structure end |
#work_unit_token ⇒ String
A work token used to query the execution service.
4047 4048 4049 4050 4051 4052 4053 |
# File 'lib/aws-sdk-lakeformation/types.rb', line 4047 class WorkUnitRange < Struct.new( :work_unit_id_max, :work_unit_id_min, :work_unit_token) SENSITIVE = [] include Aws::Structure end |