Module Values.StartCommandExecutionInputSource

Starts a command execution.

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

    A sandboxId or sandboxArn.

    *)
  2. command : SensitiveNonEmptyString.t;
    (*

    The command that needs to be executed.

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

    The command type.

    *)
}
Sourceval context_ : string
Sourceval make : ?type_:??? -> sandboxId:NonEmptyString.t -> command:SensitiveNonEmptyString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of NonEmptyString.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