[−][src]Struct rusoto_sagemaker::CreateCompilationJobRequest
Fields
compilation_job_name: StringA name for the model compilation job. The name must be unique within the AWS Region and within your AWS account.
input_config: InputConfigProvides 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: OutputConfigProvides information about the output location for the compiled model and the target device the model runs on.
role_arn: StringThe 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:
-
Read input data from an S3 bucket
-
Write model artifacts to an S3 bucket
-
Write logs to Amazon CloudWatch Logs
-
Publish metrics to Amazon CloudWatch
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: StoppingConditionThe duration allowed for model compilation.
Trait Implementations
impl PartialEq<CreateCompilationJobRequest> for CreateCompilationJobRequest[src]
fn eq(&self, other: &CreateCompilationJobRequest) -> bool[src]
fn ne(&self, other: &CreateCompilationJobRequest) -> bool[src]
impl Default for CreateCompilationJobRequest[src]
impl Clone for CreateCompilationJobRequest[src]
fn clone(&self) -> 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]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>, [src]
T: From<U>,
type Error = !
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self