truffle-ts API reference - v0.4.2
    Preparing search index...

    Interface FilterOptions

    Numeric/categorical filters applied to instance types, a subset of the Go FilterOptions (the live-only IncludeAZs/Verbose knobs are dropped). Any zero/empty field disables that filter. Exact* flags switch a "minimum" filter to an "equals" filter.

    interface FilterOptions {
        architecture?: "" | Architecture;
        exactCores?: boolean;
        exactMemory?: boolean;
        exactVcpus?: boolean;
        instanceFamily?: string;
        minMemoryGiB?: number;
        minPhysicalCores?: number;
        minVcpus?: number;
        nestedVirt?: boolean;
    }
    Index
    architecture?: "" | Architecture
    exactCores?: boolean
    exactMemory?: boolean
    exactVcpus?: boolean
    instanceFamily?: string

    Restrict to a family prefix, e.g. "m6i"; empty matches all.

    minMemoryGiB?: number
    minPhysicalCores?: number
    minVcpus?: number
    nestedVirt?: boolean