Module Values.AwsEcrContainerImageDetailsSource

The image details of the Amazon ECR container image.

Sourcetype nonrec t = {
  1. architecture : Arch.t option;
    (*

    The architecture of the Amazon ECR container image.

    *)
  2. author : Author.t option;
    (*

    The image author of the Amazon ECR container image.

    *)
  3. imageHash : ImageDigest.t option;
    (*

    The image hash of the Amazon ECR container image.

    *)
  4. imageTags : ImageTagsList.t option;
    (*

    The image tags attached to the Amazon ECR container image.

    *)
  5. platform : Platform.t option;
    (*

    The platform of the Amazon ECR container image.

    *)
  6. pushedAt : Date.t option;
    (*

    The date and time the Amazon ECR container image was pushed.

    *)
  7. lastInUseAt : Date.t option;
    (*

    The most recent date and time a cluster was running the image.

    *)
  8. inUseCount : InUseCount.t option;
    (*

    The number of Amazon ECS or Amazon EKS clusters currently running the image.

    *)
  9. registry : RegistryId.t option;
    (*

    The registry the Amazon ECR container image belongs to.

    *)
  10. repositoryName : RepositoryName.t option;
    (*

    The name of the repository the Amazon ECR container image resides in.

    *)
}
Sourceval make : ?architecture:??? -> ?author:??? -> ?imageHash:??? -> ?imageTags:??? -> ?platform:??? -> ?pushedAt:??? -> ?lastInUseAt:??? -> ?inUseCount:??? -> ?registry:??? -> ?repositoryName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of ImageTag.t ] list | `Long of InUseCount.t | `String of Arch.t | `Timestamp of Date.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