Class: Aws::RedshiftServerless::Types::ListTracksRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::RedshiftServerless::Types::ListTracksRequest
- Defined in:
- gems/aws-sdk-redshiftserverless/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
ListTracksRequest
operation returns anextToken
, you can include the returnednextToken
in followingListTracksRequest
operations, 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.
2158 2159 2160 2161 2162 2163 |
# File 'gems/aws-sdk-redshiftserverless/lib/aws-sdk-redshiftserverless/types.rb', line 2158 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.
2158 2159 2160 2161 2162 2163 |
# File 'gems/aws-sdk-redshiftserverless/lib/aws-sdk-redshiftserverless/types.rb', line 2158 class ListTracksRequest < Struct.new( :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |