Module Values.DescribeImageSigningStatusResponseSource

Returns the signing status for a specified image. If the image matched signing rules that reference different signing profiles, a status is returned for each profile. For more information, see Managed signing in the Amazon Elastic Container Registry User Guide.

Sourcetype nonrec t = {
  1. repositoryName : RepositoryName.t option;
    (*

    The name of the repository.

    *)
  2. imageId : ImageIdentifier.t option;
    (*

    An object with identifying information for the image.

    *)
  3. registryId : RegistryId.t option;
    (*

    The Amazon Web Services account ID associated with the registry.

    *)
  4. signingStatuses : ImageSigningStatusList.t option;
    (*

    A list of signing statuses for the specified image. Each status corresponds to a signing profile.

    *)
}
Sourcetype nonrec error = [
  1. | `ImageNotFoundException of ImageNotFoundException.t
  2. | `InvalidParameterException of InvalidParameterException.t
  3. | `RepositoryNotFoundException of RepositoryNotFoundException.t
  4. | `ServerException of ServerException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?repositoryName:??? -> ?imageId:??? -> ?registryId:??? -> ?signingStatuses:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ImageNotFoundException of ImageNotFoundException.t | `InvalidParameterException of InvalidParameterException.t | `RepositoryNotFoundException of RepositoryNotFoundException.t | `ServerException of ServerException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ImageNotFoundException of ImageNotFoundException.t | `InvalidParameterException of InvalidParameterException.t | `RepositoryNotFoundException of RepositoryNotFoundException.t | `ServerException of ServerException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of SigningProfileArn.t ]) list ] list | `String of RepositoryName.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