Module Values_1.InferenceComponentContainerSpecificationSource

Defines a container that provides the runtime environment for a model that you deploy with an inference component.

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

    The Amazon Elastic Container Registry (Amazon ECR) path where the Docker image for the model is stored.

    *)
  2. artifactUrl : Values_0.Url.t option;
    (*

    The Amazon S3 path where the model artifacts, which result from model training, are stored. This path must point to a single gzip compressed tar archive (.tar.gz suffix).

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

    The environment variables to set in the Docker container. Each key and value in the Environment string-to-string map can have length of up to 1024. We support up to 16 entries in the map.

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