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

AllocateHostsRequest

import type { AllocateHostsRequest } from "https://aws-api.deno.dev/v0.3/services/ec2.ts?docs=full";
interface AllocateHostsRequest {
AutoPlacement?: AutoPlacement | null;
AvailabilityZone: string;
ClientToken?: string | null;
HostRecovery?: HostRecovery | null;
InstanceFamily?: string | null;
InstanceType?: string | null;
Quantity: number;
TagSpecifications?: TagSpecification[] | null;
}

§Properties

§
AutoPlacement?: AutoPlacement | null
[src]

Indicates whether the host accepts any untargeted instance launches that match its instance type configuration, or if it only accepts Host tenancy instance launches that specify its unique host ID. For more information, see Understanding auto-placement and affinity in the Amazon EC2 User Guide.

Default: on

§
AvailabilityZone: string
[src]

The Availability Zone in which to allocate the Dedicated Host.

§
ClientToken?: string | null
[src]

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring Idempotency.

§
HostRecovery?: HostRecovery | null
[src]

Indicates whether to enable or disable host recovery for the Dedicated Host. Host recovery is disabled by default. For more information, see Host recovery in the Amazon EC2 User Guide.

Default: off

§
InstanceFamily?: string | null
[src]

Specifies the instance family to be supported by the Dedicated Hosts. If you specify an instance family, the Dedicated Hosts support multiple instance types within that instance family.

If you want the Dedicated Hosts to support a specific instance type only, omit this parameter and specify InstanceType instead. You cannot specify InstanceFamily and InstanceType in the same request.

§
InstanceType?: string | null
[src]

Specifies the instance type to be supported by the Dedicated Hosts. If you specify an instance type, the Dedicated Hosts support instances of the specified instance type only.

If you want the Dedicated Hosts to support multiple instance types in a specific instance family, omit this parameter and specify InstanceFamily instead. You cannot specify InstanceType and InstanceFamily in the same request.

§
Quantity: number
[src]

The number of Dedicated Hosts to allocate to your account with these parameters.

§
TagSpecifications?: TagSpecification[] | null
[src]

The tags to apply to the Dedicated Host during creation.