Module Values.ChatResponseConfigurationDetailSource

Detailed information about a chat response configuration, including comprehensive settings and parameters that define how Amazon Q Business generates and formats responses.

Sourcetype nonrec t = {
  1. responseConfigurations : ResponseConfigurations.t option;
    (*

    A collection of specific response configuration settings that collectively define how responses are generated, formatted, and presented to users in chat interactions.

    *)
  2. responseConfigurationSummary : String_.t option;
    (*

    A summary of the response configuration details, providing a concise overview of the key parameters and settings that define the response generation behavior.

    *)
  3. status : ChatResponseConfigurationStatus.t option;
    (*

    The current status of the chat response configuration, indicating whether it is active, pending, or in another state that affects its availability for use.

    *)
  4. error : ErrorDetail.t option;
  5. updatedAt : Timestamp.t option;
    (*

    The timestamp indicating when the detailed chat response configuration was last modified, helping administrators track changes and maintain version awareness.

    *)
}
Sourceval make : ?responseConfigurations:??? -> ?responseConfigurationSummary:??? -> ?status:??? -> ?error:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `Enum of string ] * [> `Structure of (string * [> `Structure of (string * [> `String of Instruction.t ]) list ]) list ]) list | `String of String_.t | `Structure of (string * [> `Enum of string | `String of ErrorMessage.t ]) list | `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