Module Values.IndexConfigurationSummarySource

Summary information on the configuration of an index.

Sourcetype nonrec t = {
  1. name : IndexName.t option;
    (*

    The name of the index.

    *)
  2. id : IndexId.t option;
    (*

    A identifier for the index. Use this to identify the index when you are using APIs such as Query, DescribeIndex, UpdateIndex, and DeleteIndex.

    *)
  3. edition : IndexEdition.t option;
    (*

    Indicates whether the index is a Enterprise Edition index or a Developer Edition index.

    *)
  4. createdAt : Timestamp.t option;
    (*

    The Unix timestamp when the index was created.

    *)
  5. updatedAt : Timestamp.t option;
    (*

    The Unix timestamp when the index was last updated.

    *)
  6. status : IndexStatus.t option;
    (*

    The current status of the index. When the status is ACTIVE, the index is ready to search.

    *)
}
Sourceval make : ?name:??? -> ?id:??? -> ?edition:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of IndexName.t | `Timestamp of Timestamp.t ]) 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