Is there a way to bind the table in java azure functions similar to c#
[FunctionName("TableInput")]
public static void Run(
[QueueTrigger("table-items")] string input,
[Table("MyTable", "Http", "{queueTrigger}", Connection =
"StorageConnectionAppSetting")] MyPoco poco,
TraceWriter log)
{
...
}
Something like this? I dont want to use the azure storage library to manually fetch the table.