interface MonitoringResourcesProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Sagemaker.CfnModelBiasJobDefinition.MonitoringResourcesProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnModelBiasJobDefinition_MonitoringResourcesProperty | 
|  Java | software.amazon.awscdk.services.sagemaker.CfnModelBiasJobDefinition.MonitoringResourcesProperty | 
|  Python | aws_cdk.aws_sagemaker.CfnModelBiasJobDefinition.MonitoringResourcesProperty | 
|  TypeScript | aws-cdk-lib»aws_sagemaker»CfnModelBiasJobDefinition»MonitoringResourcesProperty | 
Identifies the resources to deploy 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 monitoringResourcesProperty: sagemaker.CfnModelBiasJobDefinition.MonitoringResourcesProperty = {
  clusterConfig: {
    instanceCount: 123,
    instanceType: 'instanceType',
    volumeSizeInGb: 123,
    // the properties below are optional
    volumeKmsKeyId: 'volumeKmsKeyId',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| cluster | IResolvable | Cluster | The configuration for the cluster resources used to run the processing job. | 
clusterConfig
Type:
IResolvable | Cluster
The configuration for the cluster resources used to run the processing job.
