#[non_exhaustive]pub struct InferenceExperimentSummary {
pub name: Option<String>,
pub type: Option<InferenceExperimentType>,
pub schedule: Option<InferenceExperimentSchedule>,
pub status: Option<InferenceExperimentStatus>,
pub status_reason: Option<String>,
pub description: Option<String>,
pub creation_time: Option<DateTime>,
pub completion_time: Option<DateTime>,
pub last_modified_time: Option<DateTime>,
pub role_arn: Option<String>,
}
Expand description
Lists a summary of properties of an inference experiment.
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.name: Option<String>
The name of the inference experiment.
type: Option<InferenceExperimentType>
The type of the inference experiment.
schedule: 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.
status: Option<InferenceExperimentStatus>
The status of the inference experiment.
status_reason: Option<String>
The error message for the inference experiment status result.
description: Option<String>
The description of the inference experiment.
creation_time: Option<DateTime>
The timestamp at which the inference experiment was created.
completion_time: Option<DateTime>
The timestamp at which the inference experiment was completed.
last_modified_time: Option<DateTime>
The timestamp when you last modified the inference experiment.
role_arn: Option<String>
The ARN of the IAM role that Amazon SageMaker can assume to access model artifacts and container images, and manage Amazon SageMaker Inference endpoints for model deployment.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for InferenceExperimentSummary
impl Debug for InferenceExperimentSummary
impl StructuralPartialEq for InferenceExperimentSummary
Auto Trait Implementations§
impl Freeze for InferenceExperimentSummary
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more