Module Values.DomainStatusSource

The current status of the search domain.

Sourcetype nonrec t = {
  1. domainId : DomainId.t option;
  2. domainName : DomainName.t option;
  3. aRN : ARN.t option;
  4. created : Boolean.t option;
    (*

    True if the search domain is created. It can take several minutes to initialize a domain when CreateDomain is called. Newly created search domains are returned from DescribeDomains with a false value for Created until domain creation is complete.

    *)
  5. deleted : Boolean.t option;
    (*

    True if the search domain has been deleted. The system must clean up resources dedicated to the search domain when DeleteDomain is called. Newly deleted search domains are returned from DescribeDomains with a true value for IsDeleted for several minutes until resource cleanup is complete.

    *)
  6. docService : ServiceEndpoint.t option;
    (*

    The service endpoint for updating documents in a search domain.

    *)
  7. searchService : ServiceEndpoint.t option;
    (*

    The service endpoint for requesting search results from a search domain.

    *)
  8. requiresIndexDocuments : Boolean.t option;
    (*

    True if IndexDocuments needs to be called to activate the current domain configuration.

    *)
  9. processing : Boolean.t option;
    (*

    True if processing is being done to activate the current domain configuration.

    *)
  10. searchInstanceType : SearchInstanceType.t option;
    (*

    The instance type that is being used to process search requests.

    *)
  11. searchPartitionCount : PartitionCount.t option;
    (*

    The number of partitions across which the search index is spread.

    *)
  12. searchInstanceCount : InstanceCount.t option;
    (*

    The number of search instances that are available to process search requests.

    *)
  13. limits : Limits.t option;
}
Sourceval make : ?domainId:??? -> ?domainName:??? -> ?aRN:??? -> ?created:??? -> ?deleted:??? -> ?docService:??? -> ?searchService:??? -> ?requiresIndexDocuments:??? -> ?processing:??? -> ?searchInstanceType:??? -> ?searchPartitionCount:??? -> ?searchInstanceCount:??? -> ?limits:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of PartitionCount.t | `String of DomainId.t | `Structure of (string * [> `Integer of MaximumReplicationCount.t | `String of ServiceUrl.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t