Module Values_0.AutoMLContainerDefinitionSource

A list of container definitions that describe the different containers that make up an AutoML candidate. For more information, see ContainerDefinition.

Sourcetype nonrec t = {
  1. image : ContainerImage.t option;
    (*

    The Amazon Elastic Container Registry (Amazon ECR) path of the container. For more information, see ContainerDefinition.

    *)
  2. modelDataUrl : Url.t option;
    (*

    The location of the model artifacts. For more information, see ContainerDefinition.

    *)
  3. environment : EnvironmentMap.t option;
    (*

    The environment variables to set in the container. For more information, see ContainerDefinition.

    *)
}
Sourceval make : ?image:??? -> ?modelDataUrl:??? -> ?environment:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of EnvironmentKey.t ] * [> `String of EnvironmentValue.t ]) list | `String of ContainerImage.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