Values.UpdateImageStorageClassRequestSourceTransitions an image between storage classes. You can transition images from Amazon ECR standard storage class to Amazon ECR archival storage class for long-term storage, or restore archived images back to Amazon ECR standard.
type nonrec t = {registryId : RegistryId.t option;The Amazon Web Services account ID associated with the registry that contains the image to transition. If you do not specify a registry, the default registry is assumed.
*)repositoryName : RepositoryName.t;The name of the repository that contains the image to transition.
*)imageId : ImageIdentifier.t;targetStorageClass : TargetStorageClass.t;The target storage class for the image.
*)}val make :
?registryId:??? ->
repositoryName:RepositoryName.t ->
imageId:ImageIdentifier.t ->
targetStorageClass:TargetStorageClass.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of RegistryId.t
| `Structure of (string * [> `String of ImageDigest.t ]) list ])
list ]