Module Values.QPluginCardInputSource

The input shape for defining a plugin card in an Amazon Q App.

Sourcetype nonrec t = {
  1. title : Title.t;
    (*

    The title or label of the plugin card.

    *)
  2. id : UUID.t;
    (*

    The unique identifier of the plugin card.

    *)
  3. type_ : CardType.t;
    (*

    The type of the card.

    *)
  4. prompt : Prompt.t;
    (*

    The prompt or instructions displayed for the plugin card.

    *)
  5. pluginId : PluginId.t;
    (*

    The unique identifier of the plugin used by the card.

    *)
  6. actionIdentifier : ActionIdentifier.t option;
    (*

    The action identifier of the action to be performed by the plugin card.

    *)
}
Sourceval context_ : string
Sourceval make : ?actionIdentifier:??? -> title:Title.t -> id:UUID.t -> type_:CardType.t -> prompt:Prompt.t -> pluginId:PluginId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Title.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