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

InstanceAccess

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

Information required to remotely connect to a fleet instance. Access is requested by calling "GetInstanceAccess".

interface InstanceAccess {
Credentials?: InstanceCredentials | null;
FleetId?: string | null;
InstanceId?: string | null;
IpAddress?: string | null;
OperatingSystem?: OperatingSystem | null;
}

§Properties

§
Credentials?: InstanceCredentials | null
[src]

Credentials required to access the instance.

§
FleetId?: string | null
[src]

A unique identifier for the fleet containing the instance being accessed.

§
InstanceId?: string | null
[src]

A unique identifier for the instance being accessed.

§
IpAddress?: string | null
[src]

IP address that is assigned to the instance.

§
OperatingSystem?: OperatingSystem | null
[src]

Operating system that is running on the instance.