Class: Aws::SageMaker::Types::DeployedImage

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-sagemaker/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[: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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resolution_timeTime

The date and time when the image path for the model resolved to the ResolvedImage

Returns:

  • (Time)


11180
11181
11182
11183
11184
11185
11186
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 11180

class DeployedImage < Struct.new(
  :specified_image,
  :resolved_image,
  :resolution_time)
  SENSITIVE = []
  include Aws::Structure
end

#resolved_imageString

The specific digest path of the image hosted in this ProductionVariant.

Returns:

  • (String)


11180
11181
11182
11183
11184
11185
11186
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 11180

class DeployedImage < Struct.new(
  :specified_image,
  :resolved_image,
  :resolution_time)
  SENSITIVE = []
  include Aws::Structure
end

#specified_imageString

The image path you specified when you created the model.

Returns:

  • (String)


11180
11181
11182
11183
11184
11185
11186
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 11180

class DeployedImage < Struct.new(
  :specified_image,
  :resolved_image,
  :resolution_time)
  SENSITIVE = []
  include Aws::Structure
end