Module Values.ContainerSource

A container encapsulates the runtime environment for an application.

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

    Containers and container images are Region-specific. This is the Region context for the container.

    *)
  2. imageUris : StringList.t option;
    (*

    A list of URIs for containers created in the context Region.

    *)
}
Sourceval make : ?region:??? -> ?imageUris:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of NonEmptyString.t ] list | `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