pub struct ProcessingJob {Show 22 fields
pub app_specification: Option<AppSpecification>,
pub auto_ml_job_arn: Option<String>,
pub creation_time: Option<f64>,
pub environment: Option<HashMap<String, String>>,
pub exit_message: Option<String>,
pub experiment_config: Option<ExperimentConfig>,
pub failure_reason: Option<String>,
pub last_modified_time: Option<f64>,
pub monitoring_schedule_arn: Option<String>,
pub network_config: Option<NetworkConfig>,
pub processing_end_time: Option<f64>,
pub processing_inputs: Option<Vec<ProcessingInput>>,
pub processing_job_arn: Option<String>,
pub processing_job_name: Option<String>,
pub processing_job_status: Option<String>,
pub processing_output_config: Option<ProcessingOutputConfig>,
pub processing_resources: Option<ProcessingResources>,
pub processing_start_time: Option<f64>,
pub role_arn: Option<String>,
pub stopping_condition: Option<ProcessingStoppingCondition>,
pub tags: Option<Vec<Tag>>,
pub training_job_arn: Option<String>,
}
Expand description
An Amazon SageMaker processing job that is used to analyze data and evaluate models. For more information, see Process Data and Evaluate Models.
Fields§
§app_specification: Option<AppSpecification>
§auto_ml_job_arn: Option<String>
The Amazon Resource Name (ARN) of the AutoML job associated with this processing job.
creation_time: Option<f64>
The time the processing job was created.
environment: Option<HashMap<String, String>>
Sets the environment variables in the Docker container.
exit_message: Option<String>
A string, up to one KB in size, that contains metadata from the processing container when the processing job exits.
experiment_config: Option<ExperimentConfig>
§failure_reason: Option<String>
A string, up to one KB in size, that contains the reason a processing job failed, if it failed.
last_modified_time: Option<f64>
The time the processing job was last modified.
monitoring_schedule_arn: Option<String>
The ARN of a monitoring schedule for an endpoint associated with this processing job.
network_config: Option<NetworkConfig>
§processing_end_time: Option<f64>
The time that the processing job ended.
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_arn: Option<String>
The ARN of the processing job.
processing_job_name: Option<String>
The name of the processing job.
processing_job_status: Option<String>
The status of the processing job.
processing_output_config: Option<ProcessingOutputConfig>
§processing_resources: Option<ProcessingResources>
§processing_start_time: Option<f64>
The time that the processing job started.
role_arn: Option<String>
The ARN of the role used to create the processing job.
stopping_condition: Option<ProcessingStoppingCondition>
An array of key-value pairs. For more information, see Using Cost Allocation Tags in the AWS Billing and Cost Management User Guide.
training_job_arn: Option<String>
The ARN of the training job associated with this processing job.
Trait Implementations§
Source§impl Clone for ProcessingJob
impl Clone for ProcessingJob
Source§fn clone(&self) -> ProcessingJob
fn clone(&self) -> ProcessingJob
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more