[][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 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.

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

The duration allowed for model compilation.

Trait Implementations

impl PartialEq<DescribeCompilationJobResponse> for DescribeCompilationJobResponse[src]

impl Default for DescribeCompilationJobResponse[src]

impl Clone for DescribeCompilationJobResponse[src]

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

Performs copy-assignment from source. Read more

impl Debug for DescribeCompilationJobResponse[src]

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

Auto Trait Implementations

Blanket Implementations

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> From for T[src]

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

type Error = Infallible

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

The type returned in the event of a conversion error.

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

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self