interface MonitoringResourcesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnModelExplainabilityJobDefinitionPropsMixin.MonitoringResourcesProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnModelExplainabilityJobDefinitionPropsMixin_MonitoringResourcesProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnModelExplainabilityJobDefinitionPropsMixin.MonitoringResourcesProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnModelExplainabilityJobDefinitionPropsMixin.MonitoringResourcesProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnModelExplainabilityJobDefinitionPropsMixin » 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/cfn-property-mixins';
const monitoringResourcesProperty: sagemaker.CfnModelExplainabilityJobDefinitionPropsMixin.MonitoringResourcesProperty = {
clusterConfig: {
instanceCount: 123,
instanceType: 'instanceType',
volumeKmsKeyId: 'volumeKmsKeyId',
volumeSizeInGb: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| cluster | IResolvable | Cluster | The configuration for the cluster resources used to run the processing job. |
clusterConfig?
Type:
IResolvable | Cluster
(optional)
The configuration for the cluster resources used to run the processing job.

.NET
Go
Java
Python
TypeScript