Class: Aws::GameLift::Types::DescribeFleetCapacityOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::DescribeFleetCapacityOutput
- Defined in:
- gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb
Overview
Represents the returned data in response to a request operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#fleet_capacity ⇒ Array<Types::FleetCapacity>
A collection of objects containing capacity information for each requested fleet ID.
-
#next_token ⇒ String
Token that indicates where to resume retrieving results on the next call to this operation.
Instance Attribute Details
#fleet_capacity ⇒ Array<Types::FleetCapacity>
A collection of objects containing capacity information for each requested fleet ID. Leave this parameter empty to retrieve capacity information for all fleets.
2499 2500 2501 2502 2503 2504 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 2499 class DescribeFleetCapacityOutput < Struct.new( :fleet_capacity, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
Token that indicates where to resume retrieving results on the next call to this operation. If no token is returned, these results represent the end of the list.
2499 2500 2501 2502 2503 2504 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 2499 class DescribeFleetCapacityOutput < Struct.new( :fleet_capacity, :next_token) SENSITIVE = [] include Aws::Structure end |