Class: Aws::Glue::Types::CursorConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::CursorConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Cursor-based pagination configuration that defines how to handle pagination using cursor tokens or next page identifiers.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#limit_parameter ⇒ Types::ExtractedParameter
The parameter name used to specify the maximum number of results to return per page.
-
#next_page ⇒ Types::ExtractedParameter
The parameter name or JSON path that contains the cursor or token for retrieving the next page of results.
Instance Attribute Details
#limit_parameter ⇒ Types::ExtractedParameter
The parameter name used to specify the maximum number of results to return per page.
7888 7889 7890 7891 7892 7893 |
# File 'lib/aws-sdk-glue/types.rb', line 7888 class CursorConfiguration < Struct.new( :next_page, :limit_parameter) SENSITIVE = [] include Aws::Structure end |
#next_page ⇒ Types::ExtractedParameter
The parameter name or JSON path that contains the cursor or token for retrieving the next page of results.
7888 7889 7890 7891 7892 7893 |
# File 'lib/aws-sdk-glue/types.rb', line 7888 class CursorConfiguration < Struct.new( :next_page, :limit_parameter) SENSITIVE = [] include Aws::Structure end |