Module Values_0.DataQualityAppSpecificationSource

Information about the container that a data quality monitoring job runs.

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

    The container image that the data quality monitoring job runs.

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

    The entrypoint for a container used to run a monitoring job.

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

    The arguments to send to the container that the monitoring job runs.

    *)
  4. recordPreprocessorSourceUri : 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 : 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. environment : MonitoringEnvironmentMap.t option;
    (*

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

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