interface DataQualityAppSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnDataQualityJobDefinitionPropsMixin.DataQualityAppSpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnDataQualityJobDefinitionPropsMixin_DataQualityAppSpecificationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnDataQualityJobDefinitionPropsMixin.DataQualityAppSpecificationProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnDataQualityJobDefinitionPropsMixin.DataQualityAppSpecificationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnDataQualityJobDefinitionPropsMixin » DataQualityAppSpecificationProperty |
Information about the container that a data quality monitoring job runs.
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/cfn-property-mixins';
const dataQualityAppSpecificationProperty: sagemaker.CfnDataQualityJobDefinitionPropsMixin.DataQualityAppSpecificationProperty = {
containerArguments: ['containerArguments'],
containerEntrypoint: ['containerEntrypoint'],
environment: {
environmentKey: 'environment',
},
imageUri: 'imageUri',
postAnalyticsProcessorSourceUri: 'postAnalyticsProcessorSourceUri',
recordPreprocessorSourceUri: 'recordPreprocessorSourceUri',
};
Properties
| Name | Type | Description |
|---|---|---|
| container | string[] | The arguments to send to the container that the monitoring job runs. |
| container | string[] | The entrypoint for a container used to run a monitoring job. |
| environment? | { [string]: string } | IResolvable | Sets the environment variables in the container that the monitoring job runs. |
| image | string | The container image that the data quality monitoring job runs. |
| 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)
The arguments to send to the container that the monitoring job runs.
containerEntrypoint?
Type:
string[]
(optional)
The entrypoint for a container used to run a monitoring job.
environment?
Type:
{ [string]: string } | IResolvable
(optional)
Sets the environment variables in the container that the monitoring job runs.
imageUri?
Type:
string
(optional)
The container image that the data quality 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.
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