aws-cdk-lib.aws_sagemaker.CfnMonitoringSchedule.MonitoringAppSpecificationProperty

interface MonitoringAppSpecificationProperty

LanguageType name
.NETAmazon.CDK.AWS.Sagemaker.CfnMonitoringSchedule.MonitoringAppSpecificationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnMonitoringSchedule_MonitoringAppSpecificationProperty
Javasoftware.amazon.awscdk.services.sagemaker.CfnMonitoringSchedule.MonitoringAppSpecificationProperty
Pythonaws_cdk.aws_sagemaker.CfnMonitoringSchedule.MonitoringAppSpecificationProperty
TypeScript aws-cdk-lib » aws_sagemaker » CfnMonitoringSchedule » MonitoringAppSpecificationProperty

Container image configuration object for the monitoring job.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const monitoringAppSpecificationProperty: sagemaker.CfnMonitoringSchedule.MonitoringAppSpecificationProperty = {
  imageUri: 'imageUri',

  // the properties below are optional
  containerArguments: ['containerArguments'],
  containerEntrypoint: ['containerEntrypoint'],
  postAnalyticsProcessorSourceUri: 'postAnalyticsProcessorSourceUri',
  recordPreprocessorSourceUri: 'recordPreprocessorSourceUri',
};

Properties

NameTypeDescription
imageUristringThe container image to be run by the monitoring job.
containerArguments?string[]An array of arguments for the container used to run the monitoring job.
containerEntrypoint?string[]Specifies the entrypoint for a container used to run the monitoring job.
postAnalyticsProcessorSourceUri?stringAn Amazon S3 URI to a script that is called after analysis has been performed.
recordPreprocessorSourceUri?stringAn Amazon S3 URI to a script that is called per row prior to running analysis.

imageUri

Type: string

The container image to be run by the monitoring job.


containerArguments?

Type: string[] (optional)

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


containerEntrypoint?

Type: string[] (optional)

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


postAnalyticsProcessorSourceUri?

Type: string (optional)

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

Applicable only for the built-in (first party) containers.


recordPreprocessorSourceUri?

Type: string (optional)

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.