Perform multiple DeleteAttributes operations in a single call. This helps you yield savings in round trips and latencies, and enables Amazon SimpleDB to optimize requests, which generally yields better throughput. Amazon SimpleDB uniquely identifies attributes in an item by their name/value combinations. For example, a single item can have the attributes { "first_name", "first_value" } and { "first_name", second_value" }. However, it cannot have two attribute instances where both the attribute name and attribute value are the same. Note: You cannot specify an empty string as an item or attribute name. The operation succeeds or fails in its entirety. There are no partial deletes. You can execute multiple BatchDeleteAttributes operations and other operations in parallel. However, large numbers of concurrent BatchDeleteAttributes calls can result in Service Unavailable (503) responses. This operation is vulnerable to exceeding the maximum URL size. The following limitations are enforced for this operation: * 256 attribute name-value pairs per item * 1 MB request size * 1 billion attributes per domain * 10 GB of total user data storage per domain * 25 item limit per BatchDeleteAttributes operation

Namespace: Amazon.SimpleDB.Model
Assembly: AWSSDK (in AWSSDK.dll) Version: 1.4.10.0 (1.4.10.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public class BatchDeleteAttributesRequest
Public Class BatchDeleteAttributesRequest
public ref class BatchDeleteAttributesRequest

Members

            
 All Members  Constructors   Properties   Methods  
 Public

 Protected
 Instance

 Static 
 Declared

 Inherited
 XNA Framework Only 

 .NET Compact Framework Only 

 MemberDescription
BatchDeleteAttributesRequest()()()()
Initializes a new instance of the BatchDeleteAttributesRequest class
DomainName
Gets and sets the DomainName property. The name of the domain in which to perform the operation.
Equals(Object)
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
GetHashCode()()()()
Serves as a hash function for a particular type.
(Inherited from Object.)
GetType()()()()
Gets the Type of the current instance.
(Inherited from Object.)
IsSetDomainName()()()()
Checks if DomainName property is set
IsSetItem()()()()
Checks if Item property is set
Item
Gets and sets the Item property. Items represent individual objects that contain one or more attribute name-value pairs.
ToString()()()()
Returns a String that represents the current Object.
(Inherited from Object.)
WithDomainName(String)
Sets the DomainName property
WithItem(array<DeleteableItem>[]()[][])
Sets the Item property

Inheritance Hierarchy

System..::..Object
  Amazon.SimpleDB.Model..::..BatchDeleteAttributesRequest

See Also