Module Values_0.ContainerConfigSource

The configuration used to run the application image container.

Sourcetype nonrec t = {
  1. containerArguments : CustomImageContainerArguments.t option;
    (*

    The arguments for the container when you're running the application.

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

    The entrypoint used to run the application in the container.

    *)
  3. containerEnvironmentVariables : CustomImageContainerEnvironmentVariables.t option;
    (*

    The environment variables to set in the container

    *)
}
Sourceval make : ?containerArguments:??? -> ?containerEntrypoint:??? -> ?containerEnvironmentVariables:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of NonEmptyString64.t ] list | `Map of ([> `String of NonEmptyString256.t ] * [> `String of String256.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