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

AutoStopConfig

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

The configuration for an application to automatically stop after a certain amount of time being idle.

interface AutoStopConfig {
enabled?: boolean | null;
idleTimeoutMinutes?: number | null;
}

§Properties

§
enabled?: boolean | null
[src]

Enables the application to automatically stop after a certain amount of time being idle. Defaults to true.

§
idleTimeoutMinutes?: number | null
[src]

The amount of idle time in minutes after which your application will automatically stop. Defaults to 15 minutes.