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

AliasListEntry

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

Contains information about an alias.

interface AliasListEntry {
AliasArn?: string | null;
AliasName?: string | null;
CreationDate?: Date | number | null;
LastUpdatedDate?: Date | number | null;
TargetKeyId?: string | null;
}

§Properties

§
AliasArn?: string | null
[src]

String that contains the key ARN.

§
AliasName?: string | null
[src]

String that contains the alias. This value begins with alias/.

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

Date and time that the alias was most recently created in the account and Region. Formatted as Unix time.

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

Date and time that the alias was most recently associated with a KMS key in the account and Region. Formatted as Unix time.

§
TargetKeyId?: string | null
[src]

String that contains the key identifier of the KMS key associated with the alias.