[][src]Struct rusoto_sagemaker::CreateCompilationJobRequest

pub struct CreateCompilationJobRequest {
    pub compilation_job_name: String,
    pub input_config: InputConfig,
    pub output_config: OutputConfig,
    pub role_arn: String,
    pub stopping_condition: StoppingCondition,
}

Fields

compilation_job_name: String

A name for the model compilation job. The name must be unique within the AWS Region and within your AWS account.

input_config: InputConfig

Provides information about the location of input model artifacts, the name and shape of the expected data inputs, and the framework in which the model was trained.

output_config: OutputConfig

Provides information about the output location for the compiled model and the target device the model runs on.

role_arn: String

The Amazon Resource Name (ARN) of an IAM role that enables Amazon SageMaker to perform tasks on your behalf.

During model compilation, Amazon SageMaker needs your permission to:

You grant permissions for all of these tasks to an IAM role. To pass this role to Amazon SageMaker, the caller of this API must have the iam:PassRole permission. For more information, see Amazon SageMaker Roles.

stopping_condition: StoppingCondition

The duration allowed for model compilation.

Trait Implementations

impl PartialEq<CreateCompilationJobRequest> for CreateCompilationJobRequest[src]

impl Default for CreateCompilationJobRequest[src]

impl Clone for CreateCompilationJobRequest[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for CreateCompilationJobRequest[src]

impl Serialize for CreateCompilationJobRequest[src]

Auto Trait Implementations

impl Send for CreateCompilationJobRequest

impl Sync for CreateCompilationJobRequest

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self