#[non_exhaustive]pub struct ModelVariantConfigSummary { /* private fields */ }
Expand description
Summary of the deployment configuration of a model.
Implementations§
source§impl ModelVariantConfigSummary
impl ModelVariantConfigSummary
sourcepub fn model_name(&self) -> Option<&str>
pub fn model_name(&self) -> Option<&str>
The name of the Amazon SageMaker Model entity.
sourcepub fn variant_name(&self) -> Option<&str>
pub fn variant_name(&self) -> Option<&str>
The name of the variant.
sourcepub fn infrastructure_config(&self) -> Option<&ModelInfrastructureConfig>
pub fn infrastructure_config(&self) -> Option<&ModelInfrastructureConfig>
The configuration of the infrastructure that the model has been deployed to.
sourcepub fn status(&self) -> Option<&ModelVariantStatus>
pub fn status(&self) -> Option<&ModelVariantStatus>
The status of deployment for the model variant on the hosted inference endpoint.
-
Creating
- Amazon SageMaker is preparing the model variant on the hosted inference endpoint. -
InService
- The model variant is running on the hosted inference endpoint. -
Updating
- Amazon SageMaker is updating the model variant on the hosted inference endpoint. -
Deleting
- Amazon SageMaker is deleting the model variant on the hosted inference endpoint. -
Deleted
- The model variant has been deleted on the hosted inference endpoint. This can only happen after stopping the experiment.
source§impl ModelVariantConfigSummary
impl ModelVariantConfigSummary
sourcepub fn builder() -> ModelVariantConfigSummaryBuilder
pub fn builder() -> ModelVariantConfigSummaryBuilder
Creates a new builder-style object to manufacture ModelVariantConfigSummary
.
Trait Implementations§
source§impl Clone for ModelVariantConfigSummary
impl Clone for ModelVariantConfigSummary
source§fn clone(&self) -> ModelVariantConfigSummary
fn clone(&self) -> ModelVariantConfigSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ModelVariantConfigSummary
impl Debug for ModelVariantConfigSummary
source§impl PartialEq<ModelVariantConfigSummary> for ModelVariantConfigSummary
impl PartialEq<ModelVariantConfigSummary> for ModelVariantConfigSummary
source§fn eq(&self, other: &ModelVariantConfigSummary) -> bool
fn eq(&self, other: &ModelVariantConfigSummary) -> bool
self
and other
values to be equal, and is used
by ==
.