#[non_exhaustive]pub struct DescribeCompilationJobOutput { /* private fields */ }
Implementations§
source§impl DescribeCompilationJobOutput
impl DescribeCompilationJobOutput
sourcepub fn compilation_job_name(&self) -> Option<&str>
pub fn compilation_job_name(&self) -> Option<&str>
The name of the model compilation job.
sourcepub fn compilation_job_arn(&self) -> Option<&str>
pub fn compilation_job_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the model compilation job.
sourcepub fn compilation_job_status(&self) -> Option<&CompilationJobStatus>
pub fn compilation_job_status(&self) -> Option<&CompilationJobStatus>
The status of the model compilation job.
sourcepub fn compilation_start_time(&self) -> Option<&DateTime>
pub fn compilation_start_time(&self) -> Option<&DateTime>
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.
sourcepub fn compilation_end_time(&self) -> Option<&DateTime>
pub fn compilation_end_time(&self) -> Option<&DateTime>
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.
sourcepub fn stopping_condition(&self) -> Option<&StoppingCondition>
pub fn stopping_condition(&self) -> Option<&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.
sourcepub fn inference_image(&self) -> Option<&str>
pub fn inference_image(&self) -> Option<&str>
The inference image to use when compiling a model. Specify an image only if the target device is a cloud instance.
sourcepub fn model_package_version_arn(&self) -> Option<&str>
pub fn model_package_version_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the versioned model package that was provided to SageMaker Neo when you initiated a compilation job.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The time that the model compilation job was created.
sourcepub fn last_modified_time(&self) -> Option<&DateTime>
pub fn last_modified_time(&self) -> Option<&DateTime>
The time that the status of the model compilation job was last modified.
sourcepub fn failure_reason(&self) -> Option<&str>
pub fn failure_reason(&self) -> Option<&str>
If a model compilation job failed, the reason it failed.
sourcepub fn model_artifacts(&self) -> Option<&ModelArtifacts>
pub fn model_artifacts(&self) -> Option<&ModelArtifacts>
Information about the location in Amazon S3 that has been configured for storing the model artifacts used in the compilation job.
sourcepub fn model_digests(&self) -> Option<&ModelDigests>
pub fn model_digests(&self) -> Option<&ModelDigests>
Provides a BLAKE2 hash value that identifies the compiled model artifacts in Amazon S3.
sourcepub fn role_arn(&self) -> Option<&str>
pub fn role_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker assumes to perform the model compilation job.
sourcepub fn input_config(&self) -> Option<&InputConfig>
pub fn input_config(&self) -> Option<&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.
sourcepub fn output_config(&self) -> Option<&OutputConfig>
pub fn output_config(&self) -> Option<&OutputConfig>
Information about the output location for the compiled model and the target device that the model runs on.
sourcepub fn vpc_config(&self) -> Option<&NeoVpcConfig>
pub fn vpc_config(&self) -> Option<&NeoVpcConfig>
A VpcConfig
object that specifies the VPC that you want your compilation job to connect to. Control access to your models by configuring the VPC. For more information, see Protect Compilation Jobs by Using an Amazon Virtual Private Cloud.
source§impl DescribeCompilationJobOutput
impl DescribeCompilationJobOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeCompilationJobOutput
.
Trait Implementations§
source§impl Clone for DescribeCompilationJobOutput
impl Clone for DescribeCompilationJobOutput
source§fn clone(&self) -> DescribeCompilationJobOutput
fn clone(&self) -> DescribeCompilationJobOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DescribeCompilationJobOutput
impl Debug for DescribeCompilationJobOutput
source§impl PartialEq<DescribeCompilationJobOutput> for DescribeCompilationJobOutput
impl PartialEq<DescribeCompilationJobOutput> for DescribeCompilationJobOutput
source§fn eq(&self, other: &DescribeCompilationJobOutput) -> bool
fn eq(&self, other: &DescribeCompilationJobOutput) -> bool
self
and other
values to be equal, and is used
by ==
.