TransformResources
public struct TransformResources : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The number of ML compute instances to use in the transform job. For distributed transform jobs, specify a value greater than 1. The default value is 1.
Declaration
Swift
public let instanceCount: Int
-
The ML compute instance type for the transform job. If you are using built-in algorithms to transform moderately sized datasets, we recommend using ml.m4.xlarge or ml.m5.large instance types.
Declaration
Swift
public let instanceType: TransformInstanceType
-
The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to encrypt model data on the storage volume attached to the ML compute instance(s) that run the batch transform job. The VolumeKmsKeyId can be any of the following formats: Key ID: 1234abcd-12ab-34cd-56ef-1234567890ab Key ARN: arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab Alias name: alias/ExampleAlias Alias name ARN: arn:aws:kms:us-west-2:111122223333:alias/ExampleAlias
Declaration
Swift
public let volumeKmsKeyId: String?
-
Undocumented
Declaration
Swift
public init(instanceCount: Int, instanceType: TransformInstanceType, volumeKmsKeyId: String? = nil)
-
Declaration
Swift
public func validate(name: String) throws