Skip to content

Batch Delete Data Table Value

connect_batch_delete_data_table_value R Documentation

Deletes multiple values from a data table

Description

Deletes multiple values from a data table. API users may delete values at any time. When deletion is requested from the admin website, a warning is shown alerting the user of the most recent time the attribute and its values were accessed. System managed values are not deletable by customers.

Usage

connect_batch_delete_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 delete, each specifying primary values, attribute name, and lock version information.

Value

A list with the following syntax:

list(
  Successful = list(
    list(
      PrimaryValues = list(
        list(
          AttributeName = "string",
          Value = "string"
        )
      ),
      AttributeName = "string",
      LockVersion = list(
        DataTable = "string",
        Attribute = "string",
        PrimaryValues = "string",
        Value = "string"
      )
    )
  ),
  Failed = list(
    list(
      PrimaryValues = list(
        list(
          AttributeName = "string",
          Value = "string"
        )
      ),
      AttributeName = "string",
      Message = "string"
    )
  )
)

Request syntax

svc$batch_delete_data_table_value(
  InstanceId = "string",
  DataTableId = "string",
  Values = list(
    list(
      PrimaryValues = list(
        list(
          AttributeName = "string",
          Value = "string"
        )
      ),
      AttributeName = "string",
      LockVersion = list(
        DataTable = "string",
        Attribute = "string",
        PrimaryValues = "string",
        Value = "string"
      )
    )
  )
)