Values.QPluginCardInputSourceThe input shape for defining a plugin card in an Amazon Q App.
type nonrec t = {title : Title.t;The title or label of the plugin card.
*)id : UUID.t;The unique identifier of the plugin card.
*)type_ : CardType.t;The type of the card.
*)prompt : Prompt.t;The prompt or instructions displayed for the plugin card.
*)pluginId : PluginId.t;The unique identifier of the plugin used by the card.
*)actionIdentifier : ActionIdentifier.t option;The action identifier of the action to be performed by the plugin card.
*)}val make :
?actionIdentifier:??? ->
title:Title.t ->
id:UUID.t ->
type_:CardType.t ->
prompt:Prompt.t ->
pluginId:PluginId.t ->
unit ->
t