pub struct DeployedImage {
pub resolution_time: Option<f64>,
pub resolved_image: Option<String>,
pub specified_image: Option<String>,
}
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§
§resolution_time: Option<f64>
The date and time when the image path for the model resolved to the ResolvedImage
resolved_image: Option<String>
The specific digest path of the image hosted in this ProductionVariant
.
specified_image: Option<String>
The image path you specified when you created the model.
Trait Implementations§
Source§impl Clone for DeployedImage
impl Clone for DeployedImage
Source§fn clone(&self) -> DeployedImage
fn clone(&self) -> DeployedImage
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DeployedImage
impl Debug for DeployedImage
Source§impl Default for DeployedImage
impl Default for DeployedImage
Source§fn default() -> DeployedImage
fn default() -> DeployedImage
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeployedImage
impl<'de> Deserialize<'de> for DeployedImage
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DeployedImage
impl PartialEq for DeployedImage
impl StructuralPartialEq for DeployedImage
Auto Trait Implementations§
impl Freeze for DeployedImage
impl RefUnwindSafe for DeployedImage
impl Send for DeployedImage
impl Sync for DeployedImage
impl Unpin for DeployedImage
impl UnwindSafe for DeployedImage
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more