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

SigningJob

import type { SigningJob } from "https://aws-api.deno.dev/v0.3/services/signer.ts?docs=full";

Contains information about a signing job.

interface SigningJob {
createdAt?: Date | number | null;
isRevoked?: boolean | null;
jobId?: string | null;
jobInvoker?: string | null;
jobOwner?: string | null;
platformDisplayName?: string | null;
platformId?: string | null;
profileName?: string | null;
profileVersion?: string | null;
signatureExpiresAt?: Date | number | null;
signedObject?: SignedObject | null;
signingMaterial?: SigningMaterial | null;
source?: Source | null;
status?: SigningStatus | null;
}

§Properties

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

The date and time that the signing job was created.

§
isRevoked?: boolean | null
[src]

Indicates whether the signing job is revoked.

§
jobId?: string | null
[src]

The ID of the signing job.

§
jobInvoker?: string | null
[src]

The AWS account ID of the job invoker.

§
jobOwner?: string | null
[src]

The AWS account ID of the job owner.

§
platformDisplayName?: string | null
[src]

The name of a signing platform.

§
platformId?: string | null
[src]

The unique identifier for a signing platform.

§
profileName?: string | null
[src]

The name of the signing profile that created a signing job.

§
profileVersion?: string | null
[src]

The version of the signing profile that created a signing job.

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

The time when the signature of a signing job expires.

§
signedObject?: SignedObject | null
[src]

A SignedObject structure that contains information about a signing job's signed code image.

§
signingMaterial?: SigningMaterial | null
[src]

A SigningMaterial object that contains the Amazon Resource Name (ARN) of the certificate used for the signing job.

§
source?: Source | null
[src]

A Source that contains information about a signing job's code image source.

§
status?: SigningStatus | null
[src]

The status of the signing job.