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

CreateInstancesRequest

import type { CreateInstancesRequest } from "https://aws-api.deno.dev/v0.3/services/lightsail.ts?docs=full";
interface CreateInstancesRequest {
addOns?: AddOnRequest[] | null;
availabilityZone: string;
blueprintId: string;
bundleId: string;
customImageName?: string | null;
instanceNames: string[];
ipAddressType?: IpAddressType | null;
keyPairName?: string | null;
tags?: Tag[] | null;
userData?: string | null;
}

§Properties

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

An array of objects representing the add-ons to enable for the new instance.

§
availabilityZone: string
[src]

The Availability Zone in which to create your instance. Use the following format: us-east-2a (case sensitive). You can get a list of Availability Zones by using the get regions operation. Be sure to add the include Availability Zones parameter to your request.

§
blueprintId: string
[src]

The ID for a virtual private server image (e.g., app_wordpress_4_4 or app_lamp_7_0). Use the get blueprints operation to return a list of available images (or blueprints).

Note: Use active blueprints when creating new instances. Inactive blueprints are listed to support customers with existing instances and are not necessarily available to create new instances. Blueprints are marked inactive when they become outdated due to operating system updates or new application releases.

§
bundleId: string
[src]

The bundle of specification information for your virtual private server (or instance), including the pricing plan (e.g., micro_1_0).

§
customImageName?: string | null
[src]

(Deprecated) The name for your custom image.

Note: In releases prior to June 12, 2017, this parameter was ignored by the API. It is now deprecated.

§
instanceNames: string[]
[src]

The names to use for your new Lightsail instances. Separate multiple values using quotation marks and commas, for example: ["MyFirstInstance","MySecondInstance"]

§
ipAddressType?: IpAddressType | null
[src]

The IP address type for the instance.

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

The default value is dualstack.

§
keyPairName?: string | null
[src]

The name of your key pair.

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

The tag keys and optional values to add to the resource during create.

Use the TagResource action to tag a resource after it's created.

§
userData?: string | null
[src]

A launch script you can create that configures a server with additional user data. For example, you might want to run apt-get -y update.

Note: Depending on the machine image you choose, the command to get software on your instance varies. Amazon Linux and CentOS use yum, Debian and Ubuntu use apt-get, and FreeBSD uses pkg. For a complete list, see the Amazon Lightsail Developer Guide.