interface TransformResourcesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnTransformJob.TransformResourcesProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnTransformJob_TransformResourcesProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnTransformJob.TransformResourcesProperty |
Python | aws_cdk.aws_sagemaker.CfnTransformJob.TransformResourcesProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnTransformJob » TransformResourcesProperty |
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 { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const transformResourcesProperty: sagemaker.CfnTransformJob.TransformResourcesProperty = {
instanceCount: 123,
instanceType: 'instanceType',
// the properties below are optional
volumeKmsKeyId: 'volumeKmsKeyId',
};
Properties
| Name | Type | Description |
|---|---|---|
| instance | number | The number of ML compute instances to use in the transform job. |
| instance | string | The ML compute instance type for the transform job. |
| volume | string | The AWS KMS key that Amazon SageMaker uses to encrypt model data on the storage volume. |
instanceCount
Type:
number
The number of ML compute instances to use in the transform job.
instanceType
Type:
string
The ML compute instance type for the transform job.
volumeKmsKeyId?
Type:
string
(optional)
The AWS KMS key that Amazon SageMaker uses to encrypt model data on the storage volume.

.NET
Go
Java
Python
TypeScript