Module Values.DescribeSigningJobResponseSource

Returns information about a specific code signing job. You specify the job by using the jobId value that is returned by the StartSigningJob operation.

Sourcetype nonrec t = {
  1. jobId : JobId.t option;
    (*

    The ID of the signing job on output.

    *)
  2. source : Source.t option;
    (*

    The object that contains the name of your S3 bucket or your raw code.

    *)
  3. signingMaterial : SigningMaterial.t option;
    (*

    The Amazon Resource Name (ARN) of your code signing certificate.

    *)
  4. platformId : PlatformId.t option;
    (*

    The microcontroller platform to which your signed code image will be distributed.

    *)
  5. platformDisplayName : DisplayName.t option;
    (*

    A human-readable name for the signing platform associated with the signing job.

    *)
  6. profileName : ProfileName.t option;
    (*

    The name of the profile that initiated the signing operation.

    *)
  7. profileVersion : ProfileVersion.t option;
    (*

    The version of the signing profile used to initiate the signing job.

    *)
  8. overrides : SigningPlatformOverrides.t option;
    (*

    A list of any overrides that were applied to the signing operation.

    *)
  9. signingParameters : SigningParameters.t option;
    (*

    Map of user-assigned key-value pairs used during signing. These values contain any information that you specified for use in your signing job.

    *)
  10. createdAt : Timestamp.t option;
    (*

    Date and time that the signing job was created.

    *)
  11. completedAt : Timestamp.t option;
    (*

    Date and time that the signing job was completed.

    *)
  12. signatureExpiresAt : Timestamp.t option;
    (*

    Thr expiration timestamp for the signature generated by the signing job.

    *)
  13. requestedBy : RequestedBy.t option;
    (*

    The IAM principal that requested the signing job.

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

    Status of the signing job.

    *)
  15. statusReason : StatusReason.t option;
    (*

    String value that contains the status reason.

    *)
  16. revocationRecord : SigningJobRevocationRecord.t option;
    (*

    A revocation record if the signature generated by the signing job has been revoked. Contains a timestamp and the ID of the IAM entity that revoked the signature.

    *)
  17. signedObject : SignedObject.t option;
    (*

    Name of the S3 bucket where the signed code image is saved by AWS Signer.

    *)
  18. jobOwner : AccountId.t option;
    (*

    The AWS account ID of the job owner.

    *)
  19. jobInvoker : AccountId.t option;
    (*

    The IAM entity that initiated the signing job.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServiceErrorException of InternalServiceErrorException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `TooManyRequestsException of TooManyRequestsException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?jobId:??? -> ?source:??? -> ?signingMaterial:??? -> ?platformId:??? -> ?platformDisplayName:??? -> ?profileName:??? -> ?profileVersion:??? -> ?overrides:??? -> ?signingParameters:??? -> ?createdAt:??? -> ?completedAt:??? -> ?signatureExpiresAt:??? -> ?requestedBy:??? -> ?status:??? -> ?statusReason:??? -> ?revocationRecord:??? -> ?signedObject:??? -> ?jobOwner:??? -> ?jobInvoker:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServiceErrorException of InternalServiceErrorException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `TooManyRequestsException of TooManyRequestsException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServiceErrorException of InternalServiceErrorException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `TooManyRequestsException of TooManyRequestsException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of SigningParameterKey.t ] * [> `String of SigningParameterValue.t ]) list | `String of JobId.t | `Structure of (string * [> `Enum of string | `String of CertificateArn.t | `Structure of (string * [> `Enum of string | `String of BucketName.t ]) list | `Timestamp of Timestamp.t ]) list | `Timestamp of Timestamp.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