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

OptionState

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

The state of processing a change to an option. One of:

  • 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 fully 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.
type OptionState =
| "RequiresIndexDocuments"
| "Processing"
| "Active"
| "FailedToValidate"

§Type

§
"RequiresIndexDocuments" | "Processing" | "Active" | "FailedToValidate" | cmnP.UnexpectedEnumValue
[src]