Class: Aws::EC2::Types::DescribeSpotFleetRequestsRequest

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 DescribeSpotFleetRequestsRequest data as a hash:

{
  dry_run: false,
  max_results: 1,
  next_token: "String",
  spot_fleet_request_ids: ["String"],
}

Contains the parameters for DescribeSpotFleetRequests.

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)


14971
14972
14973
14974
14975
14976
14977
# File 'lib/aws-sdk-ec2/types.rb', line 14971

class DescribeSpotFleetRequestsRequest < Struct.new(
  :dry_run,
  :max_results,
  :next_token,
  :spot_fleet_request_ids)
  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)


14971
14972
14973
14974
14975
14976
14977
# File 'lib/aws-sdk-ec2/types.rb', line 14971

class DescribeSpotFleetRequestsRequest < Struct.new(
  :dry_run,
  :max_results,
  :next_token,
  :spot_fleet_request_ids)
  include Aws::Structure
end

#next_tokenString

The token for the next set of results.

Returns:

  • (String)


14971
14972
14973
14974
14975
14976
14977
# File 'lib/aws-sdk-ec2/types.rb', line 14971

class DescribeSpotFleetRequestsRequest < Struct.new(
  :dry_run,
  :max_results,
  :next_token,
  :spot_fleet_request_ids)
  include Aws::Structure
end

#spot_fleet_request_idsArray<String>

The IDs of the Spot Fleet requests.

Returns:

  • (Array<String>)


14971
14972
14973
14974
14975
14976
14977
# File 'lib/aws-sdk-ec2/types.rb', line 14971

class DescribeSpotFleetRequestsRequest < Struct.new(
  :dry_run,
  :max_results,
  :next_token,
  :spot_fleet_request_ids)
  include Aws::Structure
end