Batch Delete Attributes
| simpledb_batch_delete_attributes | R Documentation | 
Performs multiple DeleteAttributes operations in a single call, which reduces round trips and latencies¶
Description¶
Performs multiple DeleteAttributes operations in a single call, which reduces round trips and latencies. This enables Amazon SimpleDB to optimize requests, which generally yields better throughput.
The following limitations are enforced for this operation:
- 
1 MB request size
 - 
25 item limit per BatchDeleteAttributes operation
 
Usage¶
simpledb_batch_delete_attributes(DomainName, Items)
Arguments¶
DomainName | 
[required] The name of the domain in which the attributes are being deleted.  | 
Items | 
[required] A list of items on which to perform the operation.  | 
Value¶
An empty list.
Request syntax¶
svc$batch_delete_attributes(
  DomainName = "string",
  Items = list(
    list(
      Name = "string",
      Attributes = list(
        list(
          Name = "string",
          AlternateNameEncoding = "string",
          Value = "string",
          AlternateValueEncoding = "string"
        )
      )
    )
  )
)