/** *

Describes the Amazon Elastic Compute Cloud instance and related resources to be created using the create cloud formation stack operation.

*/ export interface _InstanceEntry { /** *

The name of the export snapshot record, which contains the exported Lightsail instance snapshot that will be used as the source of the new Amazon EC2 instance.

Use the get export snapshot records operation to get a list of export snapshot records that you can use to create a CloudFormation stack.

*/ sourceName: string; /** *

The instance type (e.g., t2.micro) to use for the new Amazon EC2 instance.

*/ instanceType: string; /** *

The port configuration to use for the new Amazon EC2 instance.

The following configuration options are available:

*/ portInfoSource: "DEFAULT" | "INSTANCE" | "NONE" | "CLOSED" | string; /** *

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.

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.

*/ userData?: string; /** *

The Availability Zone for the new Amazon EC2 instance.

*/ availabilityZone: string; } export declare type _UnmarshalledInstanceEntry = _InstanceEntry;