#[non_exhaustive]pub struct DescribeInferenceRecommendationsJobOutput {Show 13 fields
pub job_name: Option<String>,
pub job_description: Option<String>,
pub job_type: Option<RecommendationJobType>,
pub job_arn: Option<String>,
pub role_arn: Option<String>,
pub status: Option<RecommendationJobStatus>,
pub creation_time: Option<DateTime>,
pub completion_time: Option<DateTime>,
pub last_modified_time: Option<DateTime>,
pub failure_reason: Option<String>,
pub input_config: Option<RecommendationJobInputConfig>,
pub stopping_conditions: Option<RecommendationJobStoppingConditions>,
pub inference_recommendations: Option<Vec<InferenceRecommendation>>,
}
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. The name must be unique within an Amazon Web Services Region in the Amazon Web Services account.
job_description: Option<String>
The job description that you provided when you initiated the job.
job_type: Option<RecommendationJobType>
The job type that you provided when you initiated the job.
job_arn: Option<String>
The Amazon Resource Name (ARN) of the job.
role_arn: Option<String>
The Amazon Resource Name (ARN) of the Amazon Web Services Identity and Access Management (IAM) role you provided when you initiated the 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.
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.
input_config: Option<RecommendationJobInputConfig>
Returns information about the versioned model package Amazon Resource Name (ARN), the traffic pattern, and endpoint configurations you provided when you initiated the job.
stopping_conditions: Option<RecommendationJobStoppingConditions>
The stopping conditions that you provided when you initiated the job.
inference_recommendations: Option<Vec<InferenceRecommendation>>
The recommendations made by Inference Recommender.
Implementations
sourceimpl DescribeInferenceRecommendationsJobOutput
impl DescribeInferenceRecommendationsJobOutput
sourcepub fn job_name(&self) -> Option<&str>
pub fn job_name(&self) -> Option<&str>
The name of the job. The name must be unique within an Amazon Web Services Region in the Amazon Web Services account.
sourcepub fn job_description(&self) -> Option<&str>
pub fn job_description(&self) -> Option<&str>
The job description that you provided when you initiated the job.
sourcepub fn job_type(&self) -> Option<&RecommendationJobType>
pub fn job_type(&self) -> Option<&RecommendationJobType>
The job type that you provided when you initiated the job.
sourcepub fn role_arn(&self) -> Option<&str>
pub fn role_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the Amazon Web Services Identity and Access Management (IAM) role you provided when you initiated the 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 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 input_config(&self) -> Option<&RecommendationJobInputConfig>
pub fn input_config(&self) -> Option<&RecommendationJobInputConfig>
Returns information about the versioned model package Amazon Resource Name (ARN), the traffic pattern, and endpoint configurations you provided when you initiated the job.
sourcepub fn stopping_conditions(
&self
) -> Option<&RecommendationJobStoppingConditions>
pub fn stopping_conditions(
&self
) -> Option<&RecommendationJobStoppingConditions>
The stopping conditions that you provided when you initiated the job.
sourcepub fn inference_recommendations(&self) -> Option<&[InferenceRecommendation]>
pub fn inference_recommendations(&self) -> Option<&[InferenceRecommendation]>
The recommendations made by Inference Recommender.
sourceimpl DescribeInferenceRecommendationsJobOutput
impl DescribeInferenceRecommendationsJobOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeInferenceRecommendationsJobOutput
Trait Implementations
sourceimpl Clone for DescribeInferenceRecommendationsJobOutput
impl Clone for DescribeInferenceRecommendationsJobOutput
sourcefn clone(&self) -> DescribeInferenceRecommendationsJobOutput
fn clone(&self) -> DescribeInferenceRecommendationsJobOutput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl PartialEq<DescribeInferenceRecommendationsJobOutput> for DescribeInferenceRecommendationsJobOutput
impl PartialEq<DescribeInferenceRecommendationsJobOutput> for DescribeInferenceRecommendationsJobOutput
sourcefn eq(&self, other: &DescribeInferenceRecommendationsJobOutput) -> bool
fn eq(&self, other: &DescribeInferenceRecommendationsJobOutput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &DescribeInferenceRecommendationsJobOutput) -> bool
fn ne(&self, other: &DescribeInferenceRecommendationsJobOutput) -> bool
This method tests for !=
.
impl StructuralPartialEq for DescribeInferenceRecommendationsJobOutput
Auto Trait Implementations
impl RefUnwindSafe for DescribeInferenceRecommendationsJobOutput
impl Send for DescribeInferenceRecommendationsJobOutput
impl Sync for DescribeInferenceRecommendationsJobOutput
impl Unpin for DescribeInferenceRecommendationsJobOutput
impl UnwindSafe for DescribeInferenceRecommendationsJobOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more