Module Values_0.CommandExecutionSummarySource

Summary information about a particular command execution.

Sourcetype nonrec t = {
  1. commandArn : CommandArn.t option;
    (*

    The Amazon Resource Name (ARN) of the command execution.

    *)
  2. executionId : CommandExecutionId.t option;
    (*

    The unique identifier of the command execution.

    *)
  3. targetArn : TargetArn.t option;
    (*

    The Amazon Resource Name (ARN) of the target device for which the command is being executed.

    *)
  4. status : CommandExecutionStatus.t option;
    (*

    The status of the command executions.

    *)
  5. createdAt : DateType.t option;
    (*

    The date and time at which the command execution was created for the target device.

    *)
  6. startedAt : DateType.t option;
    (*

    The date and time at which the command started executing on the target device.

    *)
  7. completedAt : DateType.t option;
    (*

    The date and time at which the command completed executing on the target device.

    *)
}
Sourceval make : ?commandArn:??? -> ?executionId:??? -> ?targetArn:??? -> ?status:??? -> ?createdAt:??? -> ?startedAt:??? -> ?completedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of CommandArn.t | `Timestamp of DateType.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