Class CfnTransformJobPropsMixin.TransformResourcesProperty
Describes the resources, including ML instance types and ML instance count, to use for the transform job.
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.SageMaker
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnTransformJobPropsMixin.TransformResourcesProperty : CfnTransformJobPropsMixin.ITransformResourcesProperty
Syntax (vb)
Public Class CfnTransformJobPropsMixin.TransformResourcesProperty Implements CfnTransformJobPropsMixin.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.CfnPropertyMixins.AWS.SageMaker;
var transformResourcesProperty = new TransformResourcesProperty {
InstanceCount = 123,
InstanceType = "instanceType",
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.CfnPropertyMixins.AWS.SageMaker;
var transformResourcesProperty = new TransformResourcesProperty {
InstanceCount = 123,
InstanceType = "instanceType",
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; }