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

TagFilter

import type { TagFilter } from "https://aws-api.deno.dev/v0.3/services/codedeploy.ts?docs=full";

Information about an on-premises instance tag filter.

interface TagFilter {
Key?: string | null;
Type?: TagFilterType | null;
Value?: string | null;
}

§Properties

§
Key?: string | null
[src]

The on-premises instance tag filter key.

§
Type?: TagFilterType | null
[src]

The on-premises instance tag filter type:

  • KEY_ONLY: Key only.
  • VALUE_ONLY: Value only.
  • KEY_AND_VALUE: Key and value.
§
Value?: string | null
[src]

The on-premises instance tag filter value.