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

SigningPlatform

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

Contains information about the signing configurations and parameters that are used to perform a code signing job.

interface SigningPlatform {
category?: Category | null;
displayName?: string | null;
maxSizeInMB?: number | null;
partner?: string | null;
platformId?: string | null;
revocationSupported?: boolean | null;
signingConfiguration?: SigningConfiguration | null;
signingImageFormat?: SigningImageFormat | null;
target?: string | null;
}

§Properties

§
category?: Category | null
[src]

The category of a code signing platform.

§
displayName?: string | null
[src]

The display name of a code signing platform.

§
maxSizeInMB?: number | null
[src]

The maximum size (in MB) of code that can be signed by a code signing platform.

§
partner?: string | null
[src]

Any partner entities linked to a code signing platform.

§
platformId?: string | null
[src]

The ID of a code signing; platform.

§
revocationSupported?: boolean | null
[src]

Indicates whether revocation is supported for the platform.

§
signingConfiguration?: SigningConfiguration | null
[src]

The configuration of a code signing platform. This includes the designated hash algorithm and encryption algorithm of a signing platform.

§
signingImageFormat?: SigningImageFormat | null
[src]
§
target?: string | null
[src]

The types of targets that can be signed by a code signing platform.