TransformJob
public struct TransformJob : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The Amazon Resource Name (ARN) of the AutoML job that created the transform job.
Declaration
Swift
public let autoMLJobArn: String?
-
Specifies the number of records to include in a mini-batch for an HTTP inference request. A record is a single unit of input data that inference can be made on. For example, a single line in a CSV file is a record.
Declaration
Swift
public let batchStrategy: BatchStrategy?
-
A timestamp that shows when the transform Job was created.
Declaration
Swift
public let creationTime: TimeStamp?
-
Undocumented
Declaration
Swift
public let dataProcessing: DataProcessing?
-
The environment variables to set in the Docker container. We support up to 16 key and values entries in the map.
Declaration
Swift
public let environment: [String : String]?
-
Undocumented
Declaration
Swift
public let experimentConfig: ExperimentConfig?
-
If the transform job failed, the reason it failed.
Declaration
Swift
public let failureReason: String?
-
The Amazon Resource Name (ARN) of the labeling job that created the transform job.
Declaration
Swift
public let labelingJobArn: String?
-
The maximum number of parallel requests that can be sent to each instance in a transform job. If MaxConcurrentTransforms is set to 0 or left unset, SageMaker checks the optional execution-parameters to determine the settings for your chosen algorithm. If the execution-parameters endpoint is not enabled, the default value is 1. For built-in algorithms, you don’t need to set a value for MaxConcurrentTransforms.
Declaration
Swift
public let maxConcurrentTransforms: Int?
-
The maximum allowed size of the payload, in MB. A payload is the data portion of a record (without metadata). The value in MaxPayloadInMB must be greater than, or equal to, the size of a single record. To estimate the size of a record in MB, divide the size of your dataset by the number of records. To ensure that the records fit within the maximum payload size, we recommend using a slightly larger value. The default value is 6 MB. For cases where the payload might be arbitrarily large and is transmitted using HTTP chunked encoding, set the value to 0. This feature works only in supported algorithms. Currently, SageMaker built-in algorithms do not support HTTP chunked encoding.
Declaration
Swift
public let maxPayloadInMB: Int?
-
Undocumented
Declaration
Swift
public let modelClientConfig: ModelClientConfig?
-
The name of the model associated with the transform job.
Declaration
Swift
public let modelName: String?
-
A list of tags associated with the transform job.
Declaration
Swift
public let tags: [Tag]?
-
Indicates when the transform job has been completed, or has stopped or failed. You are billed for the time interval between this time and the value of TransformStartTime.
Declaration
Swift
public let transformEndTime: TimeStamp?
-
Undocumented
Declaration
Swift
public let transformInput: TransformInput?
-
The Amazon Resource Name (ARN) of the transform job.
Declaration
Swift
public let transformJobArn: String?
-
The name of the transform job.
Declaration
Swift
public let transformJobName: String?
-
The status of the transform job. Transform job statuses are: InProgress - The job is in progress. Completed - The job has completed. Failed - The transform job has failed. To see the reason for the failure, see the FailureReason field in the response to a DescribeTransformJob call. Stopping - The transform job is stopping. Stopped - The transform job has stopped.
Declaration
Swift
public let transformJobStatus: TransformJobStatus?
-
Undocumented
Declaration
Swift
public let transformOutput: TransformOutput?
-
Undocumented
Declaration
Swift
public let transformResources: TransformResources?
-
Indicates when the transform job starts on ML instances. You are billed for the time interval between this time and the value of TransformEndTime.
Declaration
Swift
public let transformStartTime: TimeStamp?
-
init(autoMLJobArn:batchStrategy:creationTime:dataProcessing:environment:experimentConfig:failureReason:labelingJobArn:maxConcurrentTransforms:maxPayloadInMB:modelClientConfig:modelName:tags:transformEndTime:transformInput:transformJobArn:transformJobName:transformJobStatus:transformOutput:transformResources:transformStartTime:)
Undocumented
Declaration
Swift
public init(autoMLJobArn: String? = nil, batchStrategy: BatchStrategy? = nil, creationTime: TimeStamp? = nil, dataProcessing: DataProcessing? = nil, environment: [String : String]? = nil, experimentConfig: ExperimentConfig? = nil, failureReason: String? = nil, labelingJobArn: String? = nil, maxConcurrentTransforms: Int? = nil, maxPayloadInMB: Int? = nil, modelClientConfig: ModelClientConfig? = nil, modelName: String? = nil, tags: [Tag]? = nil, transformEndTime: TimeStamp? = nil, transformInput: TransformInput? = nil, transformJobArn: String? = nil, transformJobName: String? = nil, transformJobStatus: TransformJobStatus? = nil, transformOutput: TransformOutput? = nil, transformResources: TransformResources? = nil, transformStartTime: TimeStamp? = nil)