Module Values.ScriptDetailsSource

Describes the details of the script.

Sourcetype nonrec t = {
  1. scriptS3Location : S3Location.t;
    (*

    The S3 object location for the script.

    *)
  2. executablePath : String_.t;
    (*

    The run path for the script.

    *)
  3. executableParameters : String_.t option;
    (*

    The runtime parameters passed to the run path for the script.

    *)
  4. timeoutInSeconds : Integer.t;
    (*

    The run timeout, in seconds, for the script.

    *)
}
Sourceval context_ : string
Sourceval make : ?executableParameters:??? -> scriptS3Location:S3Location.t -> executablePath:String_.t -> timeoutInSeconds:Integer.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of String_.t | `Structure of (string * [> `String of S3Bucket.t ]) 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