Values_0.DataQualityAppSpecificationSourceInformation about the container that a data quality monitoring job runs.
type nonrec t = {imageUri : ImageUri.t;The container image that the data quality monitoring job runs.
*)containerEntrypoint : ContainerEntrypoint.t option;The entrypoint for a container used to run a monitoring job.
*)containerArguments : MonitoringContainerArguments.t option;The arguments to send to the container that the monitoring job runs.
*)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.
*)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.
*)environment : MonitoringEnvironmentMap.t option;Sets the environment variables in the container that the monitoring job runs.
*)}val make :
?containerEntrypoint:??? ->
?containerArguments:??? ->
?recordPreprocessorSourceUri:??? ->
?postAnalyticsProcessorSourceUri:??? ->
?environment:??? ->
imageUri:ImageUri.t ->
unit ->
tval 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 ]