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

AutoTuneOptions

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

The Auto-Tune options: the Auto-Tune desired state for the domain, rollback state when disabling Auto-Tune options and list of maintenance schedules.

interface AutoTuneOptions {
DesiredState?: AutoTuneDesiredState | null;
MaintenanceSchedules?: AutoTuneMaintenanceSchedule[] | null;
RollbackOnDisable?: RollbackOnDisable | null;
}

§Properties

§
DesiredState?: AutoTuneDesiredState | null
[src]

The Auto-Tune desired state. Valid values are ENABLED and DISABLED.

§
MaintenanceSchedules?: AutoTuneMaintenanceSchedule[] | null
[src]

A list of maintenance schedules. See Auto-Tune for Amazon OpenSearch Service for more information.

§
RollbackOnDisable?: RollbackOnDisable | null
[src]

The rollback state while disabling Auto-Tune for the domain. Valid values are NO_ROLLBACK and DEFAULT_ROLLBACK.