Module Values.FileUploadCardSource

A card in an Amazon Q App that allows the user to upload a file.

Sourcetype nonrec t = {
  1. id : UUID.t option;
    (*

    The unique identifier of the file upload card.

    *)
  2. title : Title.t option;
    (*

    The title of the file upload card.

    *)
  3. dependencies : DependencyList.t option;
    (*

    Any dependencies or requirements for the file upload card.

    *)
  4. type_ : CardType.t option;
    (*

    The type of the card.

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

    The name of the file being uploaded.

    *)
  6. fileId : String_.t option;
    (*

    The unique identifier of the file associated with the card.

    *)
  7. allowOverride : Boolean.t option;
    (*

    A flag indicating if the user can override the default file for the upload card.

    *)
}
Sourceval make : ?id:??? -> ?title:??? -> ?dependencies:??? -> ?type_:??? -> ?filename:??? -> ?fileId:??? -> ?allowOverride:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `List of [> `String of String_.t ] list | `String of UUID.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