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

CpuOptionsRequest

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

The CPU options for the instance. Both the core count and threads per core must be specified in the request.

interface CpuOptionsRequest {
CoreCount?: number | null;
ThreadsPerCore?: number | null;
}

§Properties

§
CoreCount?: number | null
[src]

The number of CPU cores for the instance.

§
ThreadsPerCore?: number | null
[src]

The number of threads per CPU core. To disable multithreading for the instance, specify a value of 1. Otherwise, specify the default value of 2.