Module Values_0.CancelCommandRequestSource

Sourcetype nonrec t = {
  1. commandId : CommandId.t;
    (*

    The ID of the command you want to cancel.

    *)
  2. instanceIds : InstanceIdList.t option;
    (*

    (Optional) A list of managed node IDs on which you want to cancel the command. If not provided, the command is canceled on every node on which it was requested.

    *)
}
Sourceval context_ : string
Sourceval make : ?instanceIds:??? -> commandId:CommandId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of InstanceId.t ] list | `String of CommandId.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