Class: Aws::CognitoSync::Types::RecordPatch
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CognitoSync::Types::RecordPatch
 
 
- Defined in:
 - gems/aws-sdk-cognitosync/lib/aws-sdk-cognitosync/types.rb
 
Overview
An update operation for a record.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #device_last_modified_date  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The last modified date of the client device.
 - 
  
    
      #key  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The key associated with the record patch.
 - 
  
    
      #op  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An operation, either replace or remove.
 - 
  
    
      #sync_count  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Last known server sync count for this record.
 - 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The value associated with the record patch.
 
Instance Attribute Details
#device_last_modified_date ⇒ Time
The last modified date of the client device.
      929 930 931 932 933 934 935 936 937  | 
    
      # File 'gems/aws-sdk-cognitosync/lib/aws-sdk-cognitosync/types.rb', line 929 class RecordPatch < Struct.new( :op, :key, :value, :sync_count, :device_last_modified_date) SENSITIVE = [] include Aws::Structure end  | 
  
#key ⇒ String
The key associated with the record patch.
      929 930 931 932 933 934 935 936 937  | 
    
      # File 'gems/aws-sdk-cognitosync/lib/aws-sdk-cognitosync/types.rb', line 929 class RecordPatch < Struct.new( :op, :key, :value, :sync_count, :device_last_modified_date) SENSITIVE = [] include Aws::Structure end  | 
  
#op ⇒ String
An operation, either replace or remove.
      929 930 931 932 933 934 935 936 937  | 
    
      # File 'gems/aws-sdk-cognitosync/lib/aws-sdk-cognitosync/types.rb', line 929 class RecordPatch < Struct.new( :op, :key, :value, :sync_count, :device_last_modified_date) SENSITIVE = [] include Aws::Structure end  | 
  
#sync_count ⇒ Integer
Last known server sync count for this record. Set to 0 if unknown.
      929 930 931 932 933 934 935 936 937  | 
    
      # File 'gems/aws-sdk-cognitosync/lib/aws-sdk-cognitosync/types.rb', line 929 class RecordPatch < Struct.new( :op, :key, :value, :sync_count, :device_last_modified_date) SENSITIVE = [] include Aws::Structure end  | 
  
#value ⇒ String
The value associated with the record patch.
      929 930 931 932 933 934 935 936 937  | 
    
      # File 'gems/aws-sdk-cognitosync/lib/aws-sdk-cognitosync/types.rb', line 929 class RecordPatch < Struct.new( :op, :key, :value, :sync_count, :device_last_modified_date) SENSITIVE = [] include Aws::Structure end  |