Module Values.IndexSource

Summary information for your Amazon Q Business index.

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

    The name of the index.

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

    The identifier for the index.

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

    The Unix timestamp when the index was created.

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

    The Unix timestamp when the index was last updated.

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

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

    *)
}
Sourceval make : ?displayName:??? -> ?indexId:??? -> ?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