Module Values.CardInputSource

The properties defining an input card in an Amazon Q App.

Sourcetype nonrec t = {
  1. textInput : TextInputCardInput.t option;
    (*

    A container for the properties of the text input card.

    *)
  2. qQuery : QQueryCardInput.t option;
    (*

    A container for the properties of the query input card.

    *)
  3. qPlugin : QPluginCardInput.t option;
    (*

    A container for the properties of the plugin input card.

    *)
  4. fileUpload : FileUploadCardInput.t option;
    (*

    A container for the properties of the file upload input card.

    *)
  5. formInput : FormInputCardInput.t option;
    (*

    A container for the properties of the form input card.

    *)
}
Sourceval make : ?textInput:??? -> ?qQuery:??? -> ?qPlugin:??? -> ?fileUpload:??? -> ?formInput:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * Awso.Botodata.value) list ]) 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