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

Host

import type { Host } from "https://aws-api.deno.dev/v0.4/services/codestarconnections.ts?docs=full";

A resource that represents the infrastructure where a third-party provider is installed. The host is used when you create connections to an installed third-party provider type, such as GitHub Enterprise Server. You create one host for all connections to that provider.

Note: A host created through the CLI or the SDK is in PENDING status by default. You can make its status AVAILABLE by setting up the host in the console.

interface Host {
HostArn?: string | null;
Name?: string | null;
ProviderEndpoint?: string | null;
ProviderType?: ProviderType | null;
Status?: string | null;
StatusMessage?: string | null;
VpcConfiguration?: VpcConfiguration | null;
}

§Properties

§
HostArn?: string | null
[src]

The Amazon Resource Name (ARN) of the host.

§
Name?: string | null
[src]

The name of the host.

§
ProviderEndpoint?: string | null
[src]

The endpoint of the infrastructure where your provider type is installed.

§
ProviderType?: ProviderType | null
[src]

The name of the installed provider to be associated with your connection. The host resource represents the infrastructure where your provider type is installed. The valid provider type is GitHub Enterprise Server.

§
Status?: string | null
[src]

The status of the host, such as PENDING, AVAILABLE, VPC_CONFIG_DELETING, VPC_CONFIG_INITIALIZING, and VPC_CONFIG_FAILED_INITIALIZATION.

§
StatusMessage?: string | null
[src]

The status description for the host.

§
VpcConfiguration?: VpcConfiguration | null
[src]

The VPC configuration provisioned for the host.