Class: Aws::GameLift::Types::DescribeFleetCapacityInput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-gamelift/types.rb

Overview

Note:

When making an API call, you may pass DescribeFleetCapacityInput data as a hash:

{
  fleet_ids: ["FleetId"],
  limit: 1,
  next_token: "NonZeroAndMaxString",
}

Represents the input for a request action.

Instance Attribute Summary collapse

Instance Attribute Details

#fleet_idsArray<String>

Unique identifier for a fleet(s) to retrieve capacity information for. To request capacity information for all fleets, leave this parameter empty.

Returns:

  • (Array<String>)


1600
1601
1602
1603
1604
1605
# File 'lib/aws-sdk-gamelift/types.rb', line 1600

class DescribeFleetCapacityInput < Struct.new(
  :fleet_ids,
  :limit,
  :next_token)
  include Aws::Structure
end

#limitInteger

Maximum number of results to return. Use this parameter with ‘NextToken` to get results as a set of sequential pages. This parameter is ignored when the request specifies one or a list of fleet IDs.

Returns:

  • (Integer)


1600
1601
1602
1603
1604
1605
# File 'lib/aws-sdk-gamelift/types.rb', line 1600

class DescribeFleetCapacityInput < Struct.new(
  :fleet_ids,
  :limit,
  :next_token)
  include Aws::Structure
end

#next_tokenString

Token that indicates the start of the next sequential page of results. Use the token that is returned with a previous call to this action. To start at the beginning of the result set, do not specify a value. This parameter is ignored when the request specifies one or a list of fleet IDs.

Returns:

  • (String)


1600
1601
1602
1603
1604
1605
# File 'lib/aws-sdk-gamelift/types.rb', line 1600

class DescribeFleetCapacityInput < Struct.new(
  :fleet_ids,
  :limit,
  :next_token)
  include Aws::Structure
end