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

ListSecretsRequest

import type { ListSecretsRequest } from "https://aws-api.deno.dev/v0.4/services/secretsmanager.ts?docs=full";
interface ListSecretsRequest {
Filters?: Filter[] | null;
IncludePlannedDeletion?: boolean | null;
MaxResults?: number | null;
NextToken?: string | null;
SortOrder?: SortOrderType | null;
}

§Properties

§
Filters?: Filter[] | null
[src]

The filters to apply to the list of secrets.

§
IncludePlannedDeletion?: boolean | null
[src]

Specifies whether to include secrets scheduled for deletion.

§
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 ListSecrets 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 ListSecrets again with this value.

§
SortOrder?: SortOrderType | null
[src]

Secrets are listed by CreatedDate.