interface MonitoringAppSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnMonitoringSchedulePropsMixin.MonitoringAppSpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnMonitoringSchedulePropsMixin_MonitoringAppSpecificationProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnMonitoringSchedulePropsMixin.MonitoringAppSpecificationProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnMonitoringSchedulePropsMixin.MonitoringAppSpecificationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnMonitoringSchedulePropsMixin » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const monitoringAppSpecificationProperty: sagemaker_mixins.CfnMonitoringSchedulePropsMixin.MonitoringAppSpecificationProperty = {
containerArguments: ['containerArguments'],
containerEntrypoint: ['containerEntrypoint'],
imageUri: 'imageUri',
postAnalyticsProcessorSourceUri: 'postAnalyticsProcessorSourceUri',
recordPreprocessorSourceUri: 'recordPreprocessorSourceUri',
};
Properties
| Name | Type | Description |
|---|---|---|
| container | string[] | An array of arguments for the container used to run the monitoring job. |
| container | string[] | Specifies the entrypoint for a container used to run the monitoring job. |
| image | string | The container image to be run by the monitoring job. |
| post | string | An Amazon S3 URI to a script that is called after analysis has been performed. |
| record | string | An Amazon S3 URI to a script that is called per row prior to running analysis. |
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.
imageUri?
Type:
string
(optional)
The container image to be run by 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 flattened JSON so that the built-in container can use the converted data. Applicable only for the built-in (first party) containers.

.NET
Go
Java
Python
TypeScript