Module Values.AwsEcrContainerImageDetailsSource

Information about an Amazon ECR image.

Sourcetype nonrec t = {
  1. registryId : NonEmptyString.t option;
    (*

    The Amazon Web Services account identifier that is associated with the registry that the image belongs to.

    *)
  2. repositoryName : NonEmptyString.t option;
    (*

    The name of the repository that the image belongs to.

    *)
  3. architecture : NonEmptyString.t option;
    (*

    The architecture of the image. Valid values are as follows: arm64 i386 x86_64

    *)
  4. imageDigest : NonEmptyString.t option;
    (*

    The sha256 digest of the image manifest.

    *)
  5. imageTags : NonEmptyStringList.t option;
    (*

    The list of tags that are associated with the image.

    *)
  6. imagePublishedAt : NonEmptyString.t option;
    (*

    The date and time when the image was pushed to the repository. For more information about the validation and formatting of timestamp fields in Security Hub CSPM, see Timestamps.

    *)
}
Sourceval make : ?registryId:??? -> ?repositoryName:??? -> ?architecture:??? -> ?imageDigest:??? -> ?imageTags:??? -> ?imagePublishedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of NonEmptyString.t ] list | `String of NonEmptyString.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