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

SigningConfigurationOverrides

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

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

interface SigningConfigurationOverrides {
encryptionAlgorithm?: EncryptionAlgorithm | null;
hashAlgorithm?: HashAlgorithm | null;
}

§Properties

§
encryptionAlgorithm?: EncryptionAlgorithm | null
[src]

A specified override of the default encryption algorithm that is used in a code signing job.

§
hashAlgorithm?: HashAlgorithm | null
[src]

A specified override of the default hash algorithm that is used in a code signing job.