interface MonitoringResourcesProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.Sagemaker.CfnMonitoringSchedule.MonitoringResourcesProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnMonitoringSchedule_MonitoringResourcesProperty | 
  Java | software.amazon.awscdk.services.sagemaker.CfnMonitoringSchedule.MonitoringResourcesProperty | 
  Python | aws_cdk.aws_sagemaker.CfnMonitoringSchedule.MonitoringResourcesProperty | 
  TypeScript  | aws-cdk-lib » aws_sagemaker » CfnMonitoringSchedule » 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.CfnMonitoringSchedule.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.

 .NET
 Go
 Java
 Python
 TypeScript