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

NamespaceFilter

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

A complex type that identifies the namespaces that you want to list. You can choose to list public or private namespaces.

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

§Properties

§
Condition?: FilterCondition | null
[src]
The operator that you want to use to determine whether ListNamespaces returns a namespace. Valid values for condition include:

When you specify EQ for the condition, you can choose to list only public namespaces or private namespaces, but not both. EQ is the default condition and can be omitted.

: When you specify IN for the condition, you can choose to list public namespaces, private namespaces, or both.

BETWEEN: Not applicable

§

Specify TYPE.

§
Values: string[]
[src]

If you specify EQ for Condition, specify either DNS_PUBLIC or DNS_PRIVATE.

If you specify IN for Condition, you can specify DNS_PUBLIC, DNS_PRIVATE, or both.