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

ResourceTag

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

The resource tags that Firewall Manager uses to determine if a particular resource should be included or excluded from the Firewall Manager policy. Tags enable you to categorize your Amazon Web Services resources in different ways, for example, by purpose, owner, or environment. Each tag consists of a key and an optional value. Firewall Manager combines the tags with "AND" so that, if you add more than one tag to a policy scope, a resource must have all the specified tags to be included or excluded. For more information, see Working with Tag Editor.

interface ResourceTag {
Key: string;
Value?: string | null;
}

§Properties

§
Key: string
[src]

The resource tag key.

§
Value?: string | null
[src]

The resource tag value.