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

OptionStatus

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

The status of domain configuration option.

interface OptionStatus {
CreationDate: Date | number;
PendingDeletion?: boolean | null;
State: OptionState;
UpdateDate: Date | number;
UpdateVersion?: number | null;
}

§Properties

§
CreationDate: Date | number
[src]

A timestamp for when this option was created.

§
PendingDeletion?: boolean | null
[src]

Indicates that the option will be deleted once processing is complete.

§

The state of processing a change to an option. Possible values:

  • RequiresIndexDocuments: the option's latest value will not be deployed until "IndexDocuments" has been called and indexing is complete.
  • Processing: the option's latest value is in the process of being activated.
  • Active: the option's latest value is completely deployed.
  • FailedToValidate: the option value is not compatible with the domain's data and cannot be used to index the data. You must either modify the option value or update or remove the incompatible documents.
§
UpdateDate: Date | number
[src]

A timestamp for when this option was last updated.

§
UpdateVersion?: number | null
[src]

A unique integer that indicates when this option was last updated.