[][src]Struct rusoto_sagemaker::DescribeCompilationJobResponse

pub struct DescribeCompilationJobResponse {
    pub compilation_end_time: Option<f64>,
    pub compilation_job_arn: String,
    pub compilation_job_name: String,
    pub compilation_job_status: String,
    pub compilation_start_time: Option<f64>,
    pub creation_time: f64,
    pub failure_reason: String,
    pub input_config: InputConfig,
    pub last_modified_time: f64,
    pub model_artifacts: ModelArtifacts,
    pub model_digests: Option<ModelDigests>,
    pub output_config: OutputConfig,
    pub role_arn: String,
    pub stopping_condition: StoppingCondition,
}

Fields

compilation_end_time: Option<f64>

The time when the model compilation job on a compilation job instance ended. For a successful or stopped job, this is when the job's model artifacts have finished uploading. For a failed job, this is when Amazon SageMaker detected that the job failed.

compilation_job_arn: String

The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker assumes to perform the model compilation job.

compilation_job_name: String

The name of the model compilation job.

compilation_job_status: String

The status of the model compilation job.

compilation_start_time: Option<f64>

The time when the model compilation job started the CompilationJob instances.

You are billed for the time between this timestamp and the timestamp in the DescribeCompilationJobResponse$CompilationEndTime field. In Amazon CloudWatch Logs, the start time might be later than this time. That's because it takes time to download the compilation job, which depends on the size of the compilation job container.

creation_time: f64

The time that the model compilation job was created.

failure_reason: String

If a model compilation job failed, the reason it failed.

input_config: InputConfig

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

last_modified_time: f64

The time that the status of the model compilation job was last modified.

model_artifacts: ModelArtifacts

Information about the location in Amazon S3 that has been configured for storing the model artifacts used in the compilation job.

model_digests: Option<ModelDigests>

Provides a BLAKE2 hash value that identifies the compiled model artifacts in Amazon S3.

output_config: OutputConfig

Information about the output location for the compiled model and the target device that the model runs on.

role_arn: String

The Amazon Resource Name (ARN) of the model compilation job.

stopping_condition: StoppingCondition

Specifies a limit to how long a model compilation job can run. When the job reaches the time limit, Amazon SageMaker ends the compilation job. Use this API to cap model training costs.

Trait Implementations

impl Clone for DescribeCompilationJobResponse[src]

impl Debug for DescribeCompilationJobResponse[src]

impl Default for DescribeCompilationJobResponse[src]

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

impl PartialEq<DescribeCompilationJobResponse> for DescribeCompilationJobResponse[src]

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