Struct aws_sdk_sagemaker::model::DeployedImage
source · #[non_exhaustive]pub struct DeployedImage { /* private fields */ }
Expand description
Gets the Amazon EC2 Container Registry path of the docker image of the model that is hosted in this ProductionVariant
.
If you used the registry/repository[:tag]
form to specify the image path of the primary container when you created the model hosted in this ProductionVariant
, the path resolves to a path of the form registry/repository[@digest]
. A digest is a hash value that identifies a specific version of an image. For information about Amazon ECR paths, see Pulling an Image in the Amazon ECR User Guide.
Implementations§
source§impl DeployedImage
impl DeployedImage
sourcepub fn specified_image(&self) -> Option<&str>
pub fn specified_image(&self) -> Option<&str>
The image path you specified when you created the model.
sourcepub fn resolved_image(&self) -> Option<&str>
pub fn resolved_image(&self) -> Option<&str>
The specific digest path of the image hosted in this ProductionVariant
.
sourcepub fn resolution_time(&self) -> Option<&DateTime>
pub fn resolution_time(&self) -> Option<&DateTime>
The date and time when the image path for the model resolved to the ResolvedImage
source§impl DeployedImage
impl DeployedImage
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DeployedImage
.
Trait Implementations§
source§impl Clone for DeployedImage
impl Clone for DeployedImage
source§fn clone(&self) -> DeployedImage
fn clone(&self) -> DeployedImage
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DeployedImage
impl Debug for DeployedImage
source§impl PartialEq<DeployedImage> for DeployedImage
impl PartialEq<DeployedImage> for DeployedImage
source§fn eq(&self, other: &DeployedImage) -> bool
fn eq(&self, other: &DeployedImage) -> bool
self
and other
values to be equal, and is used
by ==
.