Module Values.DeleteDaemonResponseSource

Deletes the specified daemon. The daemon must be in an ACTIVE state to be deleted. Deleting a daemon stops all running daemon tasks on the associated container instances. Amazon ECS drains existing container instances and provisions new instances without the deleted daemon. Amazon ECS automatically launches replacement tasks for your Amazon ECS services. ECS Managed Daemons is only supported for Amazon ECS Managed Instances Capacity Providers.

Sourcetype nonrec t = {
  1. daemonArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the daemon.

    *)
  2. status : DaemonStatus.t option;
    (*

    The status of the daemon. After you call DeleteDaemon, the status changes to DELETE_IN_PROGRESS.

    *)
  3. createdAt : Timestamp.t option;
    (*

    The Unix timestamp for the time when the daemon was created.

    *)
  4. updatedAt : Timestamp.t option;
    (*

    The Unix timestamp for the time when the daemon was last updated.

    *)
  5. deploymentArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the daemon deployment that was triggered by the delete operation. This deployment drains existing daemon tasks from the container instances.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `ClientException of ClientException.t
  3. | `ClusterNotFoundException of ClusterNotFoundException.t
  4. | `DaemonNotActiveException of DaemonNotActiveException.t
  5. | `DaemonNotFoundException of DaemonNotFoundException.t
  6. | `InvalidParameterException of InvalidParameterException.t
  7. | `ServerException of ServerException.t
  8. | `UnsupportedFeatureException of UnsupportedFeatureException.t
  9. | `Unknown_operation_error of string * string option
]
Sourceval make : ?daemonArn:??? -> ?status:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?deploymentArn:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `ClientException of ClientException.t | `ClusterNotFoundException of ClusterNotFoundException.t | `DaemonNotActiveException of DaemonNotActiveException.t | `DaemonNotFoundException of DaemonNotFoundException.t | `InvalidParameterException of InvalidParameterException.t | `ServerException of ServerException.t | `Unknown_operation_error of string * string option | `UnsupportedFeatureException of UnsupportedFeatureException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `ClientException of ClientException.t | `ClusterNotFoundException of ClusterNotFoundException.t | `DaemonNotActiveException of DaemonNotActiveException.t | `DaemonNotFoundException of DaemonNotFoundException.t | `InvalidParameterException of InvalidParameterException.t | `ServerException of ServerException.t | `Unknown_operation_error of string * string option | `UnsupportedFeatureException of UnsupportedFeatureException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `Timestamp of Timestamp.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t