aws-cdk-lib.aws_sagemaker.CfnDataQualityJobDefinition.DataQualityJobInputProperty

interface DataQualityJobInputProperty

LanguageType name
.NETAmazon.CDK.AWS.Sagemaker.CfnDataQualityJobDefinition.DataQualityJobInputProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnDataQualityJobDefinition_DataQualityJobInputProperty
Javasoftware.amazon.awscdk.services.sagemaker.CfnDataQualityJobDefinition.DataQualityJobInputProperty
Pythonaws_cdk.aws_sagemaker.CfnDataQualityJobDefinition.DataQualityJobInputProperty
TypeScript aws-cdk-lib » 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 { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const dataQualityJobInputProperty: sagemaker.CfnDataQualityJobDefinition.DataQualityJobInputProperty = {
  batchTransformInput: {
    dataCapturedDestinationS3Uri: 'dataCapturedDestinationS3Uri',
    datasetFormat: {
      csv: {
        header: false,
      },
      json: {
        line: false,
      },
      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

NameTypeDescription
batchTransformInput?IResolvable | BatchTransformInputPropertyCfnDataQualityJobDefinition.DataQualityJobInputProperty.BatchTransformInput.
endpointInput?IResolvable | EndpointInputPropertyInput object for the endpoint.

batchTransformInput?

Type: IResolvable | BatchTransformInputProperty (optional)

CfnDataQualityJobDefinition.DataQualityJobInputProperty.BatchTransformInput.


endpointInput?

Type: IResolvable | EndpointInputProperty (optional)

Input object for the endpoint.