Module Values_0.AppSpecificationSource

Configuration to run a processing job in a specified container image.

Sourcetype nonrec t = {
  1. imageUri : ImageUri.t;
    (*

    The container image to be run by the processing job.

    *)
  2. containerEntrypoint : ContainerEntrypoint.t option;
    (*

    The entrypoint for a container used to run a processing job.

    *)
  3. containerArguments : ContainerArguments.t option;
    (*

    The arguments for a container used to run a processing job.

    *)
}
Sourceval context_ : string
Sourceval make : ?containerEntrypoint:??? -> ?containerArguments:??? -> imageUri:ImageUri.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of ContainerEntrypointString.t ] list | `String of ImageUri.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