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

ListSecretVersionIdsRequest

import type { ListSecretVersionIdsRequest } from "https://aws-api.deno.dev/v0.4/services/secretsmanager.ts?docs=full";
interface ListSecretVersionIdsRequest {
IncludeDeprecated?: boolean | null;
MaxResults?: number | null;
NextToken?: string | null;
SecretId: string;
}

§Properties

§
IncludeDeprecated?: boolean | null
[src]

Specifies whether to include versions of secrets that don't have any staging labels attached to them. Versions without staging labels are considered deprecated and are subject to deletion by Secrets Manager.

§
MaxResults?: number | null
[src]

The number of results to include in the response.

If there are more results available, in the response, Secrets Manager includes NextToken. To get the next results, call ListSecretVersionIds again with the value from NextToken.

§
NextToken?: string | null
[src]

A token that indicates where the output should continue from, if a previous call did not show all results. To get the next results, call ListSecretVersionIds again with this value.

§
SecretId: string
[src]

The ARN or name of the secret whose versions you want to list.

For an ARN, we recommend that you specify a complete ARN rather than a partial ARN. See Finding a secret from a partial ARN.