Class: Aws::QLDB::Types::GetDigestResponse

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

Overview

Constant Summary collapse

SENSITIVE =
[:digest_tip_address]

Instance Attribute Summary collapse

Instance Attribute Details

#digestString

The 256-bit hash value representing the digest returned by a ‘GetDigest` request.

Returns:

  • (String)


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_addressTypes::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`.

Returns:



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