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

KeySigningKey

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

A key-signing key (KSK) is a complex type that represents a public/private key pair. The private key is used to generate a digital signature for the zone signing key (ZSK). The public key is stored in the DNS and is used to authenticate the ZSK. A KSK is always associated with a hosted zone; it cannot exist by itself.

interface KeySigningKey {
CreatedDate?: Date | number | null;
DigestAlgorithmMnemonic?: string | null;
DigestAlgorithmType?: number | null;
DigestValue?: string | null;
DNSKEYRecord?: string | null;
DSRecord?: string | null;
Flag?: number | null;
KeyTag?: number | null;
KmsArn?: string | null;
LastModifiedDate?: Date | number | null;
Name?: string | null;
PublicKey?: string | null;
SigningAlgorithmMnemonic?: string | null;
SigningAlgorithmType?: number | null;
Status?: string | null;
StatusMessage?: string | null;
}

§Properties

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

The date when the key-signing key (KSK) was created.

§
DigestAlgorithmMnemonic?: string | null
[src]

A string used to represent the delegation signer digest algorithm. This value must follow the guidelines provided by RFC-8624 Section 3.3.

§
DigestAlgorithmType?: number | null
[src]

An integer used to represent the delegation signer digest algorithm. This value must follow the guidelines provided by RFC-8624 Section 3.3.

§
DigestValue?: string | null
[src]

A cryptographic digest of a DNSKEY resource record (RR). DNSKEY records are used to publish the public key that resolvers can use to verify DNSSEC signatures that are used to secure certain kinds of information provided by the DNS system.

§
DNSKEYRecord?: string | null
[src]

A string that represents a DNSKEY record.

§
DSRecord?: string | null
[src]

A string that represents a delegation signer (DS) record.

§
Flag?: number | null
[src]

An integer that specifies how the key is used. For key-signing key (KSK), this value is always 257.

§
KeyTag?: number | null
[src]

An integer used to identify the DNSSEC record for the domain name. The process used to calculate the value is described in RFC-4034 Appendix B.

§
KmsArn?: string | null
[src]

The Amazon resource name (ARN) used to identify the customer managed key in Key Management Service (KMS). The KmsArn must be unique for each key-signing key (KSK) in a single hosted zone.

You must configure the customer managed key as follows:

Status: Enabled

Key spec: ECC_NIST_P256

Key usage: Sign and verify

Key policy: The key policy must give permission for the following actions: - DescribeKey - GetPublicKey - Sign The key policy must also include the Amazon Route 53 service in the principal for your account. Specify the following: - "Service": "dnssec-route53.amazonaws.com"

For more information about working with the customer managed key in KMS, see Key Management Service concepts.

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

The last time that the key-signing key (KSK) was changed.

§
Name?: string | null
[src]

A string used to identify a key-signing key (KSK). Name can include numbers, letters, and underscores (_). Name must be unique for each key-signing key in the same hosted zone.

§
PublicKey?: string | null
[src]

The public key, represented as a Base64 encoding, as required by RFC-4034 Page 5.

§
SigningAlgorithmMnemonic?: string | null
[src]

A string used to represent the signing algorithm. This value must follow the guidelines provided by RFC-8624 Section 3.1.

§
SigningAlgorithmType?: number | null
[src]

An integer used to represent the signing algorithm. This value must follow the guidelines provided by RFC-8624 Section 3.1.

§
Status?: string | null
[src]

A string that represents the current key-signing key (KSK) status.

Status can have one of the following values:

ACTIVE: The KSK is being used for signing.

INACTIVE: The KSK is not being used for signing.

DELETING: The KSK is in the process of being deleted.

ACTION_NEEDED: There is a problem with the KSK that requires you to take action to resolve. For example, the customer managed key might have been deleted, or the permissions for the customer managed key might have been changed.

INTERNAL_FAILURE: There was an error during a request. Before you can continue to work with DNSSEC signing, including actions that involve this KSK, you must correct the problem. For example, you may need to activate or deactivate the KSK.

§
StatusMessage?: string | null
[src]

The status message provided for the following key-signing key (KSK) statuses: ACTION_NEEDED or INTERNAL_FAILURE. The status message includes information about what the problem might be and steps that you can take to correct the issue.