There are a number of input widgets you can use when defining your inputs. For more details about the configurable options of each of these individual widgets, use hover-over context help in your IDE when writing your package.
inputs{["var_name_a"]=newAPITokenSelector{title="API Token Selector (title)"required=falsehelpText="Example for API token selector widget (helpText)."showAll=true}}
inputs{["var_name_d"]=newConnectionSelector{title="Connection Selector single (title)"required=falsehelpText="Example for connection selector widget (helpText)."multiSelect=falselimitToConnectors="snowflake"}["var_name_e"]=newConnectionSelector{title="Connection Selector multi (title)"required=falsehelpText="Example for connection selector widget (helpText)."multiSelect=truelimitToConnectors={"snowflake""bigquery"}}}
inputs{["var_name_f"]=newConnectorTypeSelector{title="Connector Type Selector (title)"required=falsehelpText="Example for connector type selector widget (helpText)."width=8}}
inputs{["var_name_g"]=newCredentialInput{title="Credential (title)"credType="atlan-connectors-snowflake"// helpText="Example for connector type selector widget (helpText)."allowTestAuthentication=true// }}
inputs{["var_name_i"]=newDropDown{title="Drop Down single (title)"required=falsehelpText="Example for drop down widget (restricted to a single) (helpText)."possibleValues{["ONE"]="One"["TWO"]="Two"["THREE"]="Three"}multiSelect=falsewidth=4}["var_name_j"]=newDropDown{title="Drop Down multi (title)"required=falsehelpText="Example for drop down widget (allowing multiple) (helpText)."possibleValues{["ONE"]="One"["TWO"]="Two"["THREE"]="Three"}multiSelect=truewidth=4}}
inputs{["var_name_n"]=newSingleGroup{title="Single Group (title)"required=falsehelpText="Example for single group widget (helpText)."width=4}["var_name_o"]=newMultipleGroups{title="Multiple Groups (title)"required=falsehelpText="Example for multiple groups widget (helpText)."width=4}}
inputs{["var_name_p"]=newSingleUser{title="Single User (title)"required=falsehelpText="Example for single user widget (helpText)."width=4}["var_name_q"]=newMultipleUsers{title="Multiple Users (title)"required=falsehelpText="Example for multiple users widget (helpText)."width=4}}
inputs{["var_name_t"]=newRadio{title="Radio (title)"required=falsehelpText="Example for radio widget (helpText)."possibleValues{["ONE"]="One (value)"["TWO"]="Two (value)"["THREE"]="Three (value)"}default="TWO"}}