Class: Aws::GameLift::Types::DescribeFleetAttributesInput

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 DescribeFleetAttributesInput 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 attributes for. To request attributes for all fleets, leave this parameter empty.

Returns:

  • (Array<String>)


1538
1539
1540
1541
1542
1543
# File 'lib/aws-sdk-gamelift/types.rb', line 1538

class DescribeFleetAttributesInput < 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)


1538
1539
1540
1541
1542
1543
# File 'lib/aws-sdk-gamelift/types.rb', line 1538

class DescribeFleetAttributesInput < 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)


1538
1539
1540
1541
1542
1543
# File 'lib/aws-sdk-gamelift/types.rb', line 1538

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