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

ServiceFilter

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

A complex type that lets you specify the namespaces that you want to list services for.

interface ServiceFilter {
Condition?: FilterCondition | null;
Values: string[];
}

§Properties

§
Condition?: FilterCondition | null
[src]

The operator that you want to use to determine whether a service is returned by ListServices. Valid values for Condition include the following:

  • EQ: When you specify EQ, specify one namespace ID for Values. EQ is the default condition and can be omitted.
  • IN: When you specify IN, specify a list of the IDs for the namespaces that you want ListServices to return a list of services for.
  • BETWEEN: Not applicable.
§

Specify NAMESPACE_ID.

§
Values: string[]
[src]

The values that are applicable to the value that you specify for Condition to filter the list of services.