Class: Aws::Glue::Types::PaginationConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::PaginationConfiguration
- Defined in:
- gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb
Overview
Configuration that defines how to handle paginated responses from REST APIs, supporting different pagination strategies used by various services.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cursor_configuration ⇒ Types::CursorConfiguration
Configuration for cursor-based pagination, where the API provides a cursor or token to retrieve the next page of results.
-
#offset_configuration ⇒ Types::OffsetConfiguration
Configuration for offset-based pagination, where the API uses numeric offsets and limits to control which results are returned.
Instance Attribute Details
#cursor_configuration ⇒ Types::CursorConfiguration
Configuration for cursor-based pagination, where the API provides a cursor or token to retrieve the next page of results.
22257 22258 22259 22260 22261 22262 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 22257 class PaginationConfiguration < Struct.new( :cursor_configuration, :offset_configuration) SENSITIVE = [] include Aws::Structure end |
#offset_configuration ⇒ Types::OffsetConfiguration
Configuration for offset-based pagination, where the API uses numeric offsets and limits to control which results are returned.
22257 22258 22259 22260 22261 22262 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 22257 class PaginationConfiguration < Struct.new( :cursor_configuration, :offset_configuration) SENSITIVE = [] include Aws::Structure end |