interface ModelQualityAppSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnModelQualityJobDefinitionPropsMixin.ModelQualityAppSpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnModelQualityJobDefinitionPropsMixin_ModelQualityAppSpecificationProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnModelQualityJobDefinitionPropsMixin.ModelQualityAppSpecificationProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnModelQualityJobDefinitionPropsMixin.ModelQualityAppSpecificationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnModelQualityJobDefinitionPropsMixin » ModelQualityAppSpecificationProperty |
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 modelQualityAppSpecificationProperty: sagemaker_mixins.CfnModelQualityJobDefinitionPropsMixin.ModelQualityAppSpecificationProperty = {
containerArguments: ['containerArguments'],
containerEntrypoint: ['containerEntrypoint'],
environment: {
environmentKey: 'environment',
},
imageUri: 'imageUri',
postAnalyticsProcessorSourceUri: 'postAnalyticsProcessorSourceUri',
problemType: 'problemType',
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 that the monitoring job runs. |
| environment? | { [string]: string } | IResolvable | Sets the environment variables in the container that the monitoring job runs. |
| image | string | The address of the container image that the monitoring job runs. |
| post | string | An Amazon S3 URI to a script that is called after analysis has been performed. |
| problem | string | The machine learning problem type of the model that the monitoring job monitors. |
| 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 that the monitoring job runs.
environment?
Type:
{ [string]: string } | IResolvable
(optional)
Sets the environment variables in the container that the monitoring job runs.
imageUri?
Type:
string
(optional)
The address of the container image that the monitoring job runs.
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.
problemType?
Type:
string
(optional)
The machine learning problem type of the model that the monitoring job monitors.
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