pub struct CreateProcessingJobRequest {
pub app_specification: AppSpecification,
pub environment: Option<HashMap<String, String>>,
pub experiment_config: Option<ExperimentConfig>,
pub network_config: Option<NetworkConfig>,
pub processing_inputs: Option<Vec<ProcessingInput>>,
pub processing_job_name: String,
pub processing_output_config: Option<ProcessingOutputConfig>,
pub processing_resources: ProcessingResources,
pub role_arn: String,
pub stopping_condition: Option<ProcessingStoppingCondition>,
pub tags: Option<Vec<Tag>>,
}
Fields§
§app_specification: AppSpecification
Configures the processing job to run a specified Docker container image.
environment: Option<HashMap<String, String>>
Sets the environment variables in the Docker container.
experiment_config: Option<ExperimentConfig>
§network_config: Option<NetworkConfig>
Networking options for a processing job.
processing_inputs: Option<Vec<ProcessingInput>>
For each input, data is downloaded from S3 into the processing container before the processing job begins running if "S3InputMode" is set to File
.
processing_job_name: String
The name of the processing job. The name must be unique within an AWS Region in the AWS account.
processing_output_config: Option<ProcessingOutputConfig>
Output configuration for the processing job.
processing_resources: ProcessingResources
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.
role_arn: String
The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker can assume to perform tasks on your behalf.
stopping_condition: Option<ProcessingStoppingCondition>
The time limit for how long the processing job is allowed to run.
(Optional) An array of key-value pairs. For more information, see Using Cost Allocation Tags in the AWS Billing and Cost Management User Guide.
Trait Implementations§
Source§impl Clone for CreateProcessingJobRequest
impl Clone for CreateProcessingJobRequest
Source§fn clone(&self) -> CreateProcessingJobRequest
fn clone(&self) -> CreateProcessingJobRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more