interface DataQualityJobInputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnDataQualityJobDefinition.DataQualityJobInputProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnDataQualityJobDefinition.DataQualityJobInputProperty |
Python | aws_cdk.aws_sagemaker.CfnDataQualityJobDefinition.DataQualityJobInputProperty |
TypeScript | @aws-cdk/aws-sagemaker » CfnDataQualityJobDefinition » DataQualityJobInputProperty |
The input for the data quality monitoring job.
Currently endpoints are supported for input.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as sagemaker from '@aws-cdk/aws-sagemaker';
declare const json: any;
const dataQualityJobInputProperty: sagemaker.CfnDataQualityJobDefinition.DataQualityJobInputProperty = {
batchTransformInput: {
dataCapturedDestinationS3Uri: 'dataCapturedDestinationS3Uri',
datasetFormat: {
csv: {
header: false,
},
json: json,
parquet: false,
},
localPath: 'localPath',
// the properties below are optional
s3DataDistributionType: 's3DataDistributionType',
s3InputMode: 's3InputMode',
},
endpointInput: {
endpointName: 'endpointName',
localPath: 'localPath',
// the properties below are optional
s3DataDistributionType: 's3DataDistributionType',
s3InputMode: 's3InputMode',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| batch | IResolvable | Batch | CfnDataQualityJobDefinition.DataQualityJobInputProperty.BatchTransformInput. |
| endpoint | IResolvable | Endpoint | Input object for the endpoint. |
batchTransformInput?
Type:
IResolvable | Batch
(optional)
CfnDataQualityJobDefinition.DataQualityJobInputProperty.BatchTransformInput.
endpointInput?
Type:
IResolvable | Endpoint
(optional)
Input object for the endpoint.

.NET
Java
Python
TypeScript