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

Compute

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

Resources used to host your game servers. A compute resource can be managed GameLift Amazon EC2 instances or your own resources.

interface Compute {
ComputeArn?: string | null;
ComputeName?: string | null;
ComputeStatus?: ComputeStatus | null;
CreationTime?: Date | number | null;
DnsName?: string | null;
FleetArn?: string | null;
FleetId?: string | null;
GameLiftServiceSdkEndpoint?: string | null;
IpAddress?: string | null;
Location?: string | null;
OperatingSystem?: OperatingSystem | null;
Type?: EC2InstanceType | null;
}

§Properties

§
ComputeArn?: string | null
[src]

The ARN that is assigned to the compute resource and uniquely identifies it. ARNs are unique across locations.

§
ComputeName?: string | null
[src]

A descriptive label that is associated with the compute resource registered to your fleet.

§
ComputeStatus?: ComputeStatus | null
[src]

Current status of the compute. A compute must have an ACTIVE status to host game sessions.

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

A time stamp indicating when this data object was created. Format is a number expressed in Unix time as milliseconds (for example "1469498468.057").

§
DnsName?: string | null
[src]

The DNS name of the compute resource. GameLift requires the DNS name or IP address to manage your compute resource.

§
FleetArn?: string | null
[src]

The Amazon Resource Name (ARN) of the fleet that the compute is registered to.

§
FleetId?: string | null
[src]

A unique identifier for the fleet that the compute is registered to.

§
GameLiftServiceSdkEndpoint?: string | null
[src]

The endpoint connection details of the GameLift SDK endpoint that your game server connects to.

§
IpAddress?: string | null
[src]

The IP address of the compute resource. GameLift requires the DNS name or IP address to manage your compute resource.

§
Location?: string | null
[src]

The name of the custom location you added to the fleet that this compute resource resides in.

§
OperatingSystem?: OperatingSystem | null
[src]

The type of operating system on your compute resource.

§
Type?: EC2InstanceType | null
[src]

Which compute type that the fleet uses. A fleet can use Anywhere compute resources owned by you or managed Amazon EC2 instances.