ProcessingClusterConfig

public struct ProcessingClusterConfig : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The number of ML compute instances to use in the processing job. For distributed processing 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 processing job.

    Declaration

    Swift

    public let instanceType: ProcessingInstanceType
  • The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to encrypt data on the storage volume attached to the ML compute instance(s) that run the processing job.

    Declaration

    Swift

    public let volumeKmsKeyId: String?
  • The size of the ML storage volume in gigabytes that you want to provision. You must specify sufficient ML storage for your scenario.

    Declaration

    Swift

    public let volumeSizeInGB: Int
  • Undocumented

    Declaration

    Swift

    public init(instanceCount: Int, instanceType: ProcessingInstanceType, volumeKmsKeyId: String? = nil, volumeSizeInGB: Int)
  • Declaration

    Swift

    public func validate(name: String) throws