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

EC2TagFilter

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

Information about an EC2 tag filter.

interface EC2TagFilter {
Key?: string | null;
Type?: EC2TagFilterType | null;
Value?: string | null;
}

§Properties

§
Key?: string | null
[src]

The tag filter key.

§
Type?: EC2TagFilterType | null
[src]

The tag filter type:

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

The tag filter value.