Module Values.UpdateAgentStatusRequestSource

For use by AWS Ground Station Agent and shouldn't be called directly. Update the status of the agent.

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

    UUID of agent to update.

    *)
  2. taskId : Uuid.t;
    (*

    GUID of agent task.

    *)
  3. aggregateStatus : AggregateStatus.t;
    (*

    Aggregate status for agent.

    *)
  4. componentStatuses : ComponentStatusList.t;
    (*

    List of component statuses for agent.

    *)
}
Sourceval context_ : string
Sourceval make : agentId:Uuid.t -> taskId:Uuid.t -> aggregateStatus:AggregateStatus.t -> componentStatuses:ComponentStatusList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `Long of Long.t | `String of ComponentTypeString.t ]) list ] list | `String of Uuid.t | `Structure of (string * [> `Enum of string | `Map of ([> `String of String_.t ] * [> `Boolean of Boolean.t ]) list ]) list ]) 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