Interface CfnModelExplainabilityJobDefinition.MonitoringResourcesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnModelExplainabilityJobDefinition.MonitoringResourcesProperty.Jsii$Proxy
- Enclosing class:
CfnModelExplainabilityJobDefinition
@Stability(Stable)
public static interface CfnModelExplainabilityJobDefinition.MonitoringResourcesProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.sagemaker.*; MonitoringResourcesProperty monitoringResourcesProperty = MonitoringResourcesProperty.builder() .clusterConfig(ClusterConfigProperty.builder() .instanceCount(123) .instanceType("instanceType") .volumeSizeInGb(123) // the properties below are optional .volumeKmsKeyId("volumeKmsKeyId") .build()) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnModelExplainabilityJobDefinition.MonitoringResourcesProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The configuration for the cluster resources used to run the processing job.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getClusterConfig
The configuration for the cluster resources used to run the processing job. -
builder
@Stability(Stable) static CfnModelExplainabilityJobDefinition.MonitoringResourcesProperty.Builder builder()
-