Show / Hide Table of Contents

Class CfnTransformJob.TransformResourcesProperty

Describes the resources, including ML instance types and ML instance count, to use for the transform job.

Inheritance
object
CfnTransformJob.TransformResourcesProperty
Implements
CfnTransformJob.ITransformResourcesProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-transformjob-transformresources.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-transformjob-transformresources.html

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

double

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-transformjob-transformresources.html#cfn-sagemaker-transformjob-transformresources-instancecount

InstanceType

The ML compute instance type for the transform job.

public string InstanceType { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-transformjob-transformresources.html#cfn-sagemaker-transformjob-transformresources-instancetype

VolumeKmsKeyId

The AWS KMS key that Amazon SageMaker uses to encrypt model data on the storage volume.

public string? VolumeKmsKeyId { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-transformjob-transformresources.html#cfn-sagemaker-transformjob-transformresources-volumekmskeyid

Implements

CfnTransformJob.ITransformResourcesProperty
Back to top Generated by DocFX