Module Values.DeleteAgentSource

An object representing the agent or data collector to be deleted along with the optional configurations for error handling.

Sourcetype nonrec t = {
  1. agentId : AgentId.t;
    (*

    The ID of the agent or data collector to delete.

    *)
  2. force : Boolean.t option;
    (*

    Optional flag used to force delete an agent or data collector. It is needed to delete any agent in HEALTHY/UNHEALTHY/RUNNING status. Note that deleting an agent that is actively reporting health causes it to be re-registered with a different agent ID after data collector re-connects with Amazon Web Services.

    *)
}
Sourceval context_ : string
Sourceval make : ?force:??? -> agentId:AgentId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of AgentId.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