interface MonitoringInputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnMonitoringSchedulePropsMixin.MonitoringInputProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnMonitoringSchedulePropsMixin_MonitoringInputProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnMonitoringSchedulePropsMixin.MonitoringInputProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnMonitoringSchedulePropsMixin.MonitoringInputProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnMonitoringSchedulePropsMixin » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const monitoringInputProperty: sagemaker_mixins.CfnMonitoringSchedulePropsMixin.MonitoringInputProperty = {
batchTransformInput: {
dataCapturedDestinationS3Uri: 'dataCapturedDestinationS3Uri',
datasetFormat: {
csv: {
header: false,
},
json: {
line: false,
},
parquet: false,
},
excludeFeaturesAttribute: 'excludeFeaturesAttribute',
localPath: 'localPath',
s3DataDistributionType: 's3DataDistributionType',
s3InputMode: 's3InputMode',
},
endpointInput: {
endpointName: 'endpointName',
excludeFeaturesAttribute: 'excludeFeaturesAttribute',
localPath: 'localPath',
s3DataDistributionType: 's3DataDistributionType',
s3InputMode: 's3InputMode',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| batch | IResolvable | Batch | Input object for the batch transform job. |
| endpoint | IResolvable | Endpoint | The endpoint for a monitoring job. |
batchTransformInput?
Type:
IResolvable | Batch
(optional)
Input object for the batch transform job.
endpointInput?
Type:
IResolvable | Endpoint
(optional)
The endpoint for a monitoring job.

.NET
Go
Java
Python
TypeScript