Class: Aws::EC2::Types::CancelSpotFleetRequestsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::CancelSpotFleetRequestsRequest
- Defined in:
- gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb
Overview
Contains the parameters for CancelSpotFleetRequests.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#dry_run ⇒ Boolean
Checks whether you have the required permissions for the action, without actually making the request, and provides an error response.
-
#spot_fleet_request_ids ⇒ Array<String>
The IDs of the Spot Fleet requests.
-
#terminate_instances ⇒ Boolean
Indicates whether to terminate the associated instances when the Spot Fleet request is canceled.
Instance Attribute Details
#dry_run ⇒ Boolean
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
.
4554 4555 4556 4557 4558 4559 4560 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 4554 class CancelSpotFleetRequestsRequest < Struct.new( :dry_run, :spot_fleet_request_ids, :terminate_instances) SENSITIVE = [] include Aws::Structure end |
#spot_fleet_request_ids ⇒ Array<String>
The IDs of the Spot Fleet requests.
Constraint: You can specify up to 100 IDs in a single request.
4554 4555 4556 4557 4558 4559 4560 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 4554 class CancelSpotFleetRequestsRequest < Struct.new( :dry_run, :spot_fleet_request_ids, :terminate_instances) SENSITIVE = [] include Aws::Structure end |
#terminate_instances ⇒ Boolean
Indicates whether to terminate the associated instances when the Spot Fleet request is canceled. The default is to terminate the instances.
To let the instances continue to run after the Spot Fleet request is
canceled, specify no-terminate-instances
.
4554 4555 4556 4557 4558 4559 4560 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 4554 class CancelSpotFleetRequestsRequest < Struct.new( :dry_run, :spot_fleet_request_ids, :terminate_instances) SENSITIVE = [] include Aws::Structure end |