Skip to content

Batch Describe Data Table Value

connect_batch_describe_data_table_value R Documentation

Retrieves multiple values from a data table without evaluating expressions

Description

Retrieves multiple values from a data table without evaluating expressions. Returns the raw stored values along with metadata such as lock versions and modification timestamps. "Describe" is a deprecated term but is allowed to maintain consistency with existing operations.

Usage

connect_batch_describe_data_table_value(InstanceId, DataTableId, Values)

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 identifiers to retrieve, each specifying primary values and attribute names.

Value

A list with the following syntax:

list(
  Successful = list(
    list(
      RecordId = "string",
      AttributeId = "string",
      PrimaryValues = list(
        list(
          AttributeName = "string",
          AttributeId = "string",
          Value = "string"
        )
      ),
      AttributeName = "string",
      Value = "string",
      LockVersion = list(
        DataTable = "string",
        Attribute = "string",
        PrimaryValues = "string",
        Value = "string"
      ),
      LastModifiedTime = as.POSIXct(
        "2015-01-01"
      ),
      LastModifiedRegion = "string"
    )
  ),
  Failed = list(
    list(
      PrimaryValues = list(
        list(
          AttributeName = "string",
          Value = "string"
        )
      ),
      AttributeName = "string",
      Message = "string"
    )
  )
)

Request syntax

svc$batch_describe_data_table_value(
  InstanceId = "string",
  DataTableId = "string",
  Values = list(
    list(
      PrimaryValues = list(
        list(
          AttributeName = "string",
          Value = "string"
        )
      ),
      AttributeName = "string"
    )
  )
)