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

GetSecretValueResponse

import type { GetSecretValueResponse } from "https://aws-api.deno.dev/v0.4/services/secretsmanager.ts?docs=full";
interface GetSecretValueResponse {
ARN?: string | null;
CreatedDate?: Date | number | null;
Name?: string | null;
SecretBinary?: Uint8Array | null;
SecretString?: string | null;
VersionId?: string | null;
VersionStages?: string[] | null;
}

§Properties

§
ARN?: string | null
[src]

The ARN of the secret.

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

The date and time that this version of the secret was created. If you don't specify which version in VersionId or VersionStage, then Secrets Manager uses the AWSCURRENT version.

§
Name?: string | null
[src]

The friendly name of the secret.

§
SecretBinary?: Uint8Array | null
[src]

The decrypted secret value, if the secret value was originally provided as binary data in the form of a byte array. The response parameter represents the binary data as a base64-encoded string.

If the secret was created by using the Secrets Manager console, or if the secret value was originally provided as a string, then this field is omitted. The secret value appears in SecretString instead.

§
SecretString?: string | null
[src]

The decrypted secret value, if the secret value was originally provided as a string or through the Secrets Manager console.

If this secret was created by using the console, then Secrets Manager stores the information as a JSON structure of key/value pairs.

§
VersionId?: string | null
[src]

The unique identifier of this version of the secret.

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

A list of all of the staging labels currently attached to this version of the secret.