Interface CfnTransformJobPropsMixin.TransformResourcesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTransformJobPropsMixin.TransformResourcesProperty.Jsii$Proxy
- Enclosing class:
CfnTransformJobPropsMixin
@Stability(Stable)
public static interface CfnTransformJobPropsMixin.TransformResourcesProperty
extends software.amazon.jsii.JsiiSerializable
Describes the resources, including ML instance types and ML instance count, to use for the transform 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.cfnpropertymixins.services.sagemaker.*;
TransformResourcesProperty transformResourcesProperty = TransformResourcesProperty.builder()
.instanceCount(123)
.instanceType("instanceType")
.volumeKmsKeyId("volumeKmsKeyId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTransformJobPropsMixin.TransformResourcesPropertystatic final classAn implementation forCfnTransformJobPropsMixin.TransformResourcesProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInstanceCount
The number of ML compute instances to use in the transform job.- See Also:
-
getInstanceType
The ML compute instance type for the transform job.- See Also:
-
getVolumeKmsKeyId
The AWS KMS key that Amazon SageMaker uses to encrypt model data on the storage volume.- See Also:
-
builder
-