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

DnssecSigningAttributes

import type { DnssecSigningAttributes } from "https://aws-api.deno.dev/v0.4/services/route53domains.ts?docs=full";

Information about a delegation signer (DS) record that was created in the registry by AssociateDelegationSignerToDomain.

interface DnssecSigningAttributes {
Algorithm?: number | null;
Flags?: number | null;
PublicKey?: string | null;
}

§Properties

§
Algorithm?: number | null
[src]

Algorithm which was used to generate the digest from the public key.

§
Flags?: number | null
[src]

Defines the type of key. It can be either a KSK (key-signing-key, value 257) or ZSK (zone-signing-key, value 256). Using KSK is always encouraged. Only use ZSK if your DNS provider isn't Route 53 and you don’t have KSK available.

If you have KSK and ZSK keys, always use KSK to create a delegations signer (DS) record. If you have ZSK keys only – use ZSK to create a DS record.

§
PublicKey?: string | null
[src]

The base64-encoded public key part of the key pair that is passed to the registry.