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
sourceimpl 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
sourceimpl DeployedImage
impl DeployedImage
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DeployedImage.
Trait Implementations
sourceimpl Clone for DeployedImage
impl Clone for DeployedImage
sourcefn clone(&self) -> DeployedImage
fn clone(&self) -> DeployedImage
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more