libZSservicesZSamazonka-honeycodeZSamazonka-honeycode
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.HoneyCode

Description

Derived from API version 2020-03-01 of the AWS service descriptions, licensed under Apache 2.0.

Amazon 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.

Synopsis

Service Configuration

defaultService :: Service Source #

API version 2020-03-01 of the Amazon Honeycode SDK configuration.

Errors

Error matchers are designed for use with the functions provided by Control.Exception.Lens. This allows catching (and rethrowing) service specific errors returned by HoneyCode.

ValidationException

_ValidationException :: AsError a => Getting (First ServiceError) a ServiceError Source #

Request is invalid. The message in the response contains details on why the request is invalid.

AccessDeniedException

_AccessDeniedException :: AsError a => Getting (First ServiceError) a ServiceError Source #

You do not have sufficient access to perform this action. Check that the workbook is owned by you and your IAM policy allows access to the resource in the request.

AutomationExecutionTimeoutException

ServiceQuotaExceededException

_ServiceQuotaExceededException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The request caused service quota to be breached.

ThrottlingException

_ThrottlingException :: AsError a => Getting (First ServiceError) a ServiceError Source #

Tps(transactions per second) rate reached.

AutomationExecutionException

_AutomationExecutionException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The automation execution did not end successfully.

RequestTimeoutException

InternalServerException

_InternalServerException :: AsError a => Getting (First ServiceError) a ServiceError Source #

There were unexpected errors from the server.

ServiceUnavailableException

ResourceNotFoundException

_ResourceNotFoundException :: AsError a => Getting (First ServiceError) a ServiceError Source #

A Workbook, Table, App, Screen or Screen Automation was not found with the given ID.

Waiters

Waiters poll by repeatedly sending a request until some remote success condition configured by the Wait specification is fulfilled. The Wait specification determines how many attempts should be made, in addition to delay and retry strategies.

Operations

Some AWS operations return results that are incomplete and require subsequent requests in order to obtain the entire result set. The process of sending subsequent requests to continue where a previous request left off is called pagination. For example, the ListObjects operation of Amazon S3 returns up to 1000 objects at a time, and you must send subsequent requests with the appropriate Marker in order to retrieve the next page of results.

Operations that have an AWSPager instance can transparently perform subsequent requests, correctly setting Markers and other request facets to iterate through the entire result set of a truncated API operation. Operations which support this have an additional note in the documentation.

Many operations have the ability to filter results on the server side. See the individual operation parameters for details.

BatchDeleteTableRows

data BatchDeleteTableRows Source #

See: newBatchDeleteTableRows smart constructor.

Instances

Instances details
Eq BatchDeleteTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchDeleteTableRows

Read BatchDeleteTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchDeleteTableRows

Show BatchDeleteTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchDeleteTableRows

Generic BatchDeleteTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchDeleteTableRows

Associated Types

type Rep BatchDeleteTableRows :: Type -> Type #

NFData BatchDeleteTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchDeleteTableRows

Methods

rnf :: BatchDeleteTableRows -> () #

Hashable BatchDeleteTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchDeleteTableRows

ToJSON BatchDeleteTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchDeleteTableRows

AWSRequest BatchDeleteTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchDeleteTableRows

Associated Types

type AWSResponse BatchDeleteTableRows #

ToHeaders BatchDeleteTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchDeleteTableRows

ToPath BatchDeleteTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchDeleteTableRows

ToQuery BatchDeleteTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchDeleteTableRows

type Rep BatchDeleteTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchDeleteTableRows

type Rep BatchDeleteTableRows = D1 ('MetaData "BatchDeleteTableRows" "Amazonka.HoneyCode.BatchDeleteTableRows" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "BatchDeleteTableRows'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "clientRequestToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "workbookId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "tableId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "rowIds") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (NonEmpty Text)))))
type AWSResponse BatchDeleteTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchDeleteTableRows

newBatchDeleteTableRows Source #

Create a value of BatchDeleteTableRows with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:clientRequestToken:BatchDeleteTableRows', batchDeleteTableRows_clientRequestToken - The request token for performing the delete 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 not perform 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.

$sel:workbookId:BatchDeleteTableRows', batchDeleteTableRows_workbookId - The ID of the workbook where the rows are being deleted.

If a workbook with the specified id could not be found, this API throws ResourceNotFoundException.

$sel:tableId:BatchDeleteTableRows', batchDeleteTableRows_tableId - The ID of the table where the rows are being deleted.

If a table with the specified id could not be found, this API throws ResourceNotFoundException.

$sel:rowIds:BatchDeleteTableRows', batchDeleteTableRows_rowIds - The list of row ids to delete from the table. You need to specify at least one row id in this list.

Note that if one of the row ids provided in the request does not exist in the table, then the request fails and no rows are deleted from the table.

data BatchDeleteTableRowsResponse Source #

See: newBatchDeleteTableRowsResponse smart constructor.

Instances

Instances details
Eq BatchDeleteTableRowsResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchDeleteTableRows

Read BatchDeleteTableRowsResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchDeleteTableRows

Show BatchDeleteTableRowsResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchDeleteTableRows

Generic BatchDeleteTableRowsResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchDeleteTableRows

Associated Types

type Rep BatchDeleteTableRowsResponse :: Type -> Type #

NFData BatchDeleteTableRowsResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchDeleteTableRows

type Rep BatchDeleteTableRowsResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchDeleteTableRows

type Rep BatchDeleteTableRowsResponse = D1 ('MetaData "BatchDeleteTableRowsResponse" "Amazonka.HoneyCode.BatchDeleteTableRows" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "BatchDeleteTableRowsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "failedBatchItems") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [FailedBatchItem])) :*: (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "workbookCursor") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Integer))))

newBatchDeleteTableRowsResponse Source #

Create a value of BatchDeleteTableRowsResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:failedBatchItems:BatchDeleteTableRowsResponse', batchDeleteTableRowsResponse_failedBatchItems - The list of row ids in the request that could not be deleted from the table. Each element in this list contains one row id from the request that could not be deleted along with the reason why that item could not be deleted.

$sel:httpStatus:BatchDeleteTableRowsResponse', batchDeleteTableRowsResponse_httpStatus - The response's http status code.

$sel:workbookCursor:BatchDeleteTableRowsResponse', batchDeleteTableRowsResponse_workbookCursor - The updated workbook cursor after deleting the rows from the table.

BatchUpdateTableRows

data BatchUpdateTableRows Source #

See: newBatchUpdateTableRows smart constructor.

Instances

Instances details
Eq BatchUpdateTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchUpdateTableRows

Show BatchUpdateTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchUpdateTableRows

Generic BatchUpdateTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchUpdateTableRows

Associated Types

type Rep BatchUpdateTableRows :: Type -> Type #

NFData BatchUpdateTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchUpdateTableRows

Methods

rnf :: BatchUpdateTableRows -> () #

Hashable BatchUpdateTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchUpdateTableRows

ToJSON BatchUpdateTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchUpdateTableRows

AWSRequest BatchUpdateTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchUpdateTableRows

Associated Types

type AWSResponse BatchUpdateTableRows #

ToHeaders BatchUpdateTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchUpdateTableRows

ToPath BatchUpdateTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchUpdateTableRows

ToQuery BatchUpdateTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchUpdateTableRows

type Rep BatchUpdateTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchUpdateTableRows

type Rep BatchUpdateTableRows = D1 ('MetaData "BatchUpdateTableRows" "Amazonka.HoneyCode.BatchUpdateTableRows" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "BatchUpdateTableRows'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "clientRequestToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "workbookId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "tableId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "rowsToUpdate") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (NonEmpty UpdateRowData)))))
type AWSResponse BatchUpdateTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchUpdateTableRows

newBatchUpdateTableRows Source #

Create a value of BatchUpdateTableRows with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:clientRequestToken:BatchUpdateTableRows', batchUpdateTableRows_clientRequestToken - The request token for performing the update 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 not perform 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.

$sel:workbookId:BatchUpdateTableRows', batchUpdateTableRows_workbookId - The ID of the workbook where the rows are being updated.

If a workbook with the specified id could not be found, this API throws ResourceNotFoundException.

$sel:tableId:BatchUpdateTableRows', batchUpdateTableRows_tableId - The ID of the table where the rows are being updated.

If a table with the specified id could not be found, this API throws ResourceNotFoundException.

$sel:rowsToUpdate:BatchUpdateTableRows', batchUpdateTableRows_rowsToUpdate - The list of rows to update in the table. Each item in this list needs to contain the row id to update along with the map of column id to cell values for each column in that row that needs to be updated. You need to specify at least one row in this list, and for each row, you need to specify at least one column to update.

Note that if one of the row or column ids in the request does not exist in the table, then the request fails and no updates are made to the table.

data BatchUpdateTableRowsResponse Source #

See: newBatchUpdateTableRowsResponse smart constructor.

Instances

Instances details
Eq BatchUpdateTableRowsResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchUpdateTableRows

Read BatchUpdateTableRowsResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchUpdateTableRows

Show BatchUpdateTableRowsResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchUpdateTableRows

Generic BatchUpdateTableRowsResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchUpdateTableRows

Associated Types

type Rep BatchUpdateTableRowsResponse :: Type -> Type #

NFData BatchUpdateTableRowsResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchUpdateTableRows

type Rep BatchUpdateTableRowsResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchUpdateTableRows

type Rep BatchUpdateTableRowsResponse = D1 ('MetaData "BatchUpdateTableRowsResponse" "Amazonka.HoneyCode.BatchUpdateTableRows" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "BatchUpdateTableRowsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "failedBatchItems") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [FailedBatchItem])) :*: (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "workbookCursor") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Integer))))

newBatchUpdateTableRowsResponse Source #

Create a value of BatchUpdateTableRowsResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:failedBatchItems:BatchUpdateTableRowsResponse', batchUpdateTableRowsResponse_failedBatchItems - The list of batch items in the request that could not be updated in the table. Each element in this list contains one item from the request that could not be updated in the table along with the reason why that item could not be updated.

$sel:httpStatus:BatchUpdateTableRowsResponse', batchUpdateTableRowsResponse_httpStatus - The response's http status code.

$sel:workbookCursor:BatchUpdateTableRowsResponse', batchUpdateTableRowsResponse_workbookCursor - The updated workbook cursor after adding the new rows at the end of the table.

ListTableRows (Paginated)

data ListTableRows Source #

See: newListTableRows smart constructor.

Instances

Instances details
Eq ListTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTableRows

Read ListTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTableRows

Show ListTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTableRows

Generic ListTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTableRows

Associated Types

type Rep ListTableRows :: Type -> Type #

NFData ListTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTableRows

Methods

rnf :: ListTableRows -> () #

Hashable ListTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTableRows

ToJSON ListTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTableRows

AWSPager ListTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTableRows

AWSRequest ListTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTableRows

Associated Types

type AWSResponse ListTableRows #

ToHeaders ListTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTableRows

ToPath ListTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTableRows

ToQuery ListTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTableRows

type Rep ListTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTableRows

type Rep ListTableRows = D1 ('MetaData "ListTableRows" "Amazonka.HoneyCode.ListTableRows" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "ListTableRows'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "rowIds") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (NonEmpty Text))) :*: S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: (S1 ('MetaSel ('Just "workbookId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "tableId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))))
type AWSResponse ListTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTableRows

newListTableRows Source #

Create a value of ListTableRows with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:rowIds:ListTableRows', listTableRows_rowIds - This parameter is optional. If one or more row ids are specified in this list, then only the specified row ids are returned in the result. If no row ids are specified here, then all the rows in the table are returned.

$sel:nextToken:ListTableRows', listTableRows_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.

$sel:maxResults:ListTableRows', listTableRows_maxResults - The maximum number of rows to return in each page of the results.

$sel:workbookId:ListTableRows', listTableRows_workbookId - The ID of the workbook that contains the table whose rows are being retrieved.

If a workbook with the specified id could not be found, this API throws ResourceNotFoundException.

$sel:tableId:ListTableRows', listTableRows_tableId - The ID of the table whose rows are being retrieved.

If a table with the specified id could not be found, this API throws ResourceNotFoundException.

data ListTableRowsResponse Source #

See: newListTableRowsResponse smart constructor.

Instances

Instances details
Eq ListTableRowsResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTableRows

Show ListTableRowsResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTableRows

Generic ListTableRowsResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTableRows

Associated Types

type Rep ListTableRowsResponse :: Type -> Type #

NFData ListTableRowsResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTableRows

Methods

rnf :: ListTableRowsResponse -> () #

type Rep ListTableRowsResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTableRows

type Rep ListTableRowsResponse = D1 ('MetaData "ListTableRowsResponse" "Amazonka.HoneyCode.ListTableRows" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "ListTableRowsResponse'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "rowIdsNotFound") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (NonEmpty Text))) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))) :*: (S1 ('MetaSel ('Just "columnIds") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (NonEmpty Text)) :*: (S1 ('MetaSel ('Just "rows") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [TableRow]) :*: S1 ('MetaSel ('Just "workbookCursor") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Integer)))))

newListTableRowsResponse Source #

Create a value of ListTableRowsResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:rowIdsNotFound:ListTableRowsResponse', listTableRowsResponse_rowIdsNotFound - The list of row ids included in the request that were not found in the table.

$sel:nextToken:ListTableRows', listTableRowsResponse_nextToken - 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 request has been loaded.

$sel:httpStatus:ListTableRowsResponse', listTableRowsResponse_httpStatus - The response's http status code.

$sel:columnIds:ListTableRowsResponse', listTableRowsResponse_columnIds - The list of columns in the table whose row data is returned in the result.

$sel:rows:ListTableRowsResponse', listTableRowsResponse_rows - The list of rows in the table. Note that this result is paginated, so this list contains a maximum of 100 rows.

$sel:workbookCursor:ListTableRowsResponse', listTableRowsResponse_workbookCursor - Indicates the cursor of the workbook at which the data returned by this request is read. Workbook cursor keeps increasing with every update and the increments are not sequential.

InvokeScreenAutomation

data InvokeScreenAutomation Source #

See: newInvokeScreenAutomation smart constructor.

Instances

Instances details
Eq InvokeScreenAutomation Source # 
Instance details

Defined in Amazonka.HoneyCode.InvokeScreenAutomation

Show InvokeScreenAutomation Source # 
Instance details

Defined in Amazonka.HoneyCode.InvokeScreenAutomation

Generic InvokeScreenAutomation Source # 
Instance details

Defined in Amazonka.HoneyCode.InvokeScreenAutomation

Associated Types

type Rep InvokeScreenAutomation :: Type -> Type #

NFData InvokeScreenAutomation Source # 
Instance details

Defined in Amazonka.HoneyCode.InvokeScreenAutomation

Methods

rnf :: InvokeScreenAutomation -> () #

Hashable InvokeScreenAutomation Source # 
Instance details

Defined in Amazonka.HoneyCode.InvokeScreenAutomation

ToJSON InvokeScreenAutomation Source # 
Instance details

Defined in Amazonka.HoneyCode.InvokeScreenAutomation

AWSRequest InvokeScreenAutomation Source # 
Instance details

Defined in Amazonka.HoneyCode.InvokeScreenAutomation

Associated Types

type AWSResponse InvokeScreenAutomation #

ToHeaders InvokeScreenAutomation Source # 
Instance details

Defined in Amazonka.HoneyCode.InvokeScreenAutomation

ToPath InvokeScreenAutomation Source # 
Instance details

Defined in Amazonka.HoneyCode.InvokeScreenAutomation

ToQuery InvokeScreenAutomation Source # 
Instance details

Defined in Amazonka.HoneyCode.InvokeScreenAutomation

type Rep InvokeScreenAutomation Source # 
Instance details

Defined in Amazonka.HoneyCode.InvokeScreenAutomation

type Rep InvokeScreenAutomation = D1 ('MetaData "InvokeScreenAutomation" "Amazonka.HoneyCode.InvokeScreenAutomation" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "InvokeScreenAutomation'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "rowId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "variables") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive (HashMap Text (Sensitive VariableValue))))) :*: S1 ('MetaSel ('Just "clientRequestToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: ((S1 ('MetaSel ('Just "workbookId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "appId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "screenId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "screenAutomationId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))))
type AWSResponse InvokeScreenAutomation Source # 
Instance details

Defined in Amazonka.HoneyCode.InvokeScreenAutomation

newInvokeScreenAutomation Source #

Create a value of InvokeScreenAutomation with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:rowId:InvokeScreenAutomation', invokeScreenAutomation_rowId - The row ID for the automation if the automation is defined inside a block with source or list.

$sel:variables:InvokeScreenAutomation', invokeScreenAutomation_variables - 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. Any variables defined in a screen are required to be passed in the call.

$sel:clientRequestToken:InvokeScreenAutomation', invokeScreenAutomation_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.

$sel:workbookId:InvokeScreenAutomation', invokeScreenAutomation_workbookId - The ID of the workbook that contains the screen automation.

$sel:appId:InvokeScreenAutomation', invokeScreenAutomation_appId - The ID of the app that contains the screen automation.

$sel:screenId:InvokeScreenAutomation', invokeScreenAutomation_screenId - The ID of the screen that contains the screen automation.

$sel:screenAutomationId:InvokeScreenAutomation', invokeScreenAutomation_screenAutomationId - The ID of the automation action to be performed.

data InvokeScreenAutomationResponse Source #

See: newInvokeScreenAutomationResponse smart constructor.

Instances

Instances details
Eq InvokeScreenAutomationResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.InvokeScreenAutomation

Read InvokeScreenAutomationResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.InvokeScreenAutomation

Show InvokeScreenAutomationResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.InvokeScreenAutomation

Generic InvokeScreenAutomationResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.InvokeScreenAutomation

Associated Types

type Rep InvokeScreenAutomationResponse :: Type -> Type #

NFData InvokeScreenAutomationResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.InvokeScreenAutomation

type Rep InvokeScreenAutomationResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.InvokeScreenAutomation

type Rep InvokeScreenAutomationResponse = D1 ('MetaData "InvokeScreenAutomationResponse" "Amazonka.HoneyCode.InvokeScreenAutomation" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "InvokeScreenAutomationResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "workbookCursor") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Integer)))

newInvokeScreenAutomationResponse Source #

Create a value of InvokeScreenAutomationResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:httpStatus:InvokeScreenAutomationResponse', invokeScreenAutomationResponse_httpStatus - The response's http status code.

$sel:workbookCursor:InvokeScreenAutomationResponse', invokeScreenAutomationResponse_workbookCursor - The updated workbook cursor after performing the automation action.

DescribeTableDataImportJob

data DescribeTableDataImportJob Source #

See: newDescribeTableDataImportJob smart constructor.

Instances

Instances details
Eq DescribeTableDataImportJob Source # 
Instance details

Defined in Amazonka.HoneyCode.DescribeTableDataImportJob

Read DescribeTableDataImportJob Source # 
Instance details

Defined in Amazonka.HoneyCode.DescribeTableDataImportJob

Show DescribeTableDataImportJob Source # 
Instance details

Defined in Amazonka.HoneyCode.DescribeTableDataImportJob

Generic DescribeTableDataImportJob Source # 
Instance details

Defined in Amazonka.HoneyCode.DescribeTableDataImportJob

Associated Types

type Rep DescribeTableDataImportJob :: Type -> Type #

NFData DescribeTableDataImportJob Source # 
Instance details

Defined in Amazonka.HoneyCode.DescribeTableDataImportJob

Hashable DescribeTableDataImportJob Source # 
Instance details

Defined in Amazonka.HoneyCode.DescribeTableDataImportJob

AWSRequest DescribeTableDataImportJob Source # 
Instance details

Defined in Amazonka.HoneyCode.DescribeTableDataImportJob

ToHeaders DescribeTableDataImportJob Source # 
Instance details

Defined in Amazonka.HoneyCode.DescribeTableDataImportJob

ToPath DescribeTableDataImportJob Source # 
Instance details

Defined in Amazonka.HoneyCode.DescribeTableDataImportJob

ToQuery DescribeTableDataImportJob Source # 
Instance details

Defined in Amazonka.HoneyCode.DescribeTableDataImportJob

type Rep DescribeTableDataImportJob Source # 
Instance details

Defined in Amazonka.HoneyCode.DescribeTableDataImportJob

type Rep DescribeTableDataImportJob = D1 ('MetaData "DescribeTableDataImportJob" "Amazonka.HoneyCode.DescribeTableDataImportJob" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "DescribeTableDataImportJob'" 'PrefixI 'True) (S1 ('MetaSel ('Just "workbookId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "tableId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "jobId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))
type AWSResponse DescribeTableDataImportJob Source # 
Instance details

Defined in Amazonka.HoneyCode.DescribeTableDataImportJob

newDescribeTableDataImportJob Source #

Create a value of DescribeTableDataImportJob with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:workbookId:DescribeTableDataImportJob', describeTableDataImportJob_workbookId - The ID of the workbook into which data was imported.

If a workbook with the specified id could not be found, this API throws ResourceNotFoundException.

$sel:tableId:DescribeTableDataImportJob', describeTableDataImportJob_tableId - The ID of the table into which data was imported.

If a table with the specified id could not be found, this API throws ResourceNotFoundException.

$sel:jobId:DescribeTableDataImportJob', describeTableDataImportJob_jobId - The ID of the job that was returned by the StartTableDataImportJob request.

If a job with the specified id could not be found, this API throws ResourceNotFoundException.

data DescribeTableDataImportJobResponse Source #

Instances

Instances details
Eq DescribeTableDataImportJobResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.DescribeTableDataImportJob

Show DescribeTableDataImportJobResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.DescribeTableDataImportJob

Generic DescribeTableDataImportJobResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.DescribeTableDataImportJob

Associated Types

type Rep DescribeTableDataImportJobResponse :: Type -> Type #

NFData DescribeTableDataImportJobResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.DescribeTableDataImportJob

type Rep DescribeTableDataImportJobResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.DescribeTableDataImportJob

type Rep DescribeTableDataImportJobResponse = D1 ('MetaData "DescribeTableDataImportJobResponse" "Amazonka.HoneyCode.DescribeTableDataImportJob" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "DescribeTableDataImportJobResponse'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "jobStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 TableDataImportJobStatus)) :*: (S1 ('MetaSel ('Just "message") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "jobMetadata") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 TableDataImportJobMetadata))))

StartTableDataImportJob

data StartTableDataImportJob Source #

See: newStartTableDataImportJob smart constructor.

Instances

Instances details
Eq StartTableDataImportJob Source # 
Instance details

Defined in Amazonka.HoneyCode.StartTableDataImportJob

Read StartTableDataImportJob Source # 
Instance details

Defined in Amazonka.HoneyCode.StartTableDataImportJob

Show StartTableDataImportJob Source # 
Instance details

Defined in Amazonka.HoneyCode.StartTableDataImportJob

Generic StartTableDataImportJob Source # 
Instance details

Defined in Amazonka.HoneyCode.StartTableDataImportJob

Associated Types

type Rep StartTableDataImportJob :: Type -> Type #

NFData StartTableDataImportJob Source # 
Instance details

Defined in Amazonka.HoneyCode.StartTableDataImportJob

Methods

rnf :: StartTableDataImportJob -> () #

Hashable StartTableDataImportJob Source # 
Instance details

Defined in Amazonka.HoneyCode.StartTableDataImportJob

ToJSON StartTableDataImportJob Source # 
Instance details

Defined in Amazonka.HoneyCode.StartTableDataImportJob

AWSRequest StartTableDataImportJob Source # 
Instance details

Defined in Amazonka.HoneyCode.StartTableDataImportJob

ToHeaders StartTableDataImportJob Source # 
Instance details

Defined in Amazonka.HoneyCode.StartTableDataImportJob

ToPath StartTableDataImportJob Source # 
Instance details

Defined in Amazonka.HoneyCode.StartTableDataImportJob

ToQuery StartTableDataImportJob Source # 
Instance details

Defined in Amazonka.HoneyCode.StartTableDataImportJob

type Rep StartTableDataImportJob Source # 
Instance details

Defined in Amazonka.HoneyCode.StartTableDataImportJob

type Rep StartTableDataImportJob = D1 ('MetaData "StartTableDataImportJob" "Amazonka.HoneyCode.StartTableDataImportJob" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "StartTableDataImportJob'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "workbookId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "dataSource") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ImportDataSource) :*: S1 ('MetaSel ('Just "dataFormat") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ImportSourceDataFormat))) :*: (S1 ('MetaSel ('Just "destinationTableId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "importOptions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ImportOptions) :*: S1 ('MetaSel ('Just "clientRequestToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))))
type AWSResponse StartTableDataImportJob Source # 
Instance details

Defined in Amazonka.HoneyCode.StartTableDataImportJob

newStartTableDataImportJob Source #

Create a value of StartTableDataImportJob with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:workbookId:StartTableDataImportJob', startTableDataImportJob_workbookId - The ID of the workbook where the rows are being imported.

If a workbook with the specified id could not be found, this API throws ResourceNotFoundException.

$sel:dataSource:StartTableDataImportJob', startTableDataImportJob_dataSource - The source of the data that is being imported. The size of source must be no larger than 100 MB. Source must have no more than 100,000 cells and no more than 1,000 rows.

$sel:dataFormat:StartTableDataImportJob', startTableDataImportJob_dataFormat - The format of the data that is being imported. Currently the only option supported is "DELIMITED_TEXT".

$sel:destinationTableId:StartTableDataImportJob', startTableDataImportJob_destinationTableId - The ID of the table where the rows are being imported.

If a table with the specified id could not be found, this API throws ResourceNotFoundException.

$sel:importOptions:StartTableDataImportJob', startTableDataImportJob_importOptions - The options for customizing this import request.

$sel:clientRequestToken:StartTableDataImportJob', startTableDataImportJob_clientRequestToken - The request token for performing the update 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 not perform 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.

data StartTableDataImportJobResponse Source #

See: newStartTableDataImportJobResponse smart constructor.

Instances

Instances details
Eq StartTableDataImportJobResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.StartTableDataImportJob

Read StartTableDataImportJobResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.StartTableDataImportJob

Show StartTableDataImportJobResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.StartTableDataImportJob

Generic StartTableDataImportJobResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.StartTableDataImportJob

Associated Types

type Rep StartTableDataImportJobResponse :: Type -> Type #

NFData StartTableDataImportJobResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.StartTableDataImportJob

type Rep StartTableDataImportJobResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.StartTableDataImportJob

type Rep StartTableDataImportJobResponse = D1 ('MetaData "StartTableDataImportJobResponse" "Amazonka.HoneyCode.StartTableDataImportJob" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "StartTableDataImportJobResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: (S1 ('MetaSel ('Just "jobId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "jobStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 TableDataImportJobStatus))))

newStartTableDataImportJobResponse Source #

Create a value of StartTableDataImportJobResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:httpStatus:StartTableDataImportJobResponse', startTableDataImportJobResponse_httpStatus - The response's http status code.

$sel:jobId:StartTableDataImportJobResponse', startTableDataImportJobResponse_jobId - The id that is assigned to this import job. Future requests to find out the status of this import job need to send this id in the appropriate parameter in the request.

$sel:jobStatus:StartTableDataImportJobResponse', startTableDataImportJobResponse_jobStatus - The status of the import job immediately after submitting the request.

BatchCreateTableRows

data BatchCreateTableRows Source #

See: newBatchCreateTableRows smart constructor.

Instances

Instances details
Eq BatchCreateTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchCreateTableRows

Show BatchCreateTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchCreateTableRows

Generic BatchCreateTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchCreateTableRows

Associated Types

type Rep BatchCreateTableRows :: Type -> Type #

NFData BatchCreateTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchCreateTableRows

Methods

rnf :: BatchCreateTableRows -> () #

Hashable BatchCreateTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchCreateTableRows

ToJSON BatchCreateTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchCreateTableRows

AWSRequest BatchCreateTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchCreateTableRows

Associated Types

type AWSResponse BatchCreateTableRows #

ToHeaders BatchCreateTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchCreateTableRows

ToPath BatchCreateTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchCreateTableRows

ToQuery BatchCreateTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchCreateTableRows

type Rep BatchCreateTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchCreateTableRows

type Rep BatchCreateTableRows = D1 ('MetaData "BatchCreateTableRows" "Amazonka.HoneyCode.BatchCreateTableRows" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "BatchCreateTableRows'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "clientRequestToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "workbookId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "tableId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "rowsToCreate") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (NonEmpty CreateRowData)))))
type AWSResponse BatchCreateTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchCreateTableRows

newBatchCreateTableRows Source #

Create a value of BatchCreateTableRows with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:clientRequestToken:BatchCreateTableRows', batchCreateTableRows_clientRequestToken - The request token for performing the batch create operation. 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 not perform the operation again.

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

$sel:workbookId:BatchCreateTableRows', batchCreateTableRows_workbookId - The ID of the workbook where the new rows are being added.

If a workbook with the specified ID could not be found, this API throws ResourceNotFoundException.

$sel:tableId:BatchCreateTableRows', batchCreateTableRows_tableId - The ID of the table where the new rows are being added.

If a table with the specified ID could not be found, this API throws ResourceNotFoundException.

$sel:rowsToCreate:BatchCreateTableRows', batchCreateTableRows_rowsToCreate - The list of rows to create at the end of the table. Each item in this list needs to have a batch item id to uniquely identify the element in the request and the cells to create for that row. You need to specify at least one item in this list.

Note that if one of the column ids in any of the rows in the request does not exist in the table, then the request fails and no updates are made to the table.

data BatchCreateTableRowsResponse Source #

See: newBatchCreateTableRowsResponse smart constructor.

Instances

Instances details
Eq BatchCreateTableRowsResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchCreateTableRows

Read BatchCreateTableRowsResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchCreateTableRows

Show BatchCreateTableRowsResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchCreateTableRows

Generic BatchCreateTableRowsResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchCreateTableRows

Associated Types

type Rep BatchCreateTableRowsResponse :: Type -> Type #

NFData BatchCreateTableRowsResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchCreateTableRows

type Rep BatchCreateTableRowsResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchCreateTableRows

type Rep BatchCreateTableRowsResponse = D1 ('MetaData "BatchCreateTableRowsResponse" "Amazonka.HoneyCode.BatchCreateTableRows" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "BatchCreateTableRowsResponse'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "failedBatchItems") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [FailedBatchItem])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)) :*: (S1 ('MetaSel ('Just "workbookCursor") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Integer) :*: S1 ('MetaSel ('Just "createdRows") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (HashMap Text Text)))))

newBatchCreateTableRowsResponse Source #

Create a value of BatchCreateTableRowsResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:failedBatchItems:BatchCreateTableRowsResponse', batchCreateTableRowsResponse_failedBatchItems - The list of batch items in the request that could not be added to the table. Each element in this list contains one item from the request that could not be added to the table along with the reason why that item could not be added.

$sel:httpStatus:BatchCreateTableRowsResponse', batchCreateTableRowsResponse_httpStatus - The response's http status code.

$sel:workbookCursor:BatchCreateTableRowsResponse', batchCreateTableRowsResponse_workbookCursor - The updated workbook cursor after adding the new rows at the end of the table.

$sel:createdRows:BatchCreateTableRowsResponse', batchCreateTableRowsResponse_createdRows - The map of batch item id to the row id that was created for that item.

ListTables (Paginated)

data ListTables Source #

See: newListTables smart constructor.

Instances

Instances details
Eq ListTables Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTables

Read ListTables Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTables

Show ListTables Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTables

Generic ListTables Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTables

Associated Types

type Rep ListTables :: Type -> Type #

NFData ListTables Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTables

Methods

rnf :: ListTables -> () #

Hashable ListTables Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTables

AWSPager ListTables Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTables

AWSRequest ListTables Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTables

Associated Types

type AWSResponse ListTables #

ToHeaders ListTables Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTables

Methods

toHeaders :: ListTables -> [Header] #

ToPath ListTables Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTables

ToQuery ListTables Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTables

type Rep ListTables Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTables

type Rep ListTables = D1 ('MetaData "ListTables" "Amazonka.HoneyCode.ListTables" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "ListTables'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "workbookId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))
type AWSResponse ListTables Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTables

newListTables Source #

Create a value of ListTables with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:nextToken:ListTables', listTables_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.

$sel:maxResults:ListTables', listTables_maxResults - The maximum number of tables to return in each page of the results.

$sel:workbookId:ListTables', listTables_workbookId - The ID of the workbook whose tables are being retrieved.

If a workbook with the specified id could not be found, this API throws ResourceNotFoundException.

data ListTablesResponse Source #

See: newListTablesResponse smart constructor.

Instances

Instances details
Eq ListTablesResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTables

Read ListTablesResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTables

Show ListTablesResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTables

Generic ListTablesResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTables

Associated Types

type Rep ListTablesResponse :: Type -> Type #

NFData ListTablesResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTables

Methods

rnf :: ListTablesResponse -> () #

type Rep ListTablesResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTables

type Rep ListTablesResponse = D1 ('MetaData "ListTablesResponse" "Amazonka.HoneyCode.ListTables" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "ListTablesResponse'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "workbookCursor") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer))) :*: (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "tables") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [Table]))))

newListTablesResponse Source #

Create a value of ListTablesResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:nextToken:ListTables', listTablesResponse_nextToken - 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 request has been loaded.

$sel:workbookCursor:ListTablesResponse', listTablesResponse_workbookCursor - Indicates the cursor of the workbook at which the data returned by this request is read. Workbook cursor keeps increasing with every update and the increments are not sequential.

$sel:httpStatus:ListTablesResponse', listTablesResponse_httpStatus - The response's http status code.

$sel:tables:ListTablesResponse', listTablesResponse_tables - The list of tables in the workbook.

GetScreenData

data GetScreenData Source #

See: newGetScreenData smart constructor.

Instances

Instances details
Eq GetScreenData Source # 
Instance details

Defined in Amazonka.HoneyCode.GetScreenData

Show GetScreenData Source # 
Instance details

Defined in Amazonka.HoneyCode.GetScreenData

Generic GetScreenData Source # 
Instance details

Defined in Amazonka.HoneyCode.GetScreenData

Associated Types

type Rep GetScreenData :: Type -> Type #

NFData GetScreenData Source # 
Instance details

Defined in Amazonka.HoneyCode.GetScreenData

Methods

rnf :: GetScreenData -> () #

Hashable GetScreenData Source # 
Instance details

Defined in Amazonka.HoneyCode.GetScreenData

ToJSON GetScreenData Source # 
Instance details

Defined in Amazonka.HoneyCode.GetScreenData

AWSRequest GetScreenData Source # 
Instance details

Defined in Amazonka.HoneyCode.GetScreenData

Associated Types

type AWSResponse GetScreenData #

ToHeaders GetScreenData Source # 
Instance details

Defined in Amazonka.HoneyCode.GetScreenData

ToPath GetScreenData Source # 
Instance details

Defined in Amazonka.HoneyCode.GetScreenData

ToQuery GetScreenData Source # 
Instance details

Defined in Amazonka.HoneyCode.GetScreenData

type Rep GetScreenData Source # 
Instance details

Defined in Amazonka.HoneyCode.GetScreenData

type AWSResponse GetScreenData Source # 
Instance details

Defined in Amazonka.HoneyCode.GetScreenData

newGetScreenData Source #

Create a value of GetScreenData with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:variables:GetScreenData', getScreenData_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.

$sel:nextToken:GetScreenData', getScreenData_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.

$sel:maxResults:GetScreenData', getScreenData_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.

$sel:workbookId:GetScreenData', getScreenData_workbookId - The ID of the workbook that contains the screen.

$sel:appId:GetScreenData', getScreenData_appId - The ID of the app that contains the screem.

$sel:screenId:GetScreenData', getScreenData_screenId - The ID of the screen.

data GetScreenDataResponse Source #

See: newGetScreenDataResponse smart constructor.

Instances

Instances details
Eq GetScreenDataResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.GetScreenData

Show GetScreenDataResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.GetScreenData

Generic GetScreenDataResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.GetScreenData

Associated Types

type Rep GetScreenDataResponse :: Type -> Type #

NFData GetScreenDataResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.GetScreenData

Methods

rnf :: GetScreenDataResponse -> () #

type Rep GetScreenDataResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.GetScreenData

type Rep GetScreenDataResponse = D1 ('MetaData "GetScreenDataResponse" "Amazonka.HoneyCode.GetScreenData" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "GetScreenDataResponse'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)) :*: (S1 ('MetaSel ('Just "results") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (HashMap Text ResultSet)) :*: S1 ('MetaSel ('Just "workbookCursor") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Integer))))

newGetScreenDataResponse Source #

Create a value of GetScreenDataResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:nextToken:GetScreenData', getScreenDataResponse_nextToken - 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.

$sel:httpStatus:GetScreenDataResponse', getScreenDataResponse_httpStatus - The response's http status code.

$sel:results:GetScreenDataResponse', getScreenDataResponse_results - A map of all the rows on the screen keyed by block name.

$sel:workbookCursor:GetScreenDataResponse', getScreenDataResponse_workbookCursor - 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.

QueryTableRows (Paginated)

data QueryTableRows Source #

See: newQueryTableRows smart constructor.

Instances

Instances details
Eq QueryTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.QueryTableRows

Show QueryTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.QueryTableRows

Generic QueryTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.QueryTableRows

Associated Types

type Rep QueryTableRows :: Type -> Type #

NFData QueryTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.QueryTableRows

Methods

rnf :: QueryTableRows -> () #

Hashable QueryTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.QueryTableRows

ToJSON QueryTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.QueryTableRows

AWSPager QueryTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.QueryTableRows

AWSRequest QueryTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.QueryTableRows

Associated Types

type AWSResponse QueryTableRows #

ToHeaders QueryTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.QueryTableRows

ToPath QueryTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.QueryTableRows

ToQuery QueryTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.QueryTableRows

type Rep QueryTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.QueryTableRows

type Rep QueryTableRows = D1 ('MetaData "QueryTableRows" "Amazonka.HoneyCode.QueryTableRows" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "QueryTableRows'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural))) :*: (S1 ('MetaSel ('Just "workbookId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "tableId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "filterFormula") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Filter)))))
type AWSResponse QueryTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.QueryTableRows

newQueryTableRows Source #

Create a value of QueryTableRows with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:nextToken:QueryTableRows', queryTableRows_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.

$sel:maxResults:QueryTableRows', queryTableRows_maxResults - The maximum number of rows to return in each page of the results.

$sel:workbookId:QueryTableRows', queryTableRows_workbookId - The ID of the workbook whose table rows are being queried.

If a workbook with the specified id could not be found, this API throws ResourceNotFoundException.

$sel:tableId:QueryTableRows', queryTableRows_tableId - The ID of the table whose rows are being queried.

If a table with the specified id could not be found, this API throws ResourceNotFoundException.

$sel:filterFormula:QueryTableRows', queryTableRows_filterFormula - An object that represents a filter formula along with the id of the context row under which the filter function needs to evaluate.

data QueryTableRowsResponse Source #

See: newQueryTableRowsResponse smart constructor.

Instances

Instances details
Eq QueryTableRowsResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.QueryTableRows

Show QueryTableRowsResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.QueryTableRows

Generic QueryTableRowsResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.QueryTableRows

Associated Types

type Rep QueryTableRowsResponse :: Type -> Type #

NFData QueryTableRowsResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.QueryTableRows

Methods

rnf :: QueryTableRowsResponse -> () #

type Rep QueryTableRowsResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.QueryTableRows

type Rep QueryTableRowsResponse = D1 ('MetaData "QueryTableRowsResponse" "Amazonka.HoneyCode.QueryTableRows" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "QueryTableRowsResponse'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)) :*: (S1 ('MetaSel ('Just "columnIds") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (NonEmpty Text)) :*: (S1 ('MetaSel ('Just "rows") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [TableRow]) :*: S1 ('MetaSel ('Just "workbookCursor") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Integer)))))

newQueryTableRowsResponse Source #

Create a value of QueryTableRowsResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:nextToken:QueryTableRows', queryTableRowsResponse_nextToken - 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 request has been loaded.

$sel:httpStatus:QueryTableRowsResponse', queryTableRowsResponse_httpStatus - The response's http status code.

$sel:columnIds:QueryTableRowsResponse', queryTableRowsResponse_columnIds - The list of columns in the table whose row data is returned in the result.

$sel:rows:QueryTableRowsResponse', queryTableRowsResponse_rows - The list of rows in the table that match the query filter.

$sel:workbookCursor:QueryTableRowsResponse', queryTableRowsResponse_workbookCursor - Indicates the cursor of the workbook at which the data returned by this request is read. Workbook cursor keeps increasing with every update and the increments are not sequential.

BatchUpsertTableRows

data BatchUpsertTableRows Source #

See: newBatchUpsertTableRows smart constructor.

Instances

Instances details
Eq BatchUpsertTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchUpsertTableRows

Show BatchUpsertTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchUpsertTableRows

Generic BatchUpsertTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchUpsertTableRows

Associated Types

type Rep BatchUpsertTableRows :: Type -> Type #

NFData BatchUpsertTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchUpsertTableRows

Methods

rnf :: BatchUpsertTableRows -> () #

Hashable BatchUpsertTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchUpsertTableRows

ToJSON BatchUpsertTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchUpsertTableRows

AWSRequest BatchUpsertTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchUpsertTableRows

Associated Types

type AWSResponse BatchUpsertTableRows #

ToHeaders BatchUpsertTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchUpsertTableRows

ToPath BatchUpsertTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchUpsertTableRows

ToQuery BatchUpsertTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchUpsertTableRows

type Rep BatchUpsertTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchUpsertTableRows

type Rep BatchUpsertTableRows = D1 ('MetaData "BatchUpsertTableRows" "Amazonka.HoneyCode.BatchUpsertTableRows" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "BatchUpsertTableRows'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "clientRequestToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "workbookId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "tableId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "rowsToUpsert") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [UpsertRowData]))))
type AWSResponse BatchUpsertTableRows Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchUpsertTableRows

newBatchUpsertTableRows Source #

Create a value of BatchUpsertTableRows with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:clientRequestToken:BatchUpsertTableRows', batchUpsertTableRows_clientRequestToken - The request token for performing the update 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 not perform 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.

$sel:workbookId:BatchUpsertTableRows', batchUpsertTableRows_workbookId - The ID of the workbook where the rows are being upserted.

If a workbook with the specified id could not be found, this API throws ResourceNotFoundException.

$sel:tableId:BatchUpsertTableRows', batchUpsertTableRows_tableId - The ID of the table where the rows are being upserted.

If a table with the specified id could not be found, this API throws ResourceNotFoundException.

$sel:rowsToUpsert:BatchUpsertTableRows', batchUpsertTableRows_rowsToUpsert - The list of rows to upsert in the table. Each item in this list needs to have a batch item id to uniquely identify the element in the request, a filter expression to find the rows to update for that element and the cell values to set for each column in the upserted rows. You need to specify at least one item in this list.

Note that if one of the filter formulas in the request fails to evaluate because of an error or one of the column ids in any of the rows does not exist in the table, then the request fails and no updates are made to the table.

data BatchUpsertTableRowsResponse Source #

See: newBatchUpsertTableRowsResponse smart constructor.

Instances

Instances details
Eq BatchUpsertTableRowsResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchUpsertTableRows

Read BatchUpsertTableRowsResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchUpsertTableRows

Show BatchUpsertTableRowsResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchUpsertTableRows

Generic BatchUpsertTableRowsResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchUpsertTableRows

Associated Types

type Rep BatchUpsertTableRowsResponse :: Type -> Type #

NFData BatchUpsertTableRowsResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchUpsertTableRows

type Rep BatchUpsertTableRowsResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.BatchUpsertTableRows

type Rep BatchUpsertTableRowsResponse = D1 ('MetaData "BatchUpsertTableRowsResponse" "Amazonka.HoneyCode.BatchUpsertTableRows" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "BatchUpsertTableRowsResponse'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "failedBatchItems") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [FailedBatchItem])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)) :*: (S1 ('MetaSel ('Just "rows") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (HashMap Text UpsertRowsResult)) :*: S1 ('MetaSel ('Just "workbookCursor") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Integer))))

newBatchUpsertTableRowsResponse Source #

Create a value of BatchUpsertTableRowsResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:failedBatchItems:BatchUpsertTableRowsResponse', batchUpsertTableRowsResponse_failedBatchItems - The list of batch items in the request that could not be updated or appended in the table. Each element in this list contains one item from the request that could not be updated in the table along with the reason why that item could not be updated or appended.

$sel:httpStatus:BatchUpsertTableRowsResponse', batchUpsertTableRowsResponse_httpStatus - The response's http status code.

$sel:rows:BatchUpsertTableRowsResponse', batchUpsertTableRowsResponse_rows - A map with the batch item id as the key and the result of the upsert operation as the value. The result of the upsert operation specifies whether existing rows were updated or a new row was appended, along with the list of row ids that were affected.

$sel:workbookCursor:BatchUpsertTableRowsResponse', batchUpsertTableRowsResponse_workbookCursor - The updated workbook cursor after updating or appending rows in the table.

ListTableColumns (Paginated)

data ListTableColumns Source #

See: newListTableColumns smart constructor.

Instances

Instances details
Eq ListTableColumns Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTableColumns

Read ListTableColumns Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTableColumns

Show ListTableColumns Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTableColumns

Generic ListTableColumns Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTableColumns

Associated Types

type Rep ListTableColumns :: Type -> Type #

NFData ListTableColumns Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTableColumns

Methods

rnf :: ListTableColumns -> () #

Hashable ListTableColumns Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTableColumns

AWSPager ListTableColumns Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTableColumns

AWSRequest ListTableColumns Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTableColumns

Associated Types

type AWSResponse ListTableColumns #

ToHeaders ListTableColumns Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTableColumns

ToPath ListTableColumns Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTableColumns

ToQuery ListTableColumns Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTableColumns

type Rep ListTableColumns Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTableColumns

type Rep ListTableColumns = D1 ('MetaData "ListTableColumns" "Amazonka.HoneyCode.ListTableColumns" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "ListTableColumns'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "workbookId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "tableId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))
type AWSResponse ListTableColumns Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTableColumns

newListTableColumns Source #

Create a value of ListTableColumns with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:nextToken:ListTableColumns', listTableColumns_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.

$sel:workbookId:ListTableColumns', listTableColumns_workbookId - The ID of the workbook that contains the table whose columns are being retrieved.

If a workbook with the specified id could not be found, this API throws ResourceNotFoundException.

$sel:tableId:ListTableColumns', listTableColumns_tableId - The ID of the table whose columns are being retrieved.

If a table with the specified id could not be found, this API throws ResourceNotFoundException.

data ListTableColumnsResponse Source #

See: newListTableColumnsResponse smart constructor.

Instances

Instances details
Eq ListTableColumnsResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTableColumns

Read ListTableColumnsResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTableColumns

Show ListTableColumnsResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTableColumns

Generic ListTableColumnsResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTableColumns

Associated Types

type Rep ListTableColumnsResponse :: Type -> Type #

NFData ListTableColumnsResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTableColumns

type Rep ListTableColumnsResponse Source # 
Instance details

Defined in Amazonka.HoneyCode.ListTableColumns

type Rep ListTableColumnsResponse = D1 ('MetaData "ListTableColumnsResponse" "Amazonka.HoneyCode.ListTableColumns" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "ListTableColumnsResponse'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "workbookCursor") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer))) :*: (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "tableColumns") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [TableColumn]))))

newListTableColumnsResponse Source #

Create a value of ListTableColumnsResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:nextToken:ListTableColumns', listTableColumnsResponse_nextToken - 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 request has been loaded.

$sel:workbookCursor:ListTableColumnsResponse', listTableColumnsResponse_workbookCursor - Indicates the cursor of the workbook at which the data returned by this request is read. Workbook cursor keeps increasing with every update and the increments are not sequential.

$sel:httpStatus:ListTableColumnsResponse', listTableColumnsResponse_httpStatus - The response's http status code.

$sel:tableColumns:ListTableColumnsResponse', listTableColumnsResponse_tableColumns - The list of columns in the table.

Types

Format

newtype Format Source #

Constructors

Format' 

Fields

Bundled Patterns

pattern Format_ACCOUNTING :: Format 
pattern Format_AUTO :: Format 
pattern Format_CONTACT :: Format 
pattern Format_CURRENCY :: Format 
pattern Format_DATE :: Format 
pattern Format_DATE_TIME :: Format 
pattern Format_NUMBER :: Format 
pattern Format_PERCENTAGE :: Format 
pattern Format_ROWLINK :: Format 
pattern Format_TEXT :: Format 
pattern Format_TIME :: Format 

Instances

Instances details
Eq Format Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.Format

Methods

(==) :: Format -> Format -> Bool #

(/=) :: Format -> Format -> Bool #

Ord Format Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.Format

Read Format Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.Format

Show Format Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.Format

Generic Format Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.Format

Associated Types

type Rep Format :: Type -> Type #

Methods

from :: Format -> Rep Format x #

to :: Rep Format x -> Format #

NFData Format Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.Format

Methods

rnf :: Format -> () #

Hashable Format Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.Format

Methods

hashWithSalt :: Int -> Format -> Int #

hash :: Format -> Int #

ToJSON Format Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.Format

ToJSONKey Format Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.Format

FromJSON Format Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.Format

FromJSONKey Format Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.Format

ToLog Format Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.Format

ToHeader Format Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.Format

Methods

toHeader :: HeaderName -> Format -> [Header] #

ToQuery Format Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.Format

FromXML Format Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.Format

ToXML Format Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.Format

Methods

toXML :: Format -> XML #

ToByteString Format Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.Format

Methods

toBS :: Format -> ByteString #

FromText Format Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.Format

ToText Format Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.Format

Methods

toText :: Format -> Text #

type Rep Format Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.Format

type Rep Format = D1 ('MetaData "Format" "Amazonka.HoneyCode.Types.Format" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'True) (C1 ('MetaCons "Format'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromFormat") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

ImportDataCharacterEncoding

newtype ImportDataCharacterEncoding Source #

Instances

Instances details
Eq ImportDataCharacterEncoding Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportDataCharacterEncoding

Ord ImportDataCharacterEncoding Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportDataCharacterEncoding

Read ImportDataCharacterEncoding Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportDataCharacterEncoding

Show ImportDataCharacterEncoding Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportDataCharacterEncoding

Generic ImportDataCharacterEncoding Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportDataCharacterEncoding

Associated Types

type Rep ImportDataCharacterEncoding :: Type -> Type #

NFData ImportDataCharacterEncoding Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportDataCharacterEncoding

Hashable ImportDataCharacterEncoding Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportDataCharacterEncoding

ToJSON ImportDataCharacterEncoding Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportDataCharacterEncoding

ToJSONKey ImportDataCharacterEncoding Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportDataCharacterEncoding

FromJSON ImportDataCharacterEncoding Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportDataCharacterEncoding

FromJSONKey ImportDataCharacterEncoding Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportDataCharacterEncoding

ToLog ImportDataCharacterEncoding Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportDataCharacterEncoding

ToHeader ImportDataCharacterEncoding Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportDataCharacterEncoding

ToQuery ImportDataCharacterEncoding Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportDataCharacterEncoding

FromXML ImportDataCharacterEncoding Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportDataCharacterEncoding

ToXML ImportDataCharacterEncoding Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportDataCharacterEncoding

ToByteString ImportDataCharacterEncoding Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportDataCharacterEncoding

FromText ImportDataCharacterEncoding Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportDataCharacterEncoding

ToText ImportDataCharacterEncoding Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportDataCharacterEncoding

type Rep ImportDataCharacterEncoding Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportDataCharacterEncoding

type Rep ImportDataCharacterEncoding = D1 ('MetaData "ImportDataCharacterEncoding" "Amazonka.HoneyCode.Types.ImportDataCharacterEncoding" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'True) (C1 ('MetaCons "ImportDataCharacterEncoding'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromImportDataCharacterEncoding") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

ImportSourceDataFormat

newtype ImportSourceDataFormat Source #

Instances

Instances details
Eq ImportSourceDataFormat Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportSourceDataFormat

Ord ImportSourceDataFormat Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportSourceDataFormat

Read ImportSourceDataFormat Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportSourceDataFormat

Show ImportSourceDataFormat Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportSourceDataFormat

Generic ImportSourceDataFormat Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportSourceDataFormat

Associated Types

type Rep ImportSourceDataFormat :: Type -> Type #

NFData ImportSourceDataFormat Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportSourceDataFormat

Methods

rnf :: ImportSourceDataFormat -> () #

Hashable ImportSourceDataFormat Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportSourceDataFormat

ToJSON ImportSourceDataFormat Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportSourceDataFormat

ToJSONKey ImportSourceDataFormat Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportSourceDataFormat

FromJSON ImportSourceDataFormat Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportSourceDataFormat

FromJSONKey ImportSourceDataFormat Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportSourceDataFormat

ToLog ImportSourceDataFormat Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportSourceDataFormat

ToHeader ImportSourceDataFormat Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportSourceDataFormat

ToQuery ImportSourceDataFormat Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportSourceDataFormat

FromXML ImportSourceDataFormat Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportSourceDataFormat

ToXML ImportSourceDataFormat Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportSourceDataFormat

ToByteString ImportSourceDataFormat Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportSourceDataFormat

FromText ImportSourceDataFormat Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportSourceDataFormat

ToText ImportSourceDataFormat Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportSourceDataFormat

type Rep ImportSourceDataFormat Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportSourceDataFormat

type Rep ImportSourceDataFormat = D1 ('MetaData "ImportSourceDataFormat" "Amazonka.HoneyCode.Types.ImportSourceDataFormat" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'True) (C1 ('MetaCons "ImportSourceDataFormat'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromImportSourceDataFormat") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

TableDataImportJobStatus

newtype TableDataImportJobStatus Source #

Instances

Instances details
Eq TableDataImportJobStatus Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableDataImportJobStatus

Ord TableDataImportJobStatus Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableDataImportJobStatus

Read TableDataImportJobStatus Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableDataImportJobStatus

Show TableDataImportJobStatus Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableDataImportJobStatus

Generic TableDataImportJobStatus Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableDataImportJobStatus

Associated Types

type Rep TableDataImportJobStatus :: Type -> Type #

NFData TableDataImportJobStatus Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableDataImportJobStatus

Hashable TableDataImportJobStatus Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableDataImportJobStatus

ToJSON TableDataImportJobStatus Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableDataImportJobStatus

ToJSONKey TableDataImportJobStatus Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableDataImportJobStatus

FromJSON TableDataImportJobStatus Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableDataImportJobStatus

FromJSONKey TableDataImportJobStatus Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableDataImportJobStatus

ToLog TableDataImportJobStatus Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableDataImportJobStatus

ToHeader TableDataImportJobStatus Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableDataImportJobStatus

ToQuery TableDataImportJobStatus Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableDataImportJobStatus

FromXML TableDataImportJobStatus Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableDataImportJobStatus

ToXML TableDataImportJobStatus Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableDataImportJobStatus

ToByteString TableDataImportJobStatus Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableDataImportJobStatus

FromText TableDataImportJobStatus Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableDataImportJobStatus

ToText TableDataImportJobStatus Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableDataImportJobStatus

type Rep TableDataImportJobStatus Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableDataImportJobStatus

type Rep TableDataImportJobStatus = D1 ('MetaData "TableDataImportJobStatus" "Amazonka.HoneyCode.Types.TableDataImportJobStatus" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'True) (C1 ('MetaCons "TableDataImportJobStatus'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromTableDataImportJobStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

UpsertAction

newtype UpsertAction Source #

Constructors

UpsertAction' 

Bundled Patterns

pattern UpsertAction_APPENDED :: UpsertAction 
pattern UpsertAction_UPDATED :: UpsertAction 

Instances

Instances details
Eq UpsertAction Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpsertAction

Ord UpsertAction Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpsertAction

Read UpsertAction Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpsertAction

Show UpsertAction Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpsertAction

Generic UpsertAction Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpsertAction

Associated Types

type Rep UpsertAction :: Type -> Type #

NFData UpsertAction Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpsertAction

Methods

rnf :: UpsertAction -> () #

Hashable UpsertAction Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpsertAction

ToJSON UpsertAction Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpsertAction

ToJSONKey UpsertAction Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpsertAction

FromJSON UpsertAction Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpsertAction

FromJSONKey UpsertAction Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpsertAction

ToLog UpsertAction Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpsertAction

ToHeader UpsertAction Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpsertAction

ToQuery UpsertAction Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpsertAction

FromXML UpsertAction Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpsertAction

ToXML UpsertAction Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpsertAction

Methods

toXML :: UpsertAction -> XML #

ToByteString UpsertAction Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpsertAction

FromText UpsertAction Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpsertAction

ToText UpsertAction Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpsertAction

Methods

toText :: UpsertAction -> Text #

type Rep UpsertAction Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpsertAction

type Rep UpsertAction = D1 ('MetaData "UpsertAction" "Amazonka.HoneyCode.Types.UpsertAction" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'True) (C1 ('MetaCons "UpsertAction'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromUpsertAction") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

Cell

data Cell Source #

An object that represents a single cell in a table.

See: newCell smart constructor.

Instances

Instances details
Eq Cell Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.Cell

Methods

(==) :: Cell -> Cell -> Bool #

(/=) :: Cell -> Cell -> Bool #

Show Cell Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.Cell

Methods

showsPrec :: Int -> Cell -> ShowS #

show :: Cell -> String #

showList :: [Cell] -> ShowS #

Generic Cell Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.Cell

Associated Types

type Rep Cell :: Type -> Type #

Methods

from :: Cell -> Rep Cell x #

to :: Rep Cell x -> Cell #

NFData Cell Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.Cell

Methods

rnf :: Cell -> () #

Hashable Cell Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.Cell

Methods

hashWithSalt :: Int -> Cell -> Int #

hash :: Cell -> Int #

FromJSON Cell Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.Cell

type Rep Cell Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.Cell

type Rep Cell = D1 ('MetaData "Cell" "Amazonka.HoneyCode.Types.Cell" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "Cell'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "rawValue") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "format") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Format))) :*: (S1 ('MetaSel ('Just "formula") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: S1 ('MetaSel ('Just "formattedValue") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newCell :: Cell Source #

Create a value of Cell with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:rawValue:Cell', cell_rawValue - The raw value of the data contained in the cell. The raw value depends on the format of the data in the cell. However the attribute in the API return value is always a string containing the raw value.

Cells with format DATE, DATE_TIME or TIME have the raw value as a floating point number where the whole number represents the number of days since 1/1/1900 and the fractional part represents the fraction of the day since midnight. For example, a cell with date 11/3/2020 has the raw value "44138". A cell with the time 9:00 AM has the raw value "0.375" and a cell with date/time value of 11/3/2020 9:00 AM has the raw value "44138.375". Notice that even though the raw value is a number in all three cases, it is still represented as a string.

Cells with format NUMBER, CURRENCY, PERCENTAGE and ACCOUNTING have the raw value of the data as the number representing the data being displayed. For example, the number 1.325 with two decimal places in the format will have it's raw value as "1.325" and formatted value as "1.33". A currency value for $10 will have the raw value as "10" and formatted value as "$10.00". A value representing 20% with two decimal places in the format will have its raw value as "0.2" and the formatted value as "20.00%". An accounting value of -$25 will have "-25" as the raw value and "$ (25.00)" as the formatted value.

Cells with format TEXT will have the raw text as the raw value. For example, a cell with text "John Smith" will have "John Smith" as both the raw value and the formatted value.

Cells with format CONTACT will have the name of the contact as a formatted value and the email address of the contact as the raw value. For example, a contact for John Smith will have "John Smith" as the formatted value and "john.smith@example.com" as the raw value.

Cells with format ROWLINK (aka picklist) will have the first column of the linked row as the formatted value and the row id of the linked row as the raw value. For example, a cell containing a picklist to a table that displays task status might have "Completed" as the formatted value and "row:dfcefaee-5b37-4355-8f28-40c3e4ff5dd4/ca432b2f-b8eb-431d-9fb5-cbe0342f9f03" as the raw value.

Cells with format AUTO or cells without any format that are auto-detected as one of the formats above will contain the raw and formatted values as mentioned above, based on the auto-detected formats. If there is no auto-detected format, the raw and formatted values will be the same as the data in the cell.

$sel:format:Cell', cell_format - The format of the cell. If this field is empty, then the format is either not specified in the workbook or the format is set to AUTO.

$sel:formula:Cell', cell_formula - The formula contained in the cell. This field is empty if a cell does not have a formula.

$sel:formattedValue:Cell', cell_formattedValue - The formatted value of the cell. This is the value that you see displayed in the cell in the UI.

Note that the formatted value of a cell is always represented as a string irrespective of the data that is stored in the cell. For example, if a cell contains a date, the formatted value of the cell is the string representation of the formatted date being shown in the cell in the UI. See details in the rawValue field below for how cells of different formats will have different raw and formatted values.

CellInput

data CellInput Source #

CellInput object contains the data needed to create or update cells in a table.

See: newCellInput smart constructor.

Constructors

CellInput' (Maybe (Sensitive Text)) 

Instances

Instances details
Eq CellInput Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.CellInput

Show CellInput Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.CellInput

Generic CellInput Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.CellInput

Associated Types

type Rep CellInput :: Type -> Type #

NFData CellInput Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.CellInput

Methods

rnf :: CellInput -> () #

Hashable CellInput Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.CellInput

ToJSON CellInput Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.CellInput

type Rep CellInput Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.CellInput

type Rep CellInput = D1 ('MetaData "CellInput" "Amazonka.HoneyCode.Types.CellInput" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "CellInput'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fact") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text)))))

newCellInput :: CellInput Source #

Create a value of CellInput with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:fact:CellInput', cellInput_fact - Fact represents the data that is entered into a cell. This data can be free text or a formula. Formulas need to start with the equals (=) sign.

ColumnMetadata

data ColumnMetadata Source #

Metadata for column in the table.

See: newColumnMetadata smart constructor.

Instances

Instances details
Eq ColumnMetadata Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ColumnMetadata

Show ColumnMetadata Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ColumnMetadata

Generic ColumnMetadata Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ColumnMetadata

Associated Types

type Rep ColumnMetadata :: Type -> Type #

NFData ColumnMetadata Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ColumnMetadata

Methods

rnf :: ColumnMetadata -> () #

Hashable ColumnMetadata Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ColumnMetadata

FromJSON ColumnMetadata Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ColumnMetadata

type Rep ColumnMetadata Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ColumnMetadata

type Rep ColumnMetadata = D1 ('MetaData "ColumnMetadata" "Amazonka.HoneyCode.Types.ColumnMetadata" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "ColumnMetadata'" 'PrefixI 'True) (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Sensitive Text)) :*: S1 ('MetaSel ('Just "format") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Format)))

newColumnMetadata Source #

Create a value of ColumnMetadata with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:name:ColumnMetadata', columnMetadata_name - The name of the column.

$sel:format:ColumnMetadata', columnMetadata_format - The format of the column.

CreateRowData

data CreateRowData Source #

Data needed to create a single row in a table as part of the BatchCreateTableRows request.

See: newCreateRowData smart constructor.

Instances

Instances details
Eq CreateRowData Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.CreateRowData

Show CreateRowData Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.CreateRowData

Generic CreateRowData Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.CreateRowData

Associated Types

type Rep CreateRowData :: Type -> Type #

NFData CreateRowData Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.CreateRowData

Methods

rnf :: CreateRowData -> () #

Hashable CreateRowData Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.CreateRowData

ToJSON CreateRowData Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.CreateRowData

type Rep CreateRowData Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.CreateRowData

type Rep CreateRowData = D1 ('MetaData "CreateRowData" "Amazonka.HoneyCode.Types.CreateRowData" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "CreateRowData'" 'PrefixI 'True) (S1 ('MetaSel ('Just "batchItemId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "cellsToCreate") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (HashMap Text CellInput))))

newCreateRowData Source #

Create a value of CreateRowData with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:batchItemId:CreateRowData', createRowData_batchItemId - An external identifier that represents the single row that is being created as part of the BatchCreateTableRows request. This can be any string that you can use to identify the row in the request. The BatchCreateTableRows API puts the batch item id in the results to allow you to link data in the request to data in the results.

$sel:cellsToCreate:CreateRowData', createRowData_cellsToCreate - A map representing the cells to create in the new row. The key is the column id of the cell and the value is the CellInput object that represents the data to set in that cell.

DataItem

data DataItem Source #

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

See: newDataItem smart constructor.

Constructors

DataItem' (Maybe Text) (Maybe Format) (Maybe Text) 

Instances

Instances details
Eq DataItem Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.DataItem

Show DataItem Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.DataItem

Generic DataItem Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.DataItem

Associated Types

type Rep DataItem :: Type -> Type #

Methods

from :: DataItem -> Rep DataItem x #

to :: Rep DataItem x -> DataItem #

NFData DataItem Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.DataItem

Methods

rnf :: DataItem -> () #

Hashable DataItem Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.DataItem

Methods

hashWithSalt :: Int -> DataItem -> Int #

hash :: DataItem -> Int #

FromJSON DataItem Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.DataItem

type Rep DataItem Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.DataItem

type Rep DataItem = D1 ('MetaData "DataItem" "Amazonka.HoneyCode.Types.DataItem" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "DataItem'" 'PrefixI 'True) (S1 ('MetaSel ('Just "rawValue") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "overrideFormat") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Format)) :*: S1 ('MetaSel ('Just "formattedValue") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newDataItem :: DataItem Source #

Create a value of DataItem with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:rawValue:DataItem', dataItem_rawValue - The raw value of the data. e.g. jsmith@example.com

$sel:overrideFormat:DataItem', dataItem_overrideFormat - 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.

$sel:formattedValue:DataItem', dataItem_formattedValue - The formatted value of the data. e.g. John Smith.

DelimitedTextImportOptions

data DelimitedTextImportOptions Source #

An object that contains the options relating to parsing delimited text as part of an import request.

See: newDelimitedTextImportOptions smart constructor.

Instances

Instances details
Eq DelimitedTextImportOptions Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.DelimitedTextImportOptions

Read DelimitedTextImportOptions Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.DelimitedTextImportOptions

Show DelimitedTextImportOptions Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.DelimitedTextImportOptions

Generic DelimitedTextImportOptions Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.DelimitedTextImportOptions

Associated Types

type Rep DelimitedTextImportOptions :: Type -> Type #

NFData DelimitedTextImportOptions Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.DelimitedTextImportOptions

Hashable DelimitedTextImportOptions Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.DelimitedTextImportOptions

ToJSON DelimitedTextImportOptions Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.DelimitedTextImportOptions

FromJSON DelimitedTextImportOptions Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.DelimitedTextImportOptions

type Rep DelimitedTextImportOptions Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.DelimitedTextImportOptions

type Rep DelimitedTextImportOptions = D1 ('MetaData "DelimitedTextImportOptions" "Amazonka.HoneyCode.Types.DelimitedTextImportOptions" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "DelimitedTextImportOptions'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "ignoreEmptyRows") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "hasHeaderRow") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool))) :*: (S1 ('MetaSel ('Just "dataCharacterEncoding") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ImportDataCharacterEncoding)) :*: S1 ('MetaSel ('Just "delimiter") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newDelimitedTextImportOptions Source #

Create a value of DelimitedTextImportOptions with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:ignoreEmptyRows:DelimitedTextImportOptions', delimitedTextImportOptions_ignoreEmptyRows - A parameter to indicate whether empty rows should be ignored or be included in the import.

$sel:hasHeaderRow:DelimitedTextImportOptions', delimitedTextImportOptions_hasHeaderRow - Indicates whether the input file has a header row at the top containing the column names.

$sel:dataCharacterEncoding:DelimitedTextImportOptions', delimitedTextImportOptions_dataCharacterEncoding - The encoding of the data in the input file.

$sel:delimiter:DelimitedTextImportOptions', delimitedTextImportOptions_delimiter - The delimiter to use for separating columns in a single row of the input.

DestinationOptions

data DestinationOptions Source #

An object that contains the options relating to the destination of the import request.

See: newDestinationOptions smart constructor.

Instances

Instances details
Eq DestinationOptions Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.DestinationOptions

Read DestinationOptions Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.DestinationOptions

Show DestinationOptions Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.DestinationOptions

Generic DestinationOptions Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.DestinationOptions

Associated Types

type Rep DestinationOptions :: Type -> Type #

NFData DestinationOptions Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.DestinationOptions

Methods

rnf :: DestinationOptions -> () #

Hashable DestinationOptions Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.DestinationOptions

ToJSON DestinationOptions Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.DestinationOptions

FromJSON DestinationOptions Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.DestinationOptions

type Rep DestinationOptions Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.DestinationOptions

type Rep DestinationOptions = D1 ('MetaData "DestinationOptions" "Amazonka.HoneyCode.Types.DestinationOptions" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "DestinationOptions'" 'PrefixI 'True) (S1 ('MetaSel ('Just "columnMap") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text SourceDataColumnProperties)))))

newDestinationOptions :: DestinationOptions Source #

Create a value of DestinationOptions with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:columnMap:DestinationOptions', destinationOptions_columnMap - A map of the column id to the import properties for each column.

FailedBatchItem

data FailedBatchItem Source #

A single item in a batch that failed to perform the intended action because of an error preventing it from succeeding.

See: newFailedBatchItem smart constructor.

Constructors

FailedBatchItem' Text Text 

Instances

Instances details
Eq FailedBatchItem Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.FailedBatchItem

Read FailedBatchItem Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.FailedBatchItem

Show FailedBatchItem Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.FailedBatchItem

Generic FailedBatchItem Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.FailedBatchItem

Associated Types

type Rep FailedBatchItem :: Type -> Type #

NFData FailedBatchItem Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.FailedBatchItem

Methods

rnf :: FailedBatchItem -> () #

Hashable FailedBatchItem Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.FailedBatchItem

FromJSON FailedBatchItem Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.FailedBatchItem

type Rep FailedBatchItem Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.FailedBatchItem

type Rep FailedBatchItem = D1 ('MetaData "FailedBatchItem" "Amazonka.HoneyCode.Types.FailedBatchItem" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "FailedBatchItem'" 'PrefixI 'True) (S1 ('MetaSel ('Just "id") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "errorMessage") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newFailedBatchItem Source #

Create a value of FailedBatchItem with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:id:FailedBatchItem', failedBatchItem_id - The id of the batch item that failed. This is the batch item id for the BatchCreateTableRows and BatchUpsertTableRows operations and the row id for the BatchUpdateTableRows and BatchDeleteTableRows operations.

$sel:errorMessage:FailedBatchItem', failedBatchItem_errorMessage - The error message that indicates why the batch item failed.

Filter

data Filter Source #

An object that represents a filter formula along with the id of the context row under which the filter function needs to evaluate.

See: newFilter smart constructor.

Constructors

Filter' (Maybe Text) (Sensitive Text) 

Instances

Instances details
Eq Filter Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.Filter

Methods

(==) :: Filter -> Filter -> Bool #

(/=) :: Filter -> Filter -> Bool #

Show Filter Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.Filter

Generic Filter Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.Filter

Associated Types

type Rep Filter :: Type -> Type #

Methods

from :: Filter -> Rep Filter x #

to :: Rep Filter x -> Filter #

NFData Filter Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.Filter

Methods

rnf :: Filter -> () #

Hashable Filter Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.Filter

Methods

hashWithSalt :: Int -> Filter -> Int #

hash :: Filter -> Int #

ToJSON Filter Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.Filter

type Rep Filter Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.Filter

type Rep Filter = D1 ('MetaData "Filter" "Amazonka.HoneyCode.Types.Filter" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "Filter'" 'PrefixI 'True) (S1 ('MetaSel ('Just "contextRowId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "formula") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Sensitive Text))))

newFilter Source #

Create a value of Filter with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:contextRowId:Filter', filter_contextRowId - The optional contextRowId attribute can be used to specify the row id of the context row if the filter formula contains unqualified references to table columns and needs a context row to evaluate them successfully.

$sel:formula:Filter', filter_formula - A formula representing a filter function that returns zero or more matching rows from a table. Valid formulas in this field return a list of rows from a table. The most common ways of writing a formula to return a list of rows are to use the FindRow() or Filter() functions. Any other formula that returns zero or more rows is also acceptable. For example, you can use a formula that points to a cell that contains a filter function.

ImportDataSource

data ImportDataSource Source #

An object that has details about the source of the data that was submitted for import.

See: newImportDataSource smart constructor.

Instances

Instances details
Eq ImportDataSource Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportDataSource

Read ImportDataSource Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportDataSource

Show ImportDataSource Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportDataSource

Generic ImportDataSource Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportDataSource

Associated Types

type Rep ImportDataSource :: Type -> Type #

NFData ImportDataSource Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportDataSource

Methods

rnf :: ImportDataSource -> () #

Hashable ImportDataSource Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportDataSource

ToJSON ImportDataSource Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportDataSource

FromJSON ImportDataSource Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportDataSource

type Rep ImportDataSource Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportDataSource

type Rep ImportDataSource = D1 ('MetaData "ImportDataSource" "Amazonka.HoneyCode.Types.ImportDataSource" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "ImportDataSource'" 'PrefixI 'True) (S1 ('MetaSel ('Just "dataSourceConfig") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ImportDataSourceConfig)))

newImportDataSource Source #

Create a value of ImportDataSource with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:dataSourceConfig:ImportDataSource', importDataSource_dataSourceConfig - The configuration parameters for the data source of the import

ImportDataSourceConfig

data ImportDataSourceConfig Source #

An object that contains the configuration parameters for the data source of an import request.

See: newImportDataSourceConfig smart constructor.

Instances

Instances details
Eq ImportDataSourceConfig Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportDataSourceConfig

Read ImportDataSourceConfig Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportDataSourceConfig

Show ImportDataSourceConfig Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportDataSourceConfig

Generic ImportDataSourceConfig Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportDataSourceConfig

Associated Types

type Rep ImportDataSourceConfig :: Type -> Type #

NFData ImportDataSourceConfig Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportDataSourceConfig

Methods

rnf :: ImportDataSourceConfig -> () #

Hashable ImportDataSourceConfig Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportDataSourceConfig

ToJSON ImportDataSourceConfig Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportDataSourceConfig

FromJSON ImportDataSourceConfig Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportDataSourceConfig

type Rep ImportDataSourceConfig Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportDataSourceConfig

type Rep ImportDataSourceConfig = D1 ('MetaData "ImportDataSourceConfig" "Amazonka.HoneyCode.Types.ImportDataSourceConfig" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "ImportDataSourceConfig'" 'PrefixI 'True) (S1 ('MetaSel ('Just "dataSourceUrl") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newImportDataSourceConfig :: ImportDataSourceConfig Source #

Create a value of ImportDataSourceConfig with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:dataSourceUrl:ImportDataSourceConfig', importDataSourceConfig_dataSourceUrl - The URL from which source data will be downloaded for the import request.

ImportJobSubmitter

data ImportJobSubmitter Source #

An object that contains the attributes of the submitter of the import job.

See: newImportJobSubmitter smart constructor.

Instances

Instances details
Eq ImportJobSubmitter Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportJobSubmitter

Show ImportJobSubmitter Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportJobSubmitter

Generic ImportJobSubmitter Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportJobSubmitter

Associated Types

type Rep ImportJobSubmitter :: Type -> Type #

NFData ImportJobSubmitter Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportJobSubmitter

Methods

rnf :: ImportJobSubmitter -> () #

Hashable ImportJobSubmitter Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportJobSubmitter

FromJSON ImportJobSubmitter Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportJobSubmitter

type Rep ImportJobSubmitter Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportJobSubmitter

type Rep ImportJobSubmitter = D1 ('MetaData "ImportJobSubmitter" "Amazonka.HoneyCode.Types.ImportJobSubmitter" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "ImportJobSubmitter'" 'PrefixI 'True) (S1 ('MetaSel ('Just "email") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: S1 ('MetaSel ('Just "userArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newImportJobSubmitter :: ImportJobSubmitter Source #

Create a value of ImportJobSubmitter with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:email:ImportJobSubmitter', importJobSubmitter_email - The email id of the submitter of the import job, if available.

$sel:userArn:ImportJobSubmitter', importJobSubmitter_userArn - The AWS user ARN of the submitter of the import job, if available.

ImportOptions

data ImportOptions Source #

An object that contains the options specified by the sumitter of the import request.

See: newImportOptions smart constructor.

Instances

Instances details
Eq ImportOptions Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportOptions

Read ImportOptions Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportOptions

Show ImportOptions Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportOptions

Generic ImportOptions Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportOptions

Associated Types

type Rep ImportOptions :: Type -> Type #

NFData ImportOptions Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportOptions

Methods

rnf :: ImportOptions -> () #

Hashable ImportOptions Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportOptions

ToJSON ImportOptions Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportOptions

FromJSON ImportOptions Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportOptions

type Rep ImportOptions Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ImportOptions

type Rep ImportOptions = D1 ('MetaData "ImportOptions" "Amazonka.HoneyCode.Types.ImportOptions" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "ImportOptions'" 'PrefixI 'True) (S1 ('MetaSel ('Just "delimitedTextOptions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DelimitedTextImportOptions)) :*: S1 ('MetaSel ('Just "destinationOptions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DestinationOptions))))

newImportOptions :: ImportOptions Source #

Create a value of ImportOptions with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:delimitedTextOptions:ImportOptions', importOptions_delimitedTextOptions - Options relating to parsing delimited text. Required if dataFormat is DELIMITED_TEXT.

$sel:destinationOptions:ImportOptions', importOptions_destinationOptions - Options relating to the destination of the import request.

ResultRow

data ResultRow Source #

A single row in the ResultSet.

See: newResultRow smart constructor.

Instances

Instances details
Eq ResultRow Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ResultRow

Show ResultRow Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ResultRow

Generic ResultRow Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ResultRow

Associated Types

type Rep ResultRow :: Type -> Type #

NFData ResultRow Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ResultRow

Methods

rnf :: ResultRow -> () #

Hashable ResultRow Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ResultRow

FromJSON ResultRow Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ResultRow

type Rep ResultRow Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ResultRow

type Rep ResultRow = D1 ('MetaData "ResultRow" "Amazonka.HoneyCode.Types.ResultRow" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "ResultRow'" 'PrefixI 'True) (S1 ('MetaSel ('Just "rowId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "dataItems") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [Sensitive DataItem])))

newResultRow :: ResultRow Source #

Create a value of ResultRow with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:rowId:ResultRow', resultRow_rowId - The ID for a particular row.

$sel:dataItems:ResultRow', resultRow_dataItems - List of all the data cells in a row.

ResultSet

data ResultSet Source #

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

See: newResultSet smart constructor.

Instances

Instances details
Eq ResultSet Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ResultSet

Show ResultSet Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ResultSet

Generic ResultSet Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ResultSet

Associated Types

type Rep ResultSet :: Type -> Type #

NFData ResultSet Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ResultSet

Methods

rnf :: ResultSet -> () #

Hashable ResultSet Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ResultSet

FromJSON ResultSet Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ResultSet

type Rep ResultSet Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.ResultSet

type Rep ResultSet = D1 ('MetaData "ResultSet" "Amazonka.HoneyCode.Types.ResultSet" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "ResultSet'" 'PrefixI 'True) (S1 ('MetaSel ('Just "headers") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [ColumnMetadata]) :*: S1 ('MetaSel ('Just "rows") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [ResultRow])))

newResultSet :: ResultSet Source #

Create a value of ResultSet with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:headers:ResultSet', resultSet_headers - 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.

$sel:rows:ResultSet', resultSet_rows - 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.

SourceDataColumnProperties

data SourceDataColumnProperties Source #

An object that contains the properties for importing data to a specific column in a table.

See: newSourceDataColumnProperties smart constructor.

Instances

Instances details
Eq SourceDataColumnProperties Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.SourceDataColumnProperties

Read SourceDataColumnProperties Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.SourceDataColumnProperties

Show SourceDataColumnProperties Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.SourceDataColumnProperties

Generic SourceDataColumnProperties Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.SourceDataColumnProperties

Associated Types

type Rep SourceDataColumnProperties :: Type -> Type #

NFData SourceDataColumnProperties Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.SourceDataColumnProperties

Hashable SourceDataColumnProperties Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.SourceDataColumnProperties

ToJSON SourceDataColumnProperties Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.SourceDataColumnProperties

FromJSON SourceDataColumnProperties Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.SourceDataColumnProperties

type Rep SourceDataColumnProperties Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.SourceDataColumnProperties

type Rep SourceDataColumnProperties = D1 ('MetaData "SourceDataColumnProperties" "Amazonka.HoneyCode.Types.SourceDataColumnProperties" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "SourceDataColumnProperties'" 'PrefixI 'True) (S1 ('MetaSel ('Just "columnIndex") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural))))

newSourceDataColumnProperties :: SourceDataColumnProperties Source #

Create a value of SourceDataColumnProperties with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:columnIndex:SourceDataColumnProperties', sourceDataColumnProperties_columnIndex - The index of the column in the input file.

Table

data Table Source #

An object representing the properties of a table in a workbook.

See: newTable smart constructor.

Constructors

Table' (Maybe Text) (Maybe Text) 

Instances

Instances details
Eq Table Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.Table

Methods

(==) :: Table -> Table -> Bool #

(/=) :: Table -> Table -> Bool #

Read Table Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.Table

Show Table Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.Table

Methods

showsPrec :: Int -> Table -> ShowS #

show :: Table -> String #

showList :: [Table] -> ShowS #

Generic Table Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.Table

Associated Types

type Rep Table :: Type -> Type #

Methods

from :: Table -> Rep Table x #

to :: Rep Table x -> Table #

NFData Table Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.Table

Methods

rnf :: Table -> () #

Hashable Table Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.Table

Methods

hashWithSalt :: Int -> Table -> Int #

hash :: Table -> Int #

FromJSON Table Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.Table

type Rep Table Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.Table

type Rep Table = D1 ('MetaData "Table" "Amazonka.HoneyCode.Types.Table" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "Table'" 'PrefixI 'True) (S1 ('MetaSel ('Just "tableId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "tableName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newTable :: Table Source #

Create a value of Table with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:tableId:Table', table_tableId - The id of the table.

$sel:tableName:Table', table_tableName - The name of the table.

TableColumn

data TableColumn Source #

An object that contains attributes about a single column in a table

See: newTableColumn smart constructor.

Instances

Instances details
Eq TableColumn Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableColumn

Read TableColumn Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableColumn

Show TableColumn Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableColumn

Generic TableColumn Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableColumn

Associated Types

type Rep TableColumn :: Type -> Type #

NFData TableColumn Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableColumn

Methods

rnf :: TableColumn -> () #

Hashable TableColumn Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableColumn

FromJSON TableColumn Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableColumn

type Rep TableColumn Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableColumn

type Rep TableColumn = D1 ('MetaData "TableColumn" "Amazonka.HoneyCode.Types.TableColumn" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "TableColumn'" 'PrefixI 'True) (S1 ('MetaSel ('Just "format") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Format)) :*: (S1 ('MetaSel ('Just "tableColumnName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "tableColumnId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newTableColumn :: TableColumn Source #

Create a value of TableColumn with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:format:TableColumn', tableColumn_format - The column level format that is applied in the table. An empty value in this field means that the column format is the default value 'AUTO'.

$sel:tableColumnName:TableColumn', tableColumn_tableColumnName - The name of the column in the table.

$sel:tableColumnId:TableColumn', tableColumn_tableColumnId - The id of the column in the table.

TableDataImportJobMetadata

data TableDataImportJobMetadata Source #

The metadata associated with the table data import job that was submitted.

See: newTableDataImportJobMetadata smart constructor.

Instances

Instances details
Eq TableDataImportJobMetadata Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableDataImportJobMetadata

Show TableDataImportJobMetadata Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableDataImportJobMetadata

Generic TableDataImportJobMetadata Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableDataImportJobMetadata

Associated Types

type Rep TableDataImportJobMetadata :: Type -> Type #

NFData TableDataImportJobMetadata Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableDataImportJobMetadata

Hashable TableDataImportJobMetadata Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableDataImportJobMetadata

FromJSON TableDataImportJobMetadata Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableDataImportJobMetadata

type Rep TableDataImportJobMetadata Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableDataImportJobMetadata

type Rep TableDataImportJobMetadata = D1 ('MetaData "TableDataImportJobMetadata" "Amazonka.HoneyCode.Types.TableDataImportJobMetadata" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "TableDataImportJobMetadata'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "submitter") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ImportJobSubmitter) :*: S1 ('MetaSel ('Just "submitTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX)) :*: (S1 ('MetaSel ('Just "importOptions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ImportOptions) :*: S1 ('MetaSel ('Just "dataSource") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ImportDataSource))))

newTableDataImportJobMetadata Source #

Create a value of TableDataImportJobMetadata with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:submitter:TableDataImportJobMetadata', tableDataImportJobMetadata_submitter - Details about the submitter of the import request.

$sel:submitTime:TableDataImportJobMetadata', tableDataImportJobMetadata_submitTime - The timestamp when the job was submitted for import.

$sel:importOptions:TableDataImportJobMetadata', tableDataImportJobMetadata_importOptions - The options that was specified at the time of submitting the import request.

$sel:dataSource:TableDataImportJobMetadata', tableDataImportJobMetadata_dataSource - The source of the data that was submitted for import.

TableRow

data TableRow Source #

An object that contains attributes about a single row in a table

See: newTableRow smart constructor.

Constructors

TableRow' Text [Sensitive Cell] 

Instances

Instances details
Eq TableRow Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableRow

Show TableRow Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableRow

Generic TableRow Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableRow

Associated Types

type Rep TableRow :: Type -> Type #

Methods

from :: TableRow -> Rep TableRow x #

to :: Rep TableRow x -> TableRow #

NFData TableRow Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableRow

Methods

rnf :: TableRow -> () #

Hashable TableRow Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableRow

Methods

hashWithSalt :: Int -> TableRow -> Int #

hash :: TableRow -> Int #

FromJSON TableRow Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableRow

type Rep TableRow Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableRow

type Rep TableRow = D1 ('MetaData "TableRow" "Amazonka.HoneyCode.Types.TableRow" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "TableRow'" 'PrefixI 'True) (S1 ('MetaSel ('Just "rowId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "cells") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [Sensitive Cell])))

newTableRow Source #

Create a value of TableRow with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:rowId:TableRow', tableRow_rowId - The id of the row in the table.

$sel:cells:TableRow', tableRow_cells - A list of cells in the table row. The cells appear in the same order as the columns of the table.

UpdateRowData

data UpdateRowData Source #

Data needed to create a single row in a table as part of the BatchCreateTableRows request.

See: newUpdateRowData smart constructor.

Instances

Instances details
Eq UpdateRowData Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpdateRowData

Show UpdateRowData Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpdateRowData

Generic UpdateRowData Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpdateRowData

Associated Types

type Rep UpdateRowData :: Type -> Type #

NFData UpdateRowData Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpdateRowData

Methods

rnf :: UpdateRowData -> () #

Hashable UpdateRowData Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpdateRowData

ToJSON UpdateRowData Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpdateRowData

type Rep UpdateRowData Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpdateRowData

type Rep UpdateRowData = D1 ('MetaData "UpdateRowData" "Amazonka.HoneyCode.Types.UpdateRowData" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "UpdateRowData'" 'PrefixI 'True) (S1 ('MetaSel ('Just "rowId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "cellsToUpdate") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (HashMap Text CellInput))))

newUpdateRowData Source #

Create a value of UpdateRowData with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:rowId:UpdateRowData', updateRowData_rowId - The id of the row that needs to be updated.

$sel:cellsToUpdate:UpdateRowData', updateRowData_cellsToUpdate - A map representing the cells to update in the given row. The key is the column id of the cell and the value is the CellInput object that represents the data to set in that cell.

UpsertRowData

data UpsertRowData Source #

Data needed to upsert rows in a table as part of a single item in the BatchUpsertTableRows request.

See: newUpsertRowData smart constructor.

Instances

Instances details
Eq UpsertRowData Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpsertRowData

Show UpsertRowData Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpsertRowData

Generic UpsertRowData Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpsertRowData

Associated Types

type Rep UpsertRowData :: Type -> Type #

NFData UpsertRowData Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpsertRowData

Methods

rnf :: UpsertRowData -> () #

Hashable UpsertRowData Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpsertRowData

ToJSON UpsertRowData Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpsertRowData

type Rep UpsertRowData Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpsertRowData

type Rep UpsertRowData = D1 ('MetaData "UpsertRowData" "Amazonka.HoneyCode.Types.UpsertRowData" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "UpsertRowData'" 'PrefixI 'True) (S1 ('MetaSel ('Just "batchItemId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "filter'") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Filter) :*: S1 ('MetaSel ('Just "cellsToUpdate") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (HashMap Text CellInput)))))

newUpsertRowData Source #

Create a value of UpsertRowData with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:batchItemId:UpsertRowData', upsertRowData_batchItemId - An external identifier that represents a single item in the request that is being upserted as part of the BatchUpsertTableRows request. This can be any string that you can use to identify the item in the request. The BatchUpsertTableRows API puts the batch item id in the results to allow you to link data in the request to data in the results.

$sel:filter':UpsertRowData', upsertRowData_filter - The filter formula to use to find existing matching rows to update. The formula needs to return zero or more rows. If the formula returns 0 rows, then a new row will be appended in the target table. If the formula returns one or more rows, then the returned rows will be updated.

Note that the filter formula needs to return rows from the target table for the upsert operation to succeed. If the filter formula has a syntax error or it doesn't evaluate to zero or more rows in the target table for any one item in the input list, then the entire BatchUpsertTableRows request fails and no updates are made to the table.

$sel:cellsToUpdate:UpsertRowData', upsertRowData_cellsToUpdate - A map representing the cells to update for the matching rows or an appended row. The key is the column id of the cell and the value is the CellInput object that represents the data to set in that cell.

UpsertRowsResult

data UpsertRowsResult Source #

An object that represents the result of a single upsert row request.

See: newUpsertRowsResult smart constructor.

Instances

Instances details
Eq UpsertRowsResult Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpsertRowsResult

Read UpsertRowsResult Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpsertRowsResult

Show UpsertRowsResult Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpsertRowsResult

Generic UpsertRowsResult Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpsertRowsResult

Associated Types

type Rep UpsertRowsResult :: Type -> Type #

NFData UpsertRowsResult Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpsertRowsResult

Methods

rnf :: UpsertRowsResult -> () #

Hashable UpsertRowsResult Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpsertRowsResult

FromJSON UpsertRowsResult Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpsertRowsResult

type Rep UpsertRowsResult Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpsertRowsResult

type Rep UpsertRowsResult = D1 ('MetaData "UpsertRowsResult" "Amazonka.HoneyCode.Types.UpsertRowsResult" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "UpsertRowsResult'" 'PrefixI 'True) (S1 ('MetaSel ('Just "rowIds") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (NonEmpty Text)) :*: S1 ('MetaSel ('Just "upsertAction") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 UpsertAction)))

newUpsertRowsResult Source #

Create a value of UpsertRowsResult with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:rowIds:UpsertRowsResult', upsertRowsResult_rowIds - The list of row ids that were changed as part of an upsert row operation. If the upsert resulted in an update, this list could potentially contain multiple rows that matched the filter and hence got updated. If the upsert resulted in an append, this list would only have the single row that was appended.

$sel:upsertAction:UpsertRowsResult', upsertRowsResult_upsertAction - The result of the upsert action.

VariableValue

data VariableValue Source #

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

See: newVariableValue smart constructor.

Constructors

VariableValue' Text 

Instances

Instances details
Eq VariableValue Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.VariableValue

Show VariableValue Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.VariableValue

Generic VariableValue Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.VariableValue

Associated Types

type Rep VariableValue :: Type -> Type #

NFData VariableValue Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.VariableValue

Methods

rnf :: VariableValue -> () #

Hashable VariableValue Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.VariableValue

ToJSON VariableValue Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.VariableValue

type Rep VariableValue Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.VariableValue

type Rep VariableValue = D1 ('MetaData "VariableValue" "Amazonka.HoneyCode.Types.VariableValue" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "VariableValue'" 'PrefixI 'True) (S1 ('MetaSel ('Just "rawValue") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newVariableValue Source #

Create a value of VariableValue with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:rawValue:VariableValue', variableValue_rawValue - Raw value of the variable.