Struct aws_sdk_sagemaker::model::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
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
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for DeployedImage
impl Debug for DeployedImage
sourceimpl PartialEq<DeployedImage> for DeployedImage
impl PartialEq<DeployedImage> for DeployedImage
sourcefn eq(&self, other: &DeployedImage) -> bool
fn eq(&self, other: &DeployedImage) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &DeployedImage) -> bool
fn ne(&self, other: &DeployedImage) -> bool
This method tests for !=
.
impl StructuralPartialEq for DeployedImage
Auto Trait Implementations
impl RefUnwindSafe for DeployedImage
impl Send for DeployedImage
impl Sync for DeployedImage
impl Unpin for DeployedImage
impl UnwindSafe for DeployedImage
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more