Module Values.ImageSigningStatusSource

The signing status for an image. Each status corresponds to a signing profile.

Sourcetype nonrec t = {
  1. signingProfileArn : SigningProfileArn.t option;
    (*

    The ARN of the Amazon Web Services Signer signing profile used to sign the image.

    *)
  2. failureCode : SigningStatusFailureCode.t option;
    (*

    The failure code, which is only present if status is FAILED.

    *)
  3. failureReason : SigningStatusFailureReason.t option;
    (*

    A description of why signing the image failed. This field is only present if status is FAILED.

    *)
  4. status : SigningStatus.t option;
    (*

    The image's signing status. Possible values are: IN_PROGRESS - Signing is currently in progress. COMPLETE - The signature was successfully generated. FAILED - Signing failed. See failureCode and failureReason for details.

    *)
}
Sourceval make : ?signingProfileArn:??? -> ?failureCode:??? -> ?failureReason:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of SigningProfileArn.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