Class: Aws::QLDB::Types::GetDigestResponse
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::QLDB::Types::GetDigestResponse
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-qldb/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 [:digest_tip_address]
Instance Attribute Summary collapse
- 
  
    
      #digest  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The 256-bit hash value representing the digest returned by a ‘GetDigest` request.
 - 
  
    
      #digest_tip_address  ⇒ Types::ValueHolder 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The latest block location covered by the digest that you requested.
 
Instance Attribute Details
#digest ⇒ String
The 256-bit hash value representing the digest returned by a ‘GetDigest` request.
      533 534 535 536 537 538  | 
    
      # File 'lib/aws-sdk-qldb/types.rb', line 533 class GetDigestResponse < Struct.new( :digest, :digest_tip_address) SENSITIVE = [:digest_tip_address] include Aws::Structure end  | 
  
#digest_tip_address ⇒ Types::ValueHolder
The latest block location covered by the digest that you requested. An address is an Amazon Ion structure that has two fields: ‘strandId` and `sequenceNo`.
      533 534 535 536 537 538  | 
    
      # File 'lib/aws-sdk-qldb/types.rb', line 533 class GetDigestResponse < Struct.new( :digest, :digest_tip_address) SENSITIVE = [:digest_tip_address] include Aws::Structure end  |