Struct aws_sdk_sagemaker::model::DeployedImage [−][src]
#[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
The image path you specified when you created the model.
The specific digest path of the image hosted in this
ProductionVariant
.
The date and time when the image path for the model resolved to the
ResolvedImage
Creates a new builder-style object to manufacture DeployedImage
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
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
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more