Values.FormInputCardInputSourceRepresents a form input card for an Amazon Q App.
type nonrec t = {title : Title.t;The title or label of the form input card.
*)id : UUID.t;The unique identifier of the form input card.
*)type_ : CardType.t;The type of the card.
*)metadata : FormInputCardMetadata.t;The metadata that defines the form input card data.
*)computeMode : InputCardComputeMode.t option;The compute mode of the form input card. This property determines whether individual participants of a data collection session can submit multiple response or one response. A compute mode of append shall allow participants to submit the same form multiple times with different values. A compute mode of replacecode> shall overwrite the current value for each participant.
*)}val make :
?computeMode:??? ->
title:Title.t ->
id:UUID.t ->
type_:CardType.t ->
metadata:FormInputCardMetadata.t ->
unit ->
t