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

Namespace

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

A complex type that contains information about a specified namespace.

interface Namespace {
Arn?: string | null;
CreateDate?: Date | number | null;
CreatorRequestId?: string | null;
Description?: string | null;
Id?: string | null;
Name?: string | null;
Properties?: NamespaceProperties | null;
ServiceCount?: number | null;
Type?: NamespaceType | null;
}

§Properties

§
Arn?: string | null
[src]

The Amazon Resource Name (ARN) that Cloud Map assigns to the namespace when you create it.

§
CreateDate?: Date | number | null
[src]

The date that the namespace was created, in Unix date/time format and Coordinated Universal Time (UTC). The value of CreateDate is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.

§
CreatorRequestId?: string | null
[src]

A unique string that identifies the request and that allows failed requests to be retried without the risk of running an operation twice.

§
Description?: string | null
[src]

The description that you specify for the namespace when you create it.

§
Id?: string | null
[src]

The ID of a namespace.

§
Name?: string | null
[src]

The name of the namespace, such as example.com.

§
Properties?: NamespaceProperties | null
[src]

A complex type that contains information that's specific to the type of the namespace.

§
ServiceCount?: number | null
[src]

The number of services that are associated with the namespace.

§
Type?: NamespaceType | null
[src]

The type of the namespace. The methods for discovering instances depends on the value that you specify:

HTTP: Instances can be discovered only programmatically, using the Cloud Map DiscoverInstances API.

DNS_PUBLIC: Instances can be discovered using public DNS queries and using the DiscoverInstances API.

DNS_PRIVATE: Instances can be discovered using DNS queries in VPCs and using the DiscoverInstances API.