Show / Hide Table of Contents

Class CfnTransformJobPropsMixin.TransformResourcesProperty

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

Inheritance
object
CfnTransformJobPropsMixin.TransformResourcesProperty
Implements
CfnTransformJobPropsMixin.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.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

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.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

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.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

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

CfnTransformJobPropsMixin.ITransformResourcesProperty
Back to top Generated by DocFX