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 for DeployedImage
impl PartialEq 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 ==
.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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more