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

StorageOptimizer

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

A structure describing the configuration and details of a storage optimizer.

interface StorageOptimizer {
Config?: {
[key: string]: string | null | undefined;
}
| null;
ErrorMessage?: string | null;
LastRunDetails?: string | null;
StorageOptimizerType?: OptimizerType | null;
Warnings?: string | null;
}

§Properties

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

A map of the storage optimizer configuration. Currently contains only one key-value pair: is_enabled indicates true or false for acceleration.

§
ErrorMessage?: string | null
[src]

A message that contains information about any error (if present).

When an acceleration result has an enabled status, the error message is empty.

When an acceleration result has a disabled status, the message describes an error or simply indicates "disabled by the user".

§
LastRunDetails?: string | null
[src]

When an acceleration result has an enabled status, contains the details of the last job run.

§
StorageOptimizerType?: OptimizerType | null
[src]

The specific type of storage optimizer. The supported value is compaction.

§
Warnings?: string | null
[src]

A message that contains information about any warnings (if present).