#[non_exhaustive]pub struct InferenceExperimentSummary { /* private fields */ }
Expand description
Lists a summary of properties of an inference experiment.
Implementations§
source§impl InferenceExperimentSummary
impl InferenceExperimentSummary
sourcepub fn type(&self) -> Option<&InferenceExperimentType>
pub fn type(&self) -> Option<&InferenceExperimentType>
The type of the inference experiment.
sourcepub fn schedule(&self) -> Option<&InferenceExperimentSchedule>
pub fn schedule(&self) -> Option<&InferenceExperimentSchedule>
The duration for which the inference experiment ran or will run.
The maximum duration that you can set for an inference experiment is 30 days.
sourcepub fn status(&self) -> Option<&InferenceExperimentStatus>
pub fn status(&self) -> Option<&InferenceExperimentStatus>
The status of the inference experiment.
sourcepub fn status_reason(&self) -> Option<&str>
pub fn status_reason(&self) -> Option<&str>
The error message for the inference experiment status result.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the inference experiment.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The timestamp at which the inference experiment was created.
sourcepub fn completion_time(&self) -> Option<&DateTime>
pub fn completion_time(&self) -> Option<&DateTime>
The timestamp at which the inference experiment was completed.
sourcepub fn last_modified_time(&self) -> Option<&DateTime>
pub fn last_modified_time(&self) -> Option<&DateTime>
The timestamp when you last modified the inference experiment.
source§impl InferenceExperimentSummary
impl InferenceExperimentSummary
sourcepub fn builder() -> InferenceExperimentSummaryBuilder
pub fn builder() -> InferenceExperimentSummaryBuilder
Creates a new builder-style object to manufacture InferenceExperimentSummary
.
Trait Implementations§
source§impl Clone for InferenceExperimentSummary
impl Clone for InferenceExperimentSummary
source§fn clone(&self) -> InferenceExperimentSummary
fn clone(&self) -> InferenceExperimentSummary
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for InferenceExperimentSummary
impl Debug for InferenceExperimentSummary
source§impl PartialEq<InferenceExperimentSummary> for InferenceExperimentSummary
impl PartialEq<InferenceExperimentSummary> for InferenceExperimentSummary
source§fn eq(&self, other: &InferenceExperimentSummary) -> bool
fn eq(&self, other: &InferenceExperimentSummary) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for InferenceExperimentSummary
Auto Trait Implementations§
impl RefUnwindSafe for InferenceExperimentSummary
impl Send for InferenceExperimentSummary
impl Sync for InferenceExperimentSummary
impl Unpin for InferenceExperimentSummary
impl UnwindSafe for InferenceExperimentSummary
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more