Module Values_1.DeployedImageSource

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.

Sourcetype nonrec t = {
  1. specifiedImage : Values_0.ContainerImage.t option;
    (*

    The image path you specified when you created the model.

    *)
  2. resolvedImage : Values_0.ContainerImage.t option;
    (*

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

    *)
  3. resolutionTime : Values_0.Timestamp.t option;
    (*

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

    *)
}
Sourceval make : ?specifiedImage:??? -> ?resolvedImage:??? -> ?resolutionTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_0.ContainerImage.t | `Timestamp of Values_0.Timestamp.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t