Class: Aws::RedshiftServerless::Types::ListTracksRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::RedshiftServerless::Types::ListTracksRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-redshiftserverless/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of response records to return in each call.
-
#next_token ⇒ String
If your initial
ListTracksRequestoperation returns anextToken, you can include the returnednextTokenin followingListTracksRequestoperations, which returns results in the next page.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in a marker field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.
2235 2236 2237 2238 2239 2240 |
# File 'lib/aws-sdk-redshiftserverless/types.rb', line 2235 class ListTracksRequest < Struct.new( :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If your initial ListTracksRequest operation returns a nextToken, you can include the returned nextToken in following ListTracksRequest operations, which returns results in the next page.
2235 2236 2237 2238 2239 2240 |
# File 'lib/aws-sdk-redshiftserverless/types.rb', line 2235 class ListTracksRequest < Struct.new( :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |