Interface CfnMonitoringSchedulePropsMixin.ClusterConfigProperty

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

@Stability(Stable) public static interface CfnMonitoringSchedulePropsMixin.ClusterConfigProperty extends software.amazon.jsii.JsiiSerializable
Configuration for the cluster used to run model monitoring jobs.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.sagemaker.*;
 ClusterConfigProperty clusterConfigProperty = ClusterConfigProperty.builder()
         .instanceCount(123)
         .instanceType("instanceType")
         .volumeKmsKeyId("volumeKmsKeyId")
         .volumeSizeInGb(123)
         .build();
 

See Also: