Module Values.WebExperienceSource

Provides information for an Amazon Q Business web experience.

Sourcetype nonrec t = {
  1. webExperienceId : WebExperienceId.t option;
    (*

    The identifier of your Amazon Q Business web experience.

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

    The Unix timestamp when the Amazon Q Business application was last updated.

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

    The Unix timestamp when your Amazon Q Business web experience was updated.

    *)
  4. defaultEndpoint : Url.t option;
    (*

    The endpoint URLs for your Amazon Q Business web experience. The URLs are unique and fully hosted by Amazon Web Services.

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

    The status of your Amazon Q Business web experience.

    *)
}
Sourceval make : ?webExperienceId:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?defaultEndpoint:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of WebExperienceId.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