![]() |
![]()
| ![]() |
![]()
NAMEPaws::Honeycode - Perl Interface to AWS Amazon Honeycode SYNOPSISuse Paws; my $obj = Paws->service('Honeycode'); my $res = $obj->Method( Arg1 => $val1, Arg2 => [ 'V1', 'V2' ], # if Arg3 is an object, the HashRef will be used as arguments to the constructor # of the arguments type Arg3 => { Att1 => 'Val1' }, # if Arg4 is an array of objects, the HashRefs will be passed as arguments to # the constructor of the arguments type Arg4 => [ { Att1 => 'Val1' }, { Att1 => 'Val2' } ], ); DESCRIPTIONAmazon Honeycode is a fully managed service that allows you to quickly build mobile and web apps for teams—without programming. Build Honeycode apps for managing almost anything, like projects, customers, operations, approvals, resources, and even your team. For the AWS API documentation, see <https://docs.aws.amazon.com/goto/WebAPI/honeycode-2020-03-01> METHODSBatchCreateTableRows
Each argument is described in detail in: Paws::Honeycode::BatchCreateTableRows Returns: a Paws::Honeycode::BatchCreateTableRowsResult instance The BatchCreateTableRows API allows you to create one or more rows at the end of a table in a workbook. The API allows you to specify the values to set in some or all of the columns in the new rows. If a column is not explicitly set in a specific row, then the column level formula specified in the table will be applied to the new row. If there is no column level formula but the last row of the table has a formula, then that formula will be copied down to the new row. If there is no column level formula and no formula in the last row of the table, then that column will be left blank for the new rows. BatchDeleteTableRows
Each argument is described in detail in: Paws::Honeycode::BatchDeleteTableRows Returns: a Paws::Honeycode::BatchDeleteTableRowsResult instance The BatchDeleteTableRows API allows you to delete one or more rows from a table in a workbook. You need to specify the ids of the rows that you want to delete from the table. BatchUpdateTableRows
Each argument is described in detail in: Paws::Honeycode::BatchUpdateTableRows Returns: a Paws::Honeycode::BatchUpdateTableRowsResult instance The BatchUpdateTableRows API allows you to update one or more rows in a table in a workbook. You can specify the values to set in some or all of the columns in the table for the specified rows. If a column is not explicitly specified in a particular row, then that column will not be updated for that row. To clear out the data in a specific cell, you need to set the value as an empty string (""). BatchUpsertTableRows
Each argument is described in detail in: Paws::Honeycode::BatchUpsertTableRows Returns: a Paws::Honeycode::BatchUpsertTableRowsResult instance The BatchUpsertTableRows API allows you to upsert one or more rows in a table. The upsert operation takes a filter expression as input and evaluates it to find matching rows on the destination table. If matching rows are found, it will update the cells in the matching rows to new values specified in the request. If no matching rows are found, a new row is added at the end of the table and the cells in that row are set to the new values specified in the request. You can specify the values to set in some or all of the columns in the table for the matching or newly appended rows. If a column is not explicitly specified for a particular row, then that column will not be updated for that row. To clear out the data in a specific cell, you need to set the value as an empty string (""). DescribeTableDataImportJobEach argument is described in detail in: Paws::Honeycode::DescribeTableDataImportJob Returns: a Paws::Honeycode::DescribeTableDataImportJobResult instance The DescribeTableDataImportJob API allows you to retrieve the status and details of a table data import job. GetScreenData
Each argument is described in detail in: Paws::Honeycode::GetScreenData Returns: a Paws::Honeycode::GetScreenDataResult instance The GetScreenData API allows retrieval of data from a screen in a Honeycode app. The API allows setting local variables in the screen to filter, sort or otherwise affect what will be displayed on the screen. InvokeScreenAutomation
Each argument is described in detail in: Paws::Honeycode::InvokeScreenAutomation Returns: a Paws::Honeycode::InvokeScreenAutomationResult instance The InvokeScreenAutomation API allows invoking an action defined in a screen in a Honeycode app. The API allows setting local variables, which can then be used in the automation being invoked. This allows automating the Honeycode app interactions to write, update or delete data in the workbook. ListTableColumns
Each argument is described in detail in: Paws::Honeycode::ListTableColumns Returns: a Paws::Honeycode::ListTableColumnsResult instance The ListTableColumns API allows you to retrieve a list of all the columns in a table in a workbook. ListTableRows
Each argument is described in detail in: Paws::Honeycode::ListTableRows Returns: a Paws::Honeycode::ListTableRowsResult instance The ListTableRows API allows you to retrieve a list of all the rows in a table in a workbook. ListTables
Each argument is described in detail in: Paws::Honeycode::ListTables Returns: a Paws::Honeycode::ListTablesResult instance The ListTables API allows you to retrieve a list of all the tables in a workbook. QueryTableRows
Each argument is described in detail in: Paws::Honeycode::QueryTableRows Returns: a Paws::Honeycode::QueryTableRowsResult instance The QueryTableRows API allows you to use a filter formula to query for specific rows in a table. StartTableDataImportJob
Each argument is described in detail in: Paws::Honeycode::StartTableDataImportJob Returns: a Paws::Honeycode::StartTableDataImportJobResult instance The StartTableDataImportJob API allows you to start an import job on a table. This API will only return the id of the job that was started. To find out the status of the import request, you need to call the DescribeTableDataImportJob API. PAGINATORSPaginator methods are helpers that repetively call methods that return partial results ListAllTableColumns(sub { },TableId => Str, WorkbookId => Str, [NextToken => Str])ListAllTableColumns(TableId => Str, WorkbookId => Str, [NextToken => Str])If passed a sub as first parameter, it will call the sub for each element found in : - tableColumns, passing the object as the first parameter, and the string 'tableColumns' as the second parameter If not, it will return a a Paws::Honeycode::ListTableColumnsResult instance with all the "param"s; from all the responses. Please take into account that this mode can potentially consume vasts ammounts of memory. ListAllTableRows(sub { },TableId => Str, WorkbookId => Str, [MaxResults => Int, NextToken => Str, RowIds => ArrayRef[Str|Undef]])ListAllTableRows(TableId => Str, WorkbookId => Str, [MaxResults => Int, NextToken => Str, RowIds => ArrayRef[Str|Undef]])If passed a sub as first parameter, it will call the sub for each element found in : - rows, passing the object as the first parameter, and the string 'rows' as the second parameter If not, it will return a a Paws::Honeycode::ListTableRowsResult instance with all the "param"s; from all the responses. Please take into account that this mode can potentially consume vasts ammounts of memory. ListAllTables(sub { },WorkbookId => Str, [MaxResults => Int, NextToken => Str])ListAllTables(WorkbookId => Str, [MaxResults => Int, NextToken => Str])If passed a sub as first parameter, it will call the sub for each element found in : - tables, passing the object as the first parameter, and the string 'tables' as the second parameter If not, it will return a a Paws::Honeycode::ListTablesResult instance with all the "param"s; from all the responses. Please take into account that this mode can potentially consume vasts ammounts of memory. QueryAllTableRows(sub { },FilterFormula => Paws::Honeycode::Filter, TableId => Str, WorkbookId => Str, [MaxResults => Int, NextToken => Str])QueryAllTableRows(FilterFormula => Paws::Honeycode::Filter, TableId => Str, WorkbookId => Str, [MaxResults => Int, NextToken => Str])If passed a sub as first parameter, it will call the sub for each element found in : - rows, passing the object as the first parameter, and the string 'rows' as the second parameter If not, it will return a a Paws::Honeycode::QueryTableRowsResult instance with all the "param"s; from all the responses. Please take into account that this mode can potentially consume vasts ammounts of memory. SEE ALSOThis service class forms part of Paws BUGS and CONTRIBUTIONSThe source code is located here: <https://github.com/pplu/aws-sdk-perl> Please report bugs to: <https://github.com/pplu/aws-sdk-perl/issues>
|