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

Configuration

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

A configuration specification to be used when provisioning an application. A configuration consists of a classification, properties, and optional nested configurations. A classification refers to an application-specific configuration file. Properties are the settings you want to change in that file.

interface Configuration {
classification: string;
configurations?: Configuration[] | null;
properties?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
classification: string
[src]

The classification within a configuration.

§
configurations?: Configuration[] | null
[src]

A list of additional configurations to apply within a configuration object.

§
properties?: {
[key: string]: string | null | undefined;
}
| null
[src]

A set of properties specified within a configuration classification.