Module Values.UpdateImageStorageClassRequestSource

Transitions 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.

Sourcetype nonrec t = {
  1. 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.

    *)
  2. repositoryName : RepositoryName.t;
    (*

    The name of the repository that contains the image to transition.

    *)
  3. imageId : ImageIdentifier.t;
  4. targetStorageClass : TargetStorageClass.t;
    (*

    The target storage class for the image.

    *)
}
Sourceval context_ : string
Sourceval make : ?registryId:??? -> repositoryName:RepositoryName.t -> imageId:ImageIdentifier.t -> targetStorageClass:TargetStorageClass.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of RegistryId.t | `Structure of (string * [> `String of ImageDigest.t ]) list ]) 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