Class: Aws::QLDB::Types::GetBlockResponse

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-qldb/lib/aws-sdk-qldb/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[:block, :proof]

Instance Attribute Summary collapse

Instance Attribute Details

#blockTypes::ValueHolder

The block data object in Amazon Ion format.

Returns:



501
502
503
504
505
506
# File 'gems/aws-sdk-qldb/lib/aws-sdk-qldb/types.rb', line 501

class GetBlockResponse < Struct.new(
  :block,
  :proof)
  SENSITIVE = [:block, :proof]
  include Aws::Structure
end

#proofTypes::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.

Returns:



501
502
503
504
505
506
# File 'gems/aws-sdk-qldb/lib/aws-sdk-qldb/types.rb', line 501

class GetBlockResponse < Struct.new(
  :block,
  :proof)
  SENSITIVE = [:block, :proof]
  include Aws::Structure
end