Class CfnTransformJob.TransformResourcesProperty
Describes the resources, including ML instance types and ML instance count, to use for the transform job.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Sagemaker
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTransformJob.TransformResourcesProperty : CfnTransformJob.ITransformResourcesProperty
Syntax (vb)
Public Class CfnTransformJob.TransformResourcesProperty Implements CfnTransformJob.ITransformResourcesProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Sagemaker;
var transformResourcesProperty = new TransformResourcesProperty {
InstanceCount = 123,
InstanceType = "instanceType",
// the properties below are optional
VolumeKmsKeyId = "volumeKmsKeyId"
};
Synopsis
Constructors
| TransformResourcesProperty() | Describes the resources, including ML instance types and ML instance count, to use for the transform job. |
Properties
| InstanceCount | The number of ML compute instances to use in the transform job. |
| InstanceType | The ML compute instance type for the transform job. |
| VolumeKmsKeyId | The AWS KMS key that Amazon SageMaker uses to encrypt model data on the storage volume. |
Constructors
TransformResourcesProperty()
Describes the resources, including ML instance types and ML instance count, to use for the transform job.
public TransformResourcesProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Sagemaker;
var transformResourcesProperty = new TransformResourcesProperty {
InstanceCount = 123,
InstanceType = "instanceType",
// the properties below are optional
VolumeKmsKeyId = "volumeKmsKeyId"
};
Properties
InstanceCount
The number of ML compute instances to use in the transform job.
public double InstanceCount { get; set; }
Property Value
Remarks
InstanceType
The ML compute instance type for the transform job.
public string InstanceType { get; set; }
Property Value
Remarks
VolumeKmsKeyId
The AWS KMS key that Amazon SageMaker uses to encrypt model data on the storage volume.
public string? VolumeKmsKeyId { get; set; }