Module Values.ChatResponseConfigurationSource

Configuration details that define how Amazon Q Business generates and formats responses to user queries in chat interactions. This configuration allows administrators to customize response characteristics to meet specific organizational needs and communication standards.

Sourcetype nonrec t = {
  1. chatResponseConfigurationId : ChatResponseConfigurationId.t option;
    (*

    A unique identifier for your chat response configuration settings, used to reference and manage the configuration within the Amazon Q Business service.

    *)
  2. chatResponseConfigurationArn : ChatResponseConfigurationArn.t option;
    (*

    The Amazon Resource Name (ARN) of the chat response configuration, which uniquely identifies the resource across all Amazon Web Services services and accounts.

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

    A human-readable name for the chat response configuration, making it easier to identify and manage multiple configurations within an organization.

    *)
  4. responseConfigurationSummary : ResponseConfigurationSummary.t option;
    (*

    A summary of the response configuration settings, providing a concise overview of the key parameters that define how responses are generated and formatted.

    *)
  5. 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 in chat interactions.

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

    The timestamp indicating when the chat response configuration was initially created, useful for tracking the lifecycle of configuration resources.

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

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

    *)
}
Sourceval make : ?chatResponseConfigurationId:??? -> ?chatResponseConfigurationArn:??? -> ?displayName:??? -> ?responseConfigurationSummary:??? -> ?status:??? -> ?createdAt:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ChatResponseConfigurationId.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