Class: Aws::EC2::Types::DescribeFleetInstancesRequest

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

Overview

Note:

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

{
  dry_run: false,
  max_results: 1,
  next_token: "String",
  fleet_id: "FleetIdentifier", # required
  filters: [
    {
      name: "String",
      values: ["String"],
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#dry_runBoolean

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is ‘DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.

Returns:

  • (Boolean)


9164
9165
9166
9167
9168
9169
9170
9171
# File 'lib/aws-sdk-ec2/types.rb', line 9164

class DescribeFleetInstancesRequest < Struct.new(
  :dry_run,
  :max_results,
  :next_token,
  :fleet_id,
  :filters)
  include Aws::Structure
end

#filtersArray<Types::Filter>

One or more filters.

  • ‘instance-type` - The instance type.

^

Returns:



9164
9165
9166
9167
9168
9169
9170
9171
# File 'lib/aws-sdk-ec2/types.rb', line 9164

class DescribeFleetInstancesRequest < Struct.new(
  :dry_run,
  :max_results,
  :next_token,
  :fleet_id,
  :filters)
  include Aws::Structure
end

#fleet_idString

The ID of the EC2 Fleet.

Returns:

  • (String)


9164
9165
9166
9167
9168
9169
9170
9171
# File 'lib/aws-sdk-ec2/types.rb', line 9164

class DescribeFleetInstancesRequest < Struct.new(
  :dry_run,
  :max_results,
  :next_token,
  :fleet_id,
  :filters)
  include Aws::Structure
end

#max_resultsInteger

The maximum number of results to return in a single call. Specify a value between 1 and 1000. The default value is 1000. To retrieve the remaining results, make another call with the returned ‘NextToken` value.

Returns:

  • (Integer)


9164
9165
9166
9167
9168
9169
9170
9171
# File 'lib/aws-sdk-ec2/types.rb', line 9164

class DescribeFleetInstancesRequest < Struct.new(
  :dry_run,
  :max_results,
  :next_token,
  :fleet_id,
  :filters)
  include Aws::Structure
end

#next_tokenString

The token for the next set of results.

Returns:

  • (String)


9164
9165
9166
9167
9168
9169
9170
9171
# File 'lib/aws-sdk-ec2/types.rb', line 9164

class DescribeFleetInstancesRequest < Struct.new(
  :dry_run,
  :max_results,
  :next_token,
  :fleet_id,
  :filters)
  include Aws::Structure
end