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

PublicKeyConfig

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

Configuration information about a public key that you can use with signed URLs and signed cookies, or with field-level encryption.

interface PublicKeyConfig {
CallerReference: string;
Comment?: string | null;
EncodedKey: string;
Name: string;
}

§Properties

§
CallerReference: string
[src]

A string included in the request to help make sure that the request can’t be replayed.

§
Comment?: string | null
[src]

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

§
EncodedKey: string
[src]

The public key that you can use with signed URLs and signed cookies, or with field-level encryption.

§
Name: string
[src]

A name to help identify the public key.