[][src]Struct rusoto_sagemaker::ProcessingJob

pub struct ProcessingJob {
    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>,
}

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>>

List of input configurations for the processing job.

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>tags: Option<Vec<Tag>>

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

impl Clone for ProcessingJob[src]

impl Debug for ProcessingJob[src]

impl Default for ProcessingJob[src]

impl<'de> Deserialize<'de> for ProcessingJob[src]

impl PartialEq<ProcessingJob> for ProcessingJob[src]

impl StructuralPartialEq for ProcessingJob[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.