Module Values.ExperiencesSummarySource

Summary information for your Amazon Kendra experience. You can create an Amazon Kendra experience such as a search application. For more information on creating a search application experience, see Building a search experience with no code.

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

    The name of your Amazon Kendra experience.

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

    The identifier of your Amazon Kendra experience.

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

    The Unix timestamp when your Amazon Kendra experience was created.

    *)
  4. status : ExperienceStatus.t option;
    (*

    The processing status of your Amazon Kendra experience.

    *)
  5. endpoints : ExperienceEndpoints.t option;
    (*

    The endpoint URLs for your Amazon Kendra experiences. The URLs are unique and fully hosted by Amazon Web Services.

    *)
}
Sourceval make : ?name:??? -> ?id:??? -> ?createdAt:??? -> ?status:??? -> ?endpoints:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of Endpoint.t ]) list ] list | `String of ExperienceName.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