Struct aws_sdk_sagemaker::types::DeployedImage
source · #[non_exhaustive]pub struct DeployedImage {
pub specified_image: Option<String>,
pub resolved_image: Option<String>,
pub resolution_time: Option<DateTime>,
}
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.
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.specified_image: Option<String>
The image path you specified when you created the model.
resolved_image: Option<String>
The specific digest path of the image hosted in this ProductionVariant
.
resolution_time: Option<DateTime>
The date and time when the image path for the model resolved to the ResolvedImage
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() -> DeployedImageBuilder
pub fn builder() -> DeployedImageBuilder
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 ==
.