Values.SigningJobSourceContains information about a signing job.
type nonrec t = {jobId : JobId.t option;The ID of the signing job.
*)source : Source.t option;A Source that contains information about a signing job's code image source.
*)signedObject : SignedObject.t option;A SignedObject structure that contains information about a signing job's signed code image.
*)signingMaterial : SigningMaterial.t option;A SigningMaterial object that contains the Amazon Resource Name (ARN) of the certificate used for the signing job.
*)createdAt : Timestamp.t option;The date and time that the signing job was created.
*)status : SigningStatus.t option;The status of the signing job.
*)isRevoked : Bool_.t option;Indicates whether the signing job is revoked.
*)profileName : ProfileName.t option;The name of the signing profile that created a signing job.
*)profileVersion : ProfileVersion.t option;The version of the signing profile that created a signing job.
*)platformId : PlatformId.t option;The unique identifier for a signing platform.
*)platformDisplayName : DisplayName.t option;The name of a signing platform.
*)signatureExpiresAt : Timestamp.t option;The time when the signature of a signing job expires.
*)jobOwner : AccountId.t option;The AWS account ID of the job owner.
*)jobInvoker : AccountId.t option;The AWS account ID of the job invoker.
*)}val make :
?jobId:??? ->
?source:??? ->
?signedObject:??? ->
?signingMaterial:??? ->
?createdAt:??? ->
?status:??? ->
?isRevoked:??? ->
?profileName:??? ->
?profileVersion:??? ->
?platformId:??? ->
?platformDisplayName:??? ->
?signatureExpiresAt:??? ->
?jobOwner:??? ->
?jobInvoker:??? ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Bool_.t
| `Enum of string
| `String of JobId.t
| `Structure of
(string
* [> `String of CertificateArn.t
| `Structure of (string * [> `String of BucketName.t ]) list ])
list
| `Timestamp of Timestamp.t ])
list ]