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

ModifyClusterMaintenanceMessage

import type { ModifyClusterMaintenanceMessage } from "https://aws-api.deno.dev/v0.3/services/redshift.ts?docs=full";
interface ModifyClusterMaintenanceMessage {
ClusterIdentifier: string;
DeferMaintenance?: boolean | null;
DeferMaintenanceDuration?: number | null;
DeferMaintenanceEndTime?: Date | number | null;
DeferMaintenanceIdentifier?: string | null;
DeferMaintenanceStartTime?: Date | number | null;
}

§Properties

§
ClusterIdentifier: string
[src]

A unique identifier for the cluster.

§
DeferMaintenance?: boolean | null
[src]

A boolean indicating whether to enable the deferred maintenance window.

§
DeferMaintenanceDuration?: number | null
[src]

An integer indicating the duration of the maintenance window in days. If you specify a duration, you can't specify an end time. The duration must be 45 days or less.

§
DeferMaintenanceEndTime?: Date | number | null
[src]

A timestamp indicating end time for the deferred maintenance window. If you specify an end time, you can't specify a duration.

§
DeferMaintenanceIdentifier?: string | null
[src]

A unique identifier for the deferred maintenance window.

§
DeferMaintenanceStartTime?: Date | number | null
[src]

A timestamp indicating the start time for the deferred maintenance window.