Interface CfnProcessingJob.ProcessingResourcesProperty

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

@Stability(Stable) public static interface CfnProcessingJob.ProcessingResourcesProperty extends software.amazon.jsii.JsiiSerializable
Identifies the resources, ML compute instances, and ML storage volumes to deploy for a processing job.

In distributed training, you specify more than one instance.

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.*;
 ProcessingResourcesProperty processingResourcesProperty = ProcessingResourcesProperty.builder()
         .clusterConfig(ClusterConfigProperty.builder()
                 .instanceCount(123)
                 .instanceType("instanceType")
                 .volumeSizeInGb(123)
                 // the properties below are optional
                 .volumeKmsKeyId("volumeKmsKeyId")
                 .build())
         .build();
 

See Also: