Class: Aws::QLDB::Types::GetBlockResponse
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::QLDB::Types::GetBlockResponse
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-qldb/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 [:block, :proof]
Instance Attribute Summary collapse
- 
  
    
      #block  ⇒ Types::ValueHolder 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The block data object in Amazon Ion format.
 - 
  
    
      #proof  ⇒ Types::ValueHolder 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The proof object in Amazon Ion format returned by a ‘GetBlock` request.
 
Instance Attribute Details
#block ⇒ Types::ValueHolder
The block data object in Amazon Ion format.
      501 502 503 504 505 506  | 
    
      # File 'lib/aws-sdk-qldb/types.rb', line 501 class GetBlockResponse < Struct.new( :block, :proof) SENSITIVE = [:block, :proof] include Aws::Structure end  | 
  
#proof ⇒ Types::ValueHolder
The proof object in Amazon Ion format returned by a ‘GetBlock` request. A proof contains the list of hash values required to recalculate the specified digest using a Merkle tree, starting with the specified block.
      501 502 503 504 505 506  | 
    
      # File 'lib/aws-sdk-qldb/types.rb', line 501 class GetBlockResponse < Struct.new( :block, :proof) SENSITIVE = [:block, :proof] include Aws::Structure end  |