Values.DescribeSigningJobResponseSourceReturns information about a specific code signing job. You specify the job by using the jobId value that is returned by the StartSigningJob operation.
type nonrec t = {jobId : JobId.t option;The ID of the signing job on output.
*)source : Source.t option;The object that contains the name of your S3 bucket or your raw code.
*)signingMaterial : SigningMaterial.t option;The Amazon Resource Name (ARN) of your code signing certificate.
*)platformId : PlatformId.t option;The microcontroller platform to which your signed code image will be distributed.
*)platformDisplayName : DisplayName.t option;A human-readable name for the signing platform associated with the signing job.
*)profileName : ProfileName.t option;The name of the profile that initiated the signing operation.
*)profileVersion : ProfileVersion.t option;The version of the signing profile used to initiate the signing job.
*)overrides : SigningPlatformOverrides.t option;A list of any overrides that were applied to the signing operation.
*)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.
*)createdAt : Timestamp.t option;Date and time that the signing job was created.
*)completedAt : Timestamp.t option;Date and time that the signing job was completed.
*)signatureExpiresAt : Timestamp.t option;Thr expiration timestamp for the signature generated by the signing job.
*)requestedBy : RequestedBy.t option;The IAM principal that requested the signing job.
*)status : SigningStatus.t option;Status of the signing job.
*)statusReason : StatusReason.t option;String value that contains the status reason.
*)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.
*)signedObject : SignedObject.t option;Name of the S3 bucket where the signed code image is saved by AWS Signer.
*)jobOwner : AccountId.t option;The AWS account ID of the job owner.
*)jobInvoker : AccountId.t option;The IAM entity that initiated the signing job.
*)}type nonrec error = [ | `AccessDeniedException of AccessDeniedException.t| `InternalServiceErrorException of InternalServiceErrorException.t| `ResourceNotFoundException of ResourceNotFoundException.t| `TooManyRequestsException of TooManyRequestsException.t| `Unknown_operation_error of string * string option ]val make :
?jobId:??? ->
?source:??? ->
?signingMaterial:??? ->
?platformId:??? ->
?platformDisplayName:??? ->
?profileName:??? ->
?profileVersion:??? ->
?overrides:??? ->
?signingParameters:??? ->
?createdAt:??? ->
?completedAt:??? ->
?signatureExpiresAt:??? ->
?requestedBy:??? ->
?status:??? ->
?statusReason:??? ->
?revocationRecord:??? ->
?signedObject:??? ->
?jobOwner:??? ->
?jobInvoker:??? ->
unit ->
tval 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 ]val 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 ]val 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 ]