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

Instance

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

Describes an instance (a virtual private server).

interface Instance {
addOns?: AddOn[] | null;
arn?: string | null;
blueprintId?: string | null;
blueprintName?: string | null;
bundleId?: string | null;
createdAt?: Date | number | null;
hardware?: InstanceHardware | null;
ipAddressType?: IpAddressType | null;
ipv6Addresses?: string[] | null;
isStaticIp?: boolean | null;
location?: ResourceLocation | null;
name?: string | null;
networking?: InstanceNetworking | null;
privateIpAddress?: string | null;
publicIpAddress?: string | null;
resourceType?: ResourceType | null;
sshKeyName?: string | null;
state?: InstanceState | null;
supportCode?: string | null;
tags?: Tag[] | null;
username?: string | null;
}

§Properties

§
addOns?: AddOn[] | null
[src]

An array of objects representing the add-ons enabled on the instance.

§
arn?: string | null
[src]

The Amazon Resource Name (ARN) of the instance (e.g., arn:aws:lightsail:us-east-2:123456789101:Instance/244ad76f-8aad-4741-809f-12345EXAMPLE).

§
blueprintId?: string | null
[src]

The blueprint ID (e.g., os_amlinux_2016_03).

§
blueprintName?: string | null
[src]

The friendly name of the blueprint (e.g., Amazon Linux).

§
bundleId?: string | null
[src]

The bundle for the instance (e.g., micro_1_0).

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

The timestamp when the instance was created (e.g., 1479734909.17) in Unix time format.

§
hardware?: InstanceHardware | null
[src]

The size of the vCPU and the amount of RAM for the instance.

§
ipAddressType?: IpAddressType | null
[src]

The IP address type of the instance.

The possible values are ipv4 for IPv4 only, and dualstack for IPv4 and IPv6.

§
ipv6Addresses?: string[] | null
[src]

The IPv6 addresses of the instance.

§
isStaticIp?: boolean | null
[src]

A Boolean value indicating whether this instance has a static IP assigned to it.

§
location?: ResourceLocation | null
[src]

The region name and Availability Zone where the instance is located.

§
name?: string | null
[src]

The name the user gave the instance (e.g., Amazon_Linux-1GB-Ohio-1).

§
networking?: InstanceNetworking | null
[src]

Information about the public ports and monthly data transfer rates for the instance.

§
privateIpAddress?: string | null
[src]

The private IP address of the instance.

§
publicIpAddress?: string | null
[src]

The public IP address of the instance.

§
resourceType?: ResourceType | null
[src]

The type of resource (usually Instance).

§
sshKeyName?: string | null
[src]

The name of the SSH key being used to connect to the instance (e.g., LightsailDefaultKeyPair).

§
state?: InstanceState | null
[src]

The status code and the state (e.g., running) for the instance.

§
supportCode?: string | null
[src]

The support code. Include this code in your email to support when you have questions about an instance or another resource in Lightsail. This code enables our support team to look up your Lightsail information more easily.

§
tags?: Tag[] | null
[src]

The tag keys and optional values for the resource. For more information about tags in Lightsail, see the Amazon Lightsail Developer Guide.

§
username?: string | null
[src]

The user name for connecting to the instance (e.g., ec2-user).