Class: Aws::GameLiftStreams::Types::ListStreamGroupsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLiftStreams::Types::ListStreamGroupsInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-gameliftstreams/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The number of results to return.
-
#next_token ⇒ String
A token that marks the start of the next set of results.
Instance Attribute Details
#max_results ⇒ Integer
The number of results to return. Use this parameter with ‘NextToken` to return results in sequential pages. Default value is `25`.
1994 1995 1996 1997 1998 1999 |
# File 'lib/aws-sdk-gameliftstreams/types.rb', line 1994 class ListStreamGroupsInput < Struct.new( :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A token that marks the start of the next set of results. Use this token when you retrieve results as sequential pages. To get the first page of results, omit a token value. To get the remaining pages, provide the token returned with the previous result set.
1994 1995 1996 1997 1998 1999 |
# File 'lib/aws-sdk-gameliftstreams/types.rb', line 1994 class ListStreamGroupsInput < Struct.new( :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |