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

ServiceSoftwareOptions

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

The current options of an domain service software options.

interface ServiceSoftwareOptions {
AutomatedUpdateDate?: Date | number | null;
Cancellable?: boolean | null;
CurrentVersion?: string | null;
Description?: string | null;
NewVersion?: string | null;
OptionalDeployment?: boolean | null;
UpdateAvailable?: boolean | null;
UpdateStatus?: DeploymentStatus | null;
}

§Properties

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

The timestamp, in Epoch time, until which you can manually request a service software update. After this date, we automatically update your service software.

§
Cancellable?: boolean | null
[src]

True if you're able to cancel your service software version update. False if you can't cancel your service software update.

§
CurrentVersion?: string | null
[src]

The current service software version present on the domain.

§
Description?: string | null
[src]

The description of the UpdateStatus.

§
NewVersion?: string | null
[src]

The new service software version if one is available.

§
OptionalDeployment?: boolean | null
[src]

True if a service software is never automatically updated. False if a service software is automatically updated after AutomatedUpdateDate.

§
UpdateAvailable?: boolean | null
[src]

True if you're able to update your service software version. False if you can't update your service software version.

§
UpdateStatus?: DeploymentStatus | null
[src]

The status of your service software update. This field can take the following values: ELIGIBLE, PENDING_UPDATE, IN_PROGRESS, COMPLETED, and NOT_ELIGIBLE.