Class: Aws::EC2::Types::CancelSpotFleetRequestsRequest

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

{
  dry_run: false,
  spot_fleet_request_ids: ["String"], # required
  terminate_instances: false, # required
}

Contains the parameters for CancelSpotFleetRequests.

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)


1881
1882
1883
1884
1885
1886
# File 'lib/aws-sdk-ec2/types.rb', line 1881

class CancelSpotFleetRequestsRequest < Struct.new(
  :dry_run,
  :spot_fleet_request_ids,
  :terminate_instances)
  include Aws::Structure
end

#spot_fleet_request_idsArray<String>

The IDs of the Spot Fleet requests.

Returns:

  • (Array<String>)


1881
1882
1883
1884
1885
1886
# File 'lib/aws-sdk-ec2/types.rb', line 1881

class CancelSpotFleetRequestsRequest < Struct.new(
  :dry_run,
  :spot_fleet_request_ids,
  :terminate_instances)
  include Aws::Structure
end

#terminate_instancesBoolean

Indicates whether to terminate instances for a Spot Fleet request if it is canceled successfully.

Returns:

  • (Boolean)


1881
1882
1883
1884
1885
1886
# File 'lib/aws-sdk-ec2/types.rb', line 1881

class CancelSpotFleetRequestsRequest < Struct.new(
  :dry_run,
  :spot_fleet_request_ids,
  :terminate_instances)
  include Aws::Structure
end