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

TotalResourceUtilization

import type { TotalResourceUtilization } from "https://aws-api.deno.dev/v0.4/services/emrserverless.ts?docs=full";

The aggregate vCPU, memory, and storage resources used from the time job start executing till the time job is terminated, rounded up to the nearest second.

interface TotalResourceUtilization {
memoryGBHour?: number | null;
storageGBHour?: number | null;
vCPUHour?: number | null;
}

§Properties

§
memoryGBHour?: number | null
[src]

The aggregated memory used per hour from the time job start executing till the time job is terminated.

§
storageGBHour?: number | null
[src]

The aggregated storage used per hour from the time job start executing till the time job is terminated.

§
vCPUHour?: number | null
[src]

The aggregated vCPU used per hour from the time job start executing till the time job is terminated.