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)


1806
1807
1808
1809
1810
1811
# File 'lib/aws-sdk-ec2/types.rb', line 1806

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


1806
1807
1808
1809
1810
1811
# File 'lib/aws-sdk-ec2/types.rb', line 1806

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)


1806
1807
1808
1809
1810
1811
# File 'lib/aws-sdk-ec2/types.rb', line 1806

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