Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DescribeSigningJobResponse

import type { DescribeSigningJobResponse } from "https://aws-api.deno.dev/v0.3/services/signer.ts?docs=full";
interface DescribeSigningJobResponse {
completedAt?: Date | number | null;
createdAt?: Date | number | null;
jobId?: string | null;
jobInvoker?: string | null;
jobOwner?: string | null;
overrides?: SigningPlatformOverrides | null;
platformDisplayName?: string | null;
platformId?: string | null;
profileName?: string | null;
profileVersion?: string | null;
requestedBy?: string | null;
revocationRecord?: SigningJobRevocationRecord | null;
signatureExpiresAt?: Date | number | null;
signedObject?: SignedObject | null;
signingMaterial?: SigningMaterial | null;
signingParameters?: {
[key: string]: string | null | undefined;
}
| null;
source?: Source | null;
status?: SigningStatus | null;
statusReason?: string | null;
}

§Properties

§
completedAt?: Date | number | null
[src]

Date and time that the signing job was completed.

§
createdAt?: Date | number | null
[src]

Date and time that the signing job was created.

§
jobId?: string | null
[src]

The ID of the signing job on output.

§
jobInvoker?: string | null
[src]

The IAM entity that initiated the signing job.

§
jobOwner?: string | null
[src]

The AWS account ID of the job owner.

§

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

§
platformDisplayName?: string | null
[src]

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

§
platformId?: string | null
[src]

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

§
profileName?: string | null
[src]

The name of the profile that initiated the signing operation.

§
profileVersion?: string | null
[src]

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

§
requestedBy?: string | null
[src]

The IAM principal that requested the signing job.

§
revocationRecord?: SigningJobRevocationRecord | null
[src]

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.

§
signatureExpiresAt?: Date | number | null
[src]

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

§
signedObject?: SignedObject | null
[src]

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

§
signingMaterial?: SigningMaterial | null
[src]

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

§
signingParameters?: {
[key: string]: string | null | undefined;
}
| null
[src]

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

§
source?: Source | null
[src]

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

§
status?: SigningStatus | null
[src]

Status of the signing job.

§
statusReason?: string | null
[src]

String value that contains the status reason.