Module Values.CommandExecutionSource

Contains command execution information.

Sourcetype nonrec t = {
  1. id : NonEmptyString.t option;
    (*

    The ID of the command execution.

    *)
  2. sandboxId : NonEmptyString.t option;
    (*

    A sandboxId.

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

    When the command execution process was initially submitted, expressed in Unix time format.

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

    When the command execution process started, expressed in Unix time format.

    *)
  5. endTime : Timestamp.t option;
    (*

    When the command execution process ended, expressed in Unix time format.

    *)
  6. status : NonEmptyString.t option;
    (*

    The status of the command execution.

    *)
  7. command : SensitiveNonEmptyString.t option;
    (*

    The command that needs to be executed.

    *)
  8. type_ : CommandType.t option;
    (*

    The command type.

    *)
  9. exitCode : NonEmptyString.t option;
    (*

    The exit code to return upon completion.

    *)
  10. standardOutputContent : SensitiveNonEmptyString.t option;
    (*

    The text written by the command to stdout.

    *)
  11. standardErrContent : SensitiveNonEmptyString.t option;
    (*

    The text written by the command to stderr.

    *)
  12. logs : LogsLocation.t option;
  13. sandboxArn : NonEmptyString.t option;
    (*

    A sandboxArn.

    *)
}
Sourceval make : ?id:??? -> ?sandboxId:??? -> ?submitTime:??? -> ?startTime:??? -> ?endTime:??? -> ?status:??? -> ?command:??? -> ?type_:??? -> ?exitCode:??? -> ?standardOutputContent:??? -> ?standardErrContent:??? -> ?logs:??? -> ?sandboxArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of NonEmptyString.t | `Structure of (string * [> `String of String_.t | `Structure of (string * [> `Boolean of WrapperBoolean.t | `Enum of string | `String of String_.t ]) list ]) list | `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