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

PublicKeySummary

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

Contains information about a public key.

interface PublicKeySummary {
Comment?: string | null;
CreatedTime: Date | number;
EncodedKey: string;
Id: string;
Name: string;
}

§Properties

§
Comment?: string | null
[src]

A comment to describe the public key. The comment cannot be longer than 128 characters.

§
CreatedTime: Date | number
[src]

The date and time when the public key was uploaded.

§
EncodedKey: string
[src]

The public key.

§
Id: string
[src]

The identifier of the public key.

§
Name: string
[src]

A name to help identify the public key.