Learn R Programming

paws.compute (version 0.1.12)

ec2_delete_fleets: Deletes the specified EC2 Fleet

Description

Deletes the specified EC2 Fleet.

After you delete an EC2 Fleet, it launches no new instances.

You must specify whether a deleted EC2 Fleet should also terminate its instances. If you choose to terminate the instances, the EC2 Fleet enters the deleted_terminating state. Otherwise, the EC2 Fleet enters the deleted_running state, and the instances continue to run until they are interrupted or you terminate them manually.

For instant fleets, EC2 Fleet must terminate the instances when the fleet is deleted. A deleted instant fleet with running instances is not supported.

Restrictions

  • You can delete up to 25 instant fleets in a single request. If you exceed this number, no instant fleets are deleted and an error is returned. There is no restriction on the number of fleets of type maintain or request that can be deleted in a single request.

  • Up to 1000 instances can be terminated in a single request to delete instant fleets.

For more information, see Deleting an EC2 Fleet in the Amazon Elastic Compute Cloud User Guide.

Usage

ec2_delete_fleets(DryRun, FleetIds, TerminateInstances)

Value

A list with the following syntax:

list(
  SuccessfulFleetDeletions = list(
    list(
      CurrentFleetState = "submitted"|"active"|"deleted"|"failed"|"deleted_running"|"deleted_terminating"|"modifying",
      PreviousFleetState = "submitted"|"active"|"deleted"|"failed"|"deleted_running"|"deleted_terminating"|"modifying",
      FleetId = "string"
    )
  ),
  UnsuccessfulFleetDeletions = list(
    list(
      Error = list(
        Code = "fleetIdDoesNotExist"|"fleetIdMalformed"|"fleetNotInDeletableState"|"unexpectedError",
        Message = "string"
      ),
      FleetId = "string"
    )
  )
)

Arguments

DryRun

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.

FleetIds

[required] The IDs of the EC2 Fleets.

TerminateInstances

[required] Indicates whether to terminate the instances when the EC2 Fleet is deleted. The default is to terminate the instances.

To let the instances continue to run after the EC2 Fleet is deleted, specify NoTerminateInstances. Supported only for fleets of type maintain and request.

For instant fleets, you cannot specify NoTerminateInstances. A deleted instant fleet with running instances is not supported.

Request syntax

svc$delete_fleets(
  DryRun = TRUE|FALSE,
  FleetIds = list(
    "string"
  ),
  TerminateInstances = TRUE|FALSE
)