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

SecretVersionsListEntry

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

A structure that contains information about one version of a secret.

interface SecretVersionsListEntry {
CreatedDate?: Date | number | null;
KmsKeyIds?: string[] | null;
LastAccessedDate?: Date | number | null;
VersionId?: string | null;
VersionStages?: string[] | null;
}

§Properties

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

The date and time this version of the secret was created.

§
KmsKeyIds?: string[] | null
[src]

The KMS keys used to encrypt the secret version.

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

The date that this version of the secret was last accessed. Note that the resolution of this field is at the date level and does not include the time.

§
VersionId?: string | null
[src]

The unique version identifier of this version of the secret.

§
VersionStages?: string[] | null
[src]

An array of staging labels that are currently associated with this version of the secret.