Struct aws_sdk_personalize::model::BatchInferenceJob
source · #[non_exhaustive]pub struct BatchInferenceJob { /* private fields */ }
Expand description
Contains information on a batch inference job.
Implementations§
source§impl BatchInferenceJob
impl BatchInferenceJob
sourcepub fn batch_inference_job_arn(&self) -> Option<&str>
pub fn batch_inference_job_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the batch inference job.
sourcepub fn filter_arn(&self) -> Option<&str>
pub fn filter_arn(&self) -> Option<&str>
The ARN of the filter used on the batch inference job.
sourcepub fn failure_reason(&self) -> Option<&str>
pub fn failure_reason(&self) -> Option<&str>
If the batch inference job failed, the reason for the failure.
sourcepub fn solution_version_arn(&self) -> Option<&str>
pub fn solution_version_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the solution version from which the batch inference job was created.
sourcepub fn num_results(&self) -> Option<i32>
pub fn num_results(&self) -> Option<i32>
The number of recommendations generated by the batch inference job. This number includes the error messages generated for failed input records.
sourcepub fn job_input(&self) -> Option<&BatchInferenceJobInput>
pub fn job_input(&self) -> Option<&BatchInferenceJobInput>
The Amazon S3 path that leads to the input data used to generate the batch inference job.
sourcepub fn job_output(&self) -> Option<&BatchInferenceJobOutput>
pub fn job_output(&self) -> Option<&BatchInferenceJobOutput>
The Amazon S3 bucket that contains the output data generated by the batch inference job.
sourcepub fn batch_inference_job_config(&self) -> Option<&BatchInferenceJobConfig>
pub fn batch_inference_job_config(&self) -> Option<&BatchInferenceJobConfig>
A string to string map of the configuration details of a batch inference job.
sourcepub fn role_arn(&self) -> Option<&str>
pub fn role_arn(&self) -> Option<&str>
The ARN of the Amazon Identity and Access Management (IAM) role that requested the batch inference job.
sourcepub fn status(&self) -> Option<&str>
pub fn status(&self) -> Option<&str>
The status of the batch inference job. The status is one of the following values:
-
PENDING
-
IN PROGRESS
-
ACTIVE
-
CREATE FAILED
sourcepub fn creation_date_time(&self) -> Option<&DateTime>
pub fn creation_date_time(&self) -> Option<&DateTime>
The time at which the batch inference job was created.
sourcepub fn last_updated_date_time(&self) -> Option<&DateTime>
pub fn last_updated_date_time(&self) -> Option<&DateTime>
The time at which the batch inference job was last updated.
source§impl BatchInferenceJob
impl BatchInferenceJob
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture BatchInferenceJob
.
Trait Implementations§
source§impl Clone for BatchInferenceJob
impl Clone for BatchInferenceJob
source§fn clone(&self) -> BatchInferenceJob
fn clone(&self) -> BatchInferenceJob
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for BatchInferenceJob
impl Debug for BatchInferenceJob
source§impl PartialEq<BatchInferenceJob> for BatchInferenceJob
impl PartialEq<BatchInferenceJob> for BatchInferenceJob
source§fn eq(&self, other: &BatchInferenceJob) -> bool
fn eq(&self, other: &BatchInferenceJob) -> bool
self
and other
values to be equal, and is used
by ==
.