You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::SageMaker::Types::MonitoringAppSpecification

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing MonitoringAppSpecification as input to an Aws::Client method, you can use a vanilla Hash:

{
  image_uri: "ImageUri", # required
  container_entrypoint: ["ContainerEntrypointString"],
  container_arguments: ["ContainerArgument"],
  record_preprocessor_source_uri: "S3Uri",
  post_analytics_processor_source_uri: "S3Uri",
}

Container image configuration object for the monitoring job.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#container_argumentsArray<String>

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

Returns:

  • (Array<String>)

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

#container_entrypointArray<String>

Specifies the entrypoint for a container used to run the monitoring job.

Returns:

  • (Array<String>)

    Specifies the entrypoint for a container used to run the monitoring job.

#image_uriString

The container image to be run by the monitoring job.

Returns:

  • (String)

    The container image to be run by the monitoring job.

#post_analytics_processor_source_uriString

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

Returns:

  • (String)

    An Amazon S3 URI to a script that is called after analysis has been performed.

#record_preprocessor_source_uriString

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 flatted json so that the built-in container can use the converted data. Applicable only for the built-in (first party) containers.

Returns:

  • (String)

    An Amazon S3 URI to a script that is called per row prior to running analysis.