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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnProcessingJob.ProcessingResourcesProperty
static final class
An implementation forCfnProcessingJob.ProcessingResourcesProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The configuration for the resources in a cluster used to run the processing job.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getClusterConfig
The configuration for the resources in a cluster used to run the processing job.- See Also:
-
builder
-