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

PublicKey

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

Contains information about a returned public key.

interface PublicKey {
Fingerprint?: string | null;
ValidityEndTime?: Date | number | null;
ValidityStartTime?: Date | number | null;
Value?: Uint8Array | null;
}

§Properties

§
Fingerprint?: string | null
[src]

The fingerprint of the public key.

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

The ending time of validity of the public key.

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

The starting time of validity of the public key.

§
Value?: Uint8Array | null
[src]

The DER encoded public key value in PKCS#1 format.