[][src]Struct rusoto_sagemaker::CreateProcessingJobRequest

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

List of input configurations for the processing job.

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.

tags: Option<Vec<Tag>>

(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

impl Clone for CreateProcessingJobRequest[src]

impl Debug for CreateProcessingJobRequest[src]

impl Default for CreateProcessingJobRequest[src]

impl PartialEq<CreateProcessingJobRequest> for CreateProcessingJobRequest[src]

impl Serialize for CreateProcessingJobRequest[src]

impl StructuralPartialEq for CreateProcessingJobRequest[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> 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.