Interface CfnModelPackage.TransformResourcesProperty

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

@Stability(Stable) public static interface CfnModelPackage.TransformResourcesProperty extends software.amazon.jsii.JsiiSerializable
Describes the resources, including ML instance types and ML instance count, to use for 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.services.sagemaker.*;
 TransformResourcesProperty transformResourcesProperty = TransformResourcesProperty.builder()
         .instanceCount(123)
         .instanceType("instanceType")
         // the properties below are optional
         .volumeKmsKeyId("volumeKmsKeyId")
         .build();
 

See Also: