Class: Aws::DynamoDB::Types::TransactWriteItem
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::DynamoDB::Types::TransactWriteItem
 
 
- Defined in:
 - gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb
 
Overview
A list of requests that can perform update, put, delete, or check operations on multiple items in one or more tables atomically.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #condition_check  ⇒ Types::ConditionCheck 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A request to perform a check item operation.
 - 
  
    
      #delete  ⇒ Types::Delete 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A request to perform a
DeleteItemoperation. - 
  
    
      #put  ⇒ Types::Put 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A request to perform a
PutItemoperation. - 
  
    
      #update  ⇒ Types::Update 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A request to perform an
UpdateItemoperation. 
Instance Attribute Details
#condition_check ⇒ Types::ConditionCheck
A request to perform a check item operation.
      9566 9567 9568 9569 9570 9571 9572 9573  | 
    
      # File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 9566 class TransactWriteItem < Struct.new( :condition_check, :put, :delete, :update) SENSITIVE = [] include Aws::Structure end  | 
  
#delete ⇒ Types::Delete
A request to perform a DeleteItem operation.
      9566 9567 9568 9569 9570 9571 9572 9573  | 
    
      # File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 9566 class TransactWriteItem < Struct.new( :condition_check, :put, :delete, :update) SENSITIVE = [] include Aws::Structure end  | 
  
#put ⇒ Types::Put
A request to perform a PutItem operation.
      9566 9567 9568 9569 9570 9571 9572 9573  | 
    
      # File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 9566 class TransactWriteItem < Struct.new( :condition_check, :put, :delete, :update) SENSITIVE = [] include Aws::Structure end  | 
  
#update ⇒ Types::Update
A request to perform an UpdateItem operation.
      9566 9567 9568 9569 9570 9571 9572 9573  | 
    
      # File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 9566 class TransactWriteItem < Struct.new( :condition_check, :put, :delete, :update) SENSITIVE = [] include Aws::Structure end  |