Class: Aws::SageMaker::Types::DeployedImage
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::DeployedImage
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
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` 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`. 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*.
[1]: docs.aws.amazon.com/sagemaker/latest/APIReference/API_ProductionVariant.html [2]: docs.aws.amazon.com/AmazonECR/latest/userguide/docker-pull-ecr-image.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resolution_time ⇒ Time
The date and time when the image path for the model resolved to the ‘ResolvedImage`.
-
#resolved_image ⇒ String
The specific digest path of the image hosted in this ‘ProductionVariant`.
-
#specified_image ⇒ String
The image path you specified when you created the model.
Instance Attribute Details
#resolution_time ⇒ Time
The date and time when the image path for the model resolved to the ‘ResolvedImage`
12024 12025 12026 12027 12028 12029 12030 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 12024 class DeployedImage < Struct.new( :specified_image, :resolved_image, :resolution_time) SENSITIVE = [] include Aws::Structure end |
#resolved_image ⇒ String
The specific digest path of the image hosted in this ‘ProductionVariant`.
12024 12025 12026 12027 12028 12029 12030 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 12024 class DeployedImage < Struct.new( :specified_image, :resolved_image, :resolution_time) SENSITIVE = [] include Aws::Structure end |
#specified_image ⇒ String
The image path you specified when you created the model.
12024 12025 12026 12027 12028 12029 12030 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 12024 class DeployedImage < Struct.new( :specified_image, :resolved_image, :resolution_time) SENSITIVE = [] include Aws::Structure end |