Module Values.UpdateChatResponseConfigurationRequestSource

Updates an existing chat response configuration in an Amazon Q Business application. This operation allows administrators to modify configuration settings, display name, and response parameters to refine how the system generates responses.

Sourcetype nonrec t = {
  1. applicationId : ApplicationId.t;
    (*

    The unique identifier of the Amazon Q Business application containing the chat response configuration to update.

    *)
  2. chatResponseConfigurationId : ChatResponseConfigurationId.t;
    (*

    The unique identifier of the chat response configuration to update within the specified application.

    *)
  3. displayName : DisplayName.t option;
    (*

    The new human-readable name to assign to the chat response configuration, making it easier to identify among multiple configurations.

    *)
  4. responseConfigurations : ResponseConfigurations.t;
    (*

    The updated collection of response configuration settings that define how Amazon Q Business generates and formats responses to user queries.

    *)
  5. clientToken : String_.t option;
    (*

    A unique, case-sensitive identifier to ensure idempotency of the request. This helps prevent the same update from being processed multiple times if retries occur.

    *)
}
Sourceval context_ : string
Sourceval make : ?displayName:??? -> ?clientToken:??? -> applicationId:ApplicationId.t -> chatResponseConfigurationId:ChatResponseConfigurationId.t -> responseConfigurations:ResponseConfigurations.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `Enum of string ] * [> `Structure of (string * [> `Structure of (string * [> `String of Instruction.t ]) list ]) list ]) list | `String of ApplicationId.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