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

FilteringAttribute

import type { FilteringAttribute } from "https://googleapis.deno.dev/v1/eventarc:v1.ts";

A representation of the FilteringAttribute resource. Filtering attributes are per event type.

interface FilteringAttribute {
readonly attribute?: string;
readonly description?: string;
readonly pathPatternSupported?: boolean;
readonly required?: boolean;
}

§Properties

§
readonly attribute?: string
[src]

Output only. Attribute used for filtering the event type.

§
readonly description?: string
[src]

Output only. Description of the purpose of the attribute.

§
readonly pathPatternSupported?: boolean
[src]

Output only. If true, the attribute accepts matching expressions in the Eventarc PathPattern format.

§
readonly required?: boolean
[src]

Output only. If true, the triggers for this provider should always specify a filter on these attributes. Trigger creation will fail otherwise.