Class: Aws::EC2::Types::DeleteFleetsRequest

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

{
  dry_run: false,
  fleet_ids: ["FleetIdentifier"], # required
  terminate_instances: false, # required
}

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)


5686
5687
5688
5689
5690
5691
# File 'lib/aws-sdk-ec2/types.rb', line 5686

class DeleteFleetsRequest < Struct.new(
  :dry_run,
  :fleet_ids,
  :terminate_instances)
  include Aws::Structure
end

#fleet_idsArray<String>

The IDs of the EC2 Fleets.

Returns:

  • (Array<String>)


5686
5687
5688
5689
5690
5691
# File 'lib/aws-sdk-ec2/types.rb', line 5686

class DeleteFleetsRequest < Struct.new(
  :dry_run,
  :fleet_ids,
  :terminate_instances)
  include Aws::Structure
end

#terminate_instancesBoolean

Indicates whether to terminate instances for an EC2 Fleet if it is deleted successfully.

Returns:

  • (Boolean)


5686
5687
5688
5689
5690
5691
# File 'lib/aws-sdk-ec2/types.rb', line 5686

class DeleteFleetsRequest < Struct.new(
  :dry_run,
  :fleet_ids,
  :terminate_instances)
  include Aws::Structure
end