Module Values_1.ModelQualityAppSpecificationSource

Container image configuration object for the monitoring job.

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

    The address of the container image that the monitoring job runs.

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

    Specifies the entrypoint for a container that the monitoring job runs.

    *)
  3. containerArguments : Values_0.MonitoringContainerArguments.t option;
    (*

    An array of arguments for the container used to run the monitoring job.

    *)
  4. recordPreprocessorSourceUri : Values_0.S3Uri.t option;
    (*

    An Amazon S3 URI to a script that is called per row prior to running analysis. It can base64 decode the payload and convert it into a flattened JSON so that the built-in container can use the converted data. Applicable only for the built-in (first party) containers.

    *)
  5. postAnalyticsProcessorSourceUri : Values_0.S3Uri.t option;
    (*

    An Amazon S3 URI to a script that is called after analysis has been performed. Applicable only for the built-in (first party) containers.

    *)
  6. problemType : MonitoringProblemType.t option;
    (*

    The machine learning problem type of the model that the monitoring job monitors.

    *)
  7. environment : Values_0.MonitoringEnvironmentMap.t option;
    (*

    Sets the environment variables in the container that the monitoring job runs.

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