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

Filter

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

Allows you to add filters when you use the search function in Secrets Manager. For more information, see Find secrets in Secrets Manager.

interface Filter {
Key?: FilterNameStringType | null;
Values?: string[] | null;
}

§Properties

§

The following are keys you can use:

  • description: Prefix match, not case-sensitive.
  • name: Prefix match, case-sensitive.
  • tag-key: Prefix match, case-sensitive.
  • tag-value: Prefix match, case-sensitive.
  • primary-region: Prefix match, case-sensitive.
  • owning-service: Prefix match, case-sensitive.
  • all: Breaks the filter value string into words and then searches all attributes for matches. Not case-sensitive.
§
Values?: string[] | null
[src]

The keyword to filter for.

You can prefix your search value with an exclamation mark (!) in order to perform negation filters.