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

SigningPlatformOverrides

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

Any overrides that are applied to the signing configuration of a code signing platform.

interface SigningPlatformOverrides {
signingConfiguration?: SigningConfigurationOverrides | null;
signingImageFormat?: ImageFormat | null;
}

§Properties

§
signingConfiguration?: SigningConfigurationOverrides | null
[src]

A signing configuration that overrides the default encryption or hash algorithm of a signing job.

§
signingImageFormat?: ImageFormat | null
[src]

A signed image is a JSON object. When overriding the default signing platform configuration, a customer can select either of two signing formats, JSONEmbedded or JSONDetached. (A third format value, JSON, is reserved for future use.) With JSONEmbedded, the signing image has the payload embedded in it. With JSONDetached, the payload is not be embedded in the signing image.