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

ModifyHostsRequest

import type { ModifyHostsRequest } from "https://aws-api.deno.dev/v0.3/services/ec2.ts?docs=full";
interface ModifyHostsRequest {
AutoPlacement?: AutoPlacement | null;
HostIds: string[];
HostRecovery?: HostRecovery | null;
InstanceFamily?: string | null;
InstanceType?: string | null;
}

§Properties

§
AutoPlacement?: AutoPlacement | null
[src]

Specify whether to enable or disable auto-placement.

§
HostIds: string[]
[src]

The IDs of the Dedicated Hosts to modify.

§
HostRecovery?: HostRecovery | null
[src]

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

§
InstanceFamily?: string | null
[src]

Specifies the instance family to be supported by the Dedicated Host. Specify this parameter to modify a Dedicated Host to support multiple instance types within its current instance family.

If you want to modify a Dedicated Host 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 Host. Specify this parameter to modify a Dedicated Host to support only a specific instance type.

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