Amazon Honeycode

2020/06/24 - Amazon Honeycode - 2 new api methods

Changes  Introducing Amazon Honeycode - a fully managed service that allows you to quickly build mobile and web apps for teams without programming.

GetScreenData (new) Link ¶

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.

See also: AWS API Documentation

Request Syntax

client.get_screen_data(
    workbookId='string',
    appId='string',
    screenId='string',
    variables={
        'string': {
            'rawValue': 'string'
        }
    },
    maxResults=123,
    nextToken='string'
)
type workbookId

string

param workbookId

[REQUIRED]

The ID of the workbook that contains the screen.

type appId

string

param appId

[REQUIRED]

The ID of the app that contains the screem.

type screenId

string

param screenId

[REQUIRED]

The ID of the screen.

type variables

dict

param variables

Variables are optional and are needed only if the screen requires them to render correctly. Variables are specified as a map where the key is the name of the variable as defined on the screen. The value is an object which currently has only one property, rawValue, which holds the value of the variable to be passed to the screen.

  • (string) --

    • (dict) --

      The input variables to the app to be used by the InvokeScreenAutomation action request.

      • rawValue (string) -- [REQUIRED]

        Raw value of the variable.

type maxResults

integer

param maxResults

The number of results to be returned on a single page. Specify a number between 1 and 100. The maximum value is 100.

This parameter is optional. If you don't specify this parameter, the default page size is 100.

type nextToken

string

param nextToken

This parameter is optional. If a nextToken is not specified, the API returns the first page of data.

Pagination tokens expire after 1 hour. If you use a token that was returned more than an hour back, the API will throw ValidationException.

rtype

dict

returns

Response Syntax

{
    'results': {
        'string': {
            'headers': [
                {
                    'name': 'string',
                    'format': 'AUTO'|'NUMBER'|'CURRENCY'|'DATE'|'TIME'|'DATE_TIME'|'PERCENTAGE'|'TEXT'|'ACCOUNTING'|'CONTACT'|'ROWLINK'
                },
            ],
            'rows': [
                {
                    'rowId': 'string',
                    'dataItems': [
                        {
                            'overrideFormat': 'AUTO'|'NUMBER'|'CURRENCY'|'DATE'|'TIME'|'DATE_TIME'|'PERCENTAGE'|'TEXT'|'ACCOUNTING'|'CONTACT'|'ROWLINK',
                            'rawValue': 'string',
                            'formattedValue': 'string'
                        },
                    ]
                },
            ]
        }
    },
    'workbookCursor': 123,
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    • results (dict) --

      A map of all the rows on the screen keyed by block name.

      • (string) --

        • (dict) --

          ResultSet contains the results of the request for a single block or list defined on the screen.

          • headers (list) --

            List of headers for all the data cells in the block. The header identifies the name and default format of the data cell. Data cells appear in the same order in all rows as defined in the header. The names and formats are not repeated in the rows. If a particular row does not have a value for a data cell, a blank value is used.

            For example, a task list that displays the task name, due date and assigned person might have headers [ { "name": "Task Name"}, {"name": "Due Date", "format": "DATE"}, {"name": "Assigned", "format": "CONTACT"} ]. Every row in the result will have the task name as the first item, due date as the second item and assigned person as the third item. If a particular task does not have a due date, that row will still have a blank value in the second element and the assigned person will still be in the third element.

            • (dict) --

              Metadata for column in the table.

              • name (string) --

                The name of the column.

              • format (string) --

                The format of the column.

          • rows (list) --

            List of rows returned by the request. Each row has a row Id and a list of data cells in that row. The data cells will be present in the same order as they are defined in the header.

            • (dict) --

              A single row in the ResultSet.

              • rowId (string) --

                The ID for a particular row.

              • dataItems (list) --

                List of all the data cells in a row.

                • (dict) --

                  The data in a particular data cell defined on the screen.

                  • overrideFormat (string) --

                    The overrideFormat is optional and is specified only if a particular row of data has a different format for the data than the default format defined on the screen or the table.

                  • rawValue (string) --

                    The raw value of the data. e.g. jsmith@example.com

                  • formattedValue (string) --

                    The formatted value of the data. e.g. John Smith.

    • workbookCursor (integer) --

      Indicates the cursor of the workbook at which the data returned by this workbook is read. Workbook cursor keeps increasing with every update and the increments are not sequential.

    • nextToken (string) --

      Provides the pagination token to load the next page if there are more results matching the request. If a pagination token is not present in the response, it means that all data matching the query has been loaded.

InvokeScreenAutomation (new) Link ¶

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.

See also: AWS API Documentation

Request Syntax

client.invoke_screen_automation(
    workbookId='string',
    appId='string',
    screenId='string',
    screenAutomationId='string',
    variables={
        'string': {
            'rawValue': 'string'
        }
    },
    rowId='string',
    clientRequestToken='string'
)
type workbookId

string

param workbookId

[REQUIRED]

The ID of the workbook that contains the screen automation.

type appId

string

param appId

[REQUIRED]

The ID of the app that contains the screen automation.

type screenId

string

param screenId

[REQUIRED]

The ID of the screen that contains the screen automation.

type screenAutomationId

string

param screenAutomationId

[REQUIRED]

The ID of the automation action to be performed.

type variables

dict

param variables

Variables are optional and are needed only if the screen requires them to render correctly. Variables are specified as a map where the key is the name of the variable as defined on the screen. The value is an object which currently has only one property, rawValue, which holds the value of the variable to be passed to the screen.

  • (string) --

    • (dict) --

      The input variables to the app to be used by the InvokeScreenAutomation action request.

      • rawValue (string) -- [REQUIRED]

        Raw value of the variable.

type rowId

string

param rowId

The row ID for the automation if the automation is defined inside a block with source or list.

type clientRequestToken

string

param clientRequestToken

The request token for performing the automation action. Request tokens help to identify duplicate requests. If a call times out or fails due to a transient error like a failed network connection, you can retry the call with the same request token. The service ensures that if the first call using that request token is successfully performed, the second call will return the response of the previous call rather than performing the action again.

Note that request tokens are valid only for a few minutes. You cannot use request tokens to dedupe requests spanning hours or days.

rtype

dict

returns

Response Syntax

{
    'workbookCursor': 123
}

Response Structure

  • (dict) --

    • workbookCursor (integer) --

      The updated workbook cursor after performing the automation action.