CreateProcessingJobRequest
public struct CreateProcessingJobRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
Configures the processing job to run a specified Docker container image.
Declaration
Swift
public let appSpecification: AppSpecification
-
Sets the environment variables in the Docker container.
Declaration
Swift
public let environment: [String : String]?
-
Undocumented
Declaration
Swift
public let experimentConfig: ExperimentConfig?
-
Networking options for a processing job.
Declaration
Swift
public let networkConfig: NetworkConfig?
-
For each input, data is downloaded from S3 into the processing container before the processing job begins running if “S3InputMode” is set to File.
Declaration
Swift
public let processingInputs: [ProcessingInput]?
-
The name of the processing job. The name must be unique within an AWS Region in the AWS account.
Declaration
Swift
public let processingJobName: String
-
Output configuration for the processing job.
Declaration
Swift
public let processingOutputConfig: ProcessingOutputConfig?
-
Identifies the resources, ML compute instances, and ML storage volumes to deploy for a processing job. In distributed training, you specify more than one instance.
Declaration
Swift
public let processingResources: ProcessingResources
-
The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker can assume to perform tasks on your behalf.
Declaration
Swift
public let roleArn: String
-
The time limit for how long the processing job is allowed to run.
Declaration
Swift
public let stoppingCondition: ProcessingStoppingCondition?
-
(Optional) An array of key-value pairs. For more information, see Using Cost Allocation Tags in the AWS Billing and Cost Management User Guide.
Declaration
Swift
public let tags: [Tag]?
-
init(appSpecification:environment:experimentConfig:networkConfig:processingInputs:processingJobName:processingOutputConfig:processingResources:roleArn:stoppingCondition:tags:)
Undocumented
Declaration
Swift
public init(appSpecification: AppSpecification, environment: [String : String]? = nil, experimentConfig: ExperimentConfig? = nil, networkConfig: NetworkConfig? = nil, processingInputs: [ProcessingInput]? = nil, processingJobName: String, processingOutputConfig: ProcessingOutputConfig? = nil, processingResources: ProcessingResources, roleArn: String, stoppingCondition: ProcessingStoppingCondition? = nil, tags: [Tag]? = nil)
-
Declaration
Swift
public func validate(name: String) throws