aws-cdk-lib.aws_sagemaker.CfnMonitoringSchedule.MonitoringInputProperty

interface MonitoringInputProperty

LanguageType name
.NETAmazon.CDK.AWS.Sagemaker.CfnMonitoringSchedule.MonitoringInputProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnMonitoringSchedule_MonitoringInputProperty
Javasoftware.amazon.awscdk.services.sagemaker.CfnMonitoringSchedule.MonitoringInputProperty
Pythonaws_cdk.aws_sagemaker.CfnMonitoringSchedule.MonitoringInputProperty
TypeScript aws-cdk-lib » aws_sagemaker » CfnMonitoringSchedule » MonitoringInputProperty

The inputs for a monitoring job.

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 monitoringInputProperty: sagemaker.CfnMonitoringSchedule.MonitoringInputProperty = {
  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 | BatchTransformInputPropertyCfnMonitoringSchedule.MonitoringInputProperty.BatchTransformInput.
endpointInput?IResolvable | EndpointInputPropertyThe endpoint for a monitoring job.

batchTransformInput?

Type: IResolvable | BatchTransformInputProperty (optional)

CfnMonitoringSchedule.MonitoringInputProperty.BatchTransformInput.


endpointInput?

Type: IResolvable | EndpointInputProperty (optional)

The endpoint for a monitoring job.