Interface CfnModelQualityJobDefinition.ClusterConfigProperty

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

@Stability(Stable) public static interface CfnModelQualityJobDefinition.ClusterConfigProperty extends software.amazon.jsii.JsiiSerializable
The configuration for the cluster of resources used to run the processing 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.*;
 ClusterConfigProperty clusterConfigProperty = ClusterConfigProperty.builder()
         .instanceCount(123)
         .instanceType("instanceType")
         .volumeSizeInGb(123)
         // the properties below are optional
         .volumeKmsKeyId("volumeKmsKeyId")
         .build();
 

See Also: