Class: Aws::GameLift::Types::ListFleetsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::ListFleetsInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-gamelift/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#build_id ⇒ String
A unique identifier for the build to request fleets for.
-
#limit ⇒ Integer
The maximum number of results to return.
-
#next_token ⇒ String
A token that indicates the start of the next sequential page of results.
-
#script_id ⇒ String
A unique identifier for the Realtime script to request fleets for.
Instance Attribute Details
#build_id ⇒ String
A unique identifier for the build to request fleets for. Use this parameter to return only fleets using a specified build. Use either the build ID or ARN value.
8024 8025 8026 8027 8028 8029 8030 8031 |
# File 'lib/aws-sdk-gamelift/types.rb', line 8024 class ListFleetsInput < Struct.new( :build_id, :script_id, :limit, :next_token) SENSITIVE = [] include Aws::Structure end |
#limit ⇒ Integer
The maximum number of results to return. Use this parameter with ‘NextToken` to get results as a set of sequential pages.
8024 8025 8026 8027 8028 8029 8030 8031 |
# File 'lib/aws-sdk-gamelift/types.rb', line 8024 class ListFleetsInput < Struct.new( :build_id, :script_id, :limit, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A token that indicates the start of the next sequential page of results. Use the token that is returned with a previous call to this operation. To start at the beginning of the result set, do not specify a value.
8024 8025 8026 8027 8028 8029 8030 8031 |
# File 'lib/aws-sdk-gamelift/types.rb', line 8024 class ListFleetsInput < Struct.new( :build_id, :script_id, :limit, :next_token) SENSITIVE = [] include Aws::Structure end |
#script_id ⇒ String
A unique identifier for the Realtime script to request fleets for. Use this parameter to return only fleets using a specified script. Use either the script ID or ARN value.
8024 8025 8026 8027 8028 8029 8030 8031 |
# File 'lib/aws-sdk-gamelift/types.rb', line 8024 class ListFleetsInput < Struct.new( :build_id, :script_id, :limit, :next_token) SENSITIVE = [] include Aws::Structure end |