Interface CfnModelBiasJobDefinition.MonitoringResourcesProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnModelBiasJobDefinition.MonitoringResourcesProperty.Jsii$Proxy
Enclosing class:
CfnModelBiasJobDefinition

@Stability(Stable) public static interface CfnModelBiasJobDefinition.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();