#[non_exhaustive]pub struct InferenceRecommendationsJob {Show 13 fields
pub job_name: Option<String>,
pub job_description: Option<String>,
pub job_type: Option<RecommendationJobType>,
pub job_arn: Option<String>,
pub status: Option<RecommendationJobStatus>,
pub creation_time: Option<DateTime>,
pub completion_time: Option<DateTime>,
pub role_arn: Option<String>,
pub last_modified_time: Option<DateTime>,
pub failure_reason: Option<String>,
pub model_name: Option<String>,
pub sample_payload_url: Option<String>,
pub model_package_version_arn: Option<String>,
}
Expand description
A structure that contains a list of recommendation jobs.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.job_name: Option<String>
The name of the job.
job_description: Option<String>
The job description.
job_type: Option<RecommendationJobType>
The recommendation job type.
job_arn: Option<String>
The Amazon Resource Name (ARN) of the recommendation job.
status: Option<RecommendationJobStatus>
The status of the job.
creation_time: Option<DateTime>
A timestamp that shows when the job was created.
completion_time: Option<DateTime>
A timestamp that shows when the job completed.
role_arn: Option<String>
The Amazon Resource Name (ARN) of an IAM role that enables Amazon SageMaker to perform tasks on your behalf.
last_modified_time: Option<DateTime>
A timestamp that shows when the job was last modified.
failure_reason: Option<String>
If the job fails, provides information why the job failed.
model_name: Option<String>
The name of the created model.
sample_payload_url: Option<String>
The Amazon Simple Storage Service (Amazon S3) path where the sample payload is stored. This path must point to a single gzip compressed tar archive (.tar.gz suffix).
model_package_version_arn: Option<String>
The Amazon Resource Name (ARN) of a versioned model package.
Implementations§
source§impl InferenceRecommendationsJob
impl InferenceRecommendationsJob
sourcepub fn job_description(&self) -> Option<&str>
pub fn job_description(&self) -> Option<&str>
The job description.
sourcepub fn job_type(&self) -> Option<&RecommendationJobType>
pub fn job_type(&self) -> Option<&RecommendationJobType>
The recommendation job type.
sourcepub fn job_arn(&self) -> Option<&str>
pub fn job_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the recommendation job.
sourcepub fn status(&self) -> Option<&RecommendationJobStatus>
pub fn status(&self) -> Option<&RecommendationJobStatus>
The status of the job.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
A timestamp that shows when the job was created.
sourcepub fn completion_time(&self) -> Option<&DateTime>
pub fn completion_time(&self) -> Option<&DateTime>
A timestamp that shows when the job completed.
sourcepub fn role_arn(&self) -> Option<&str>
pub fn role_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of an IAM role that enables Amazon SageMaker to perform tasks on your behalf.
sourcepub fn last_modified_time(&self) -> Option<&DateTime>
pub fn last_modified_time(&self) -> Option<&DateTime>
A timestamp that shows when the job was last modified.
sourcepub fn failure_reason(&self) -> Option<&str>
pub fn failure_reason(&self) -> Option<&str>
If the job fails, provides information why the job failed.
sourcepub fn model_name(&self) -> Option<&str>
pub fn model_name(&self) -> Option<&str>
The name of the created model.
sourcepub fn sample_payload_url(&self) -> Option<&str>
pub fn sample_payload_url(&self) -> Option<&str>
The Amazon Simple Storage Service (Amazon S3) path where the sample payload is stored. This path must point to a single gzip compressed tar archive (.tar.gz suffix).
sourcepub fn model_package_version_arn(&self) -> Option<&str>
pub fn model_package_version_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of a versioned model package.
source§impl InferenceRecommendationsJob
impl InferenceRecommendationsJob
sourcepub fn builder() -> InferenceRecommendationsJobBuilder
pub fn builder() -> InferenceRecommendationsJobBuilder
Creates a new builder-style object to manufacture InferenceRecommendationsJob
.
Trait Implementations§
source§impl Clone for InferenceRecommendationsJob
impl Clone for InferenceRecommendationsJob
source§fn clone(&self) -> InferenceRecommendationsJob
fn clone(&self) -> InferenceRecommendationsJob
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for InferenceRecommendationsJob
impl Debug for InferenceRecommendationsJob
source§impl PartialEq for InferenceRecommendationsJob
impl PartialEq for InferenceRecommendationsJob
source§fn eq(&self, other: &InferenceRecommendationsJob) -> bool
fn eq(&self, other: &InferenceRecommendationsJob) -> bool
self
and other
values to be equal, and is used
by ==
.