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

VerifyResponse

import type { VerifyResponse } from "https://aws-api.deno.dev/v0.3/services/kms.ts?docs=full";
interface VerifyResponse {
KeyId?: string | null;
SignatureValid?: boolean | null;
SigningAlgorithm?: SigningAlgorithmSpec | null;
}

§Properties

§
KeyId?: string | null
[src]

The Amazon Resource Name (key ARN) of the asymmetric KMS key that was used to verify the signature.

§
SignatureValid?: boolean | null
[src]

A Boolean value that indicates whether the signature was verified. A value of True indicates that the Signature was produced by signing the Message with the specified KeyID and SigningAlgorithm. If the signature is not verified, the Verify operation fails with a KMSInvalidSignatureException exception.

§
SigningAlgorithm?: SigningAlgorithmSpec | null
[src]

The signing algorithm that was used to verify the signature.