#[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
source§impl PartialEq<InferenceExperimentSummary> for InferenceExperimentSummary
impl PartialEq<InferenceExperimentSummary> for InferenceExperimentSummary
source§fn eq(&self, other: &InferenceExperimentSummary) -> bool
fn eq(&self, other: &InferenceExperimentSummary) -> bool
self
and other
values to be equal, and is used
by ==
.