Class: Aws::GameSparks::Types::ListStagesResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameSparks::Types::ListStagesResult
- Defined in:
- gems/aws-sdk-gamesparks/lib/aws-sdk-gamesparks/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
The token that indicates the start of the next sequential page of results.
-
#stages ⇒ Array<Types::StageSummary>
A list of stage summaries.
Instance Attribute Details
#next_token ⇒ String
The token that indicates the start of the next sequential page of results.
Use this value when making the next call to this operation to continue where the last one finished.
1230 1231 1232 1233 1234 1235 |
# File 'gems/aws-sdk-gamesparks/lib/aws-sdk-gamesparks/types.rb', line 1230 class ListStagesResult < Struct.new( :next_token, :stages) SENSITIVE = [] include Aws::Structure end |
#stages ⇒ Array<Types::StageSummary>
A list of stage summaries. You can use the stage names in the
UpdateStage
and GetStage
actions.
1230 1231 1232 1233 1234 1235 |
# File 'gems/aws-sdk-gamesparks/lib/aws-sdk-gamesparks/types.rb', line 1230 class ListStagesResult < Struct.new( :next_token, :stages) SENSITIVE = [] include Aws::Structure end |