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

VCpuInfo

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

Describes the vCPU configurations for the instance type.

interface VCpuInfo {
DefaultCores?: number | null;
DefaultThreadsPerCore?: number | null;
DefaultVCpus?: number | null;
ValidCores: number[];
ValidThreadsPerCore: number[];
}

§Properties

§
DefaultCores?: number | null
[src]

The default number of cores for the instance type.

§
DefaultThreadsPerCore?: number | null
[src]

The default number of threads per core for the instance type.

§
DefaultVCpus?: number | null
[src]

The default number of vCPUs for the instance type.

§
ValidCores: number[]
[src]

The valid number of cores that can be configured for the instance type.

§
ValidThreadsPerCore: number[]
[src]

The valid number of threads per core that can be configured for the instance type.