Skip to content

Evaluate Data Table Values

connect_evaluate_data_table_values R Documentation

Evaluates values at the time of the request and returns them

Description

Evaluates values at the time of the request and returns them. It considers the request's timezone or the table's timezone, in that order, when accessing time based tables. When a value is accessed, the accessor's identity and the time of access are saved alongside the value to help identify values that are actively in use. The term "Batch" is not included in the operation name since it does not meet all the criteria for a batch operation as specified in Batch Operations: Amazon Web Services API Standards.

Usage

connect_evaluate_data_table_values(InstanceId, DataTableId, Values,
  TimeZone, NextToken, MaxResults)

Arguments

InstanceId

[required] The unique identifier for the Amazon Connect instance.

DataTableId

[required] The unique identifier for the data table. Must also accept the table ARN with or without a version alias.

Values

[required] A list of value evaluation sets specifying which primary values and attributes to evaluate.

TimeZone

Optional IANA timezone identifier to use when resolving time based dynamic values. Defaults to the data table time zone if not provided.

NextToken

Specify the pagination token from a previous request to retrieve the next page of results.

MaxResults

The maximum number of data table values to return in one page of results.

Value

A list with the following syntax:

list(
  Values = list(
    list(
      RecordId = "string",
      PrimaryValues = list(
        list(
          AttributeName = "string",
          Value = "string"
        )
      ),
      AttributeName = "string",
      ValueType = "TEXT"|"NUMBER"|"BOOLEAN"|"TEXT_LIST"|"NUMBER_LIST",
      Found = TRUE|FALSE,
      Error = TRUE|FALSE,
      EvaluatedValue = "string"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$evaluate_data_table_values(
  InstanceId = "string",
  DataTableId = "string",
  Values = list(
    list(
      PrimaryValues = list(
        list(
          AttributeName = "string",
          Value = "string"
        )
      ),
      AttributeNames = list(
        "string"
      )
    )
  ),
  TimeZone = "string",
  NextToken = "string",
  MaxResults = 123
)