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

ImportInstanceLaunchSpecification

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

Describes the launch specification for VM import.

interface ImportInstanceLaunchSpecification {
AdditionalInfo?: string | null;
Architecture?: ArchitectureValues | null;
GroupIds?: string[] | null;
GroupNames?: string[] | null;
InstanceInitiatedShutdownBehavior?: ShutdownBehavior | null;
InstanceType?: InstanceType | null;
Monitoring?: boolean | null;
Placement?: Placement | null;
PrivateIpAddress?: string | null;
SubnetId?: string | null;
UserData?: UserData | null;
}

§Properties

§
AdditionalInfo?: string | null
[src]

Reserved.

§
Architecture?: ArchitectureValues | null
[src]

The architecture of the instance.

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

The security group IDs.

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

The security group names.

§
InstanceInitiatedShutdownBehavior?: ShutdownBehavior | null
[src]

Indicates whether an instance stops or terminates when you initiate shutdown from the instance (using the operating system command for system shutdown).

§
InstanceType?: InstanceType | null
[src]

The instance type. For more information about the instance types that you can import, see Instance Types in the VM Import/Export User Guide.

§
Monitoring?: boolean | null
[src]

Indicates whether monitoring is enabled.

§
Placement?: Placement | null
[src]

The placement information for the instance.

§
PrivateIpAddress?: string | null
[src]

[EC2-VPC] An available IP address from the IP address range of the subnet.

§
SubnetId?: string | null
[src]

[EC2-VPC] The ID of the subnet in which to launch the instance.

§
UserData?: UserData | null
[src]

The Base64-encoded user data to make available to the instance.