Class: Aws::QLDB::Types::GetBlockRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::QLDB::Types::GetBlockRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-qldb/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:block_address, :digest_tip_address]
Instance Attribute Summary collapse
-
#block_address ⇒ Types::ValueHolder
The location of the block that you want to request.
-
#digest_tip_address ⇒ Types::ValueHolder
The latest block location covered by the digest for which to request a proof.
-
#name ⇒ String
The name of the ledger.
Instance Attribute Details
#block_address ⇒ Types::ValueHolder
The location of the block that you want to request. An address is an Amazon Ion structure that has two fields: ‘strandId` and `sequenceNo`.
For example: ‘strandId:“BlFTjlSXze9BIh1KOszcE3”,sequenceNo:14`.
480 481 482 483 484 485 486 |
# File 'lib/aws-sdk-qldb/types.rb', line 480 class GetBlockRequest < Struct.new( :name, :block_address, :digest_tip_address) SENSITIVE = [:block_address, :digest_tip_address] include Aws::Structure end |
#digest_tip_address ⇒ Types::ValueHolder
The latest block location covered by the digest for which to request a proof. An address is an Amazon Ion structure that has two fields: ‘strandId` and `sequenceNo`.
For example: ‘strandId:“BlFTjlSXze9BIh1KOszcE3”,sequenceNo:49`.
480 481 482 483 484 485 486 |
# File 'lib/aws-sdk-qldb/types.rb', line 480 class GetBlockRequest < Struct.new( :name, :block_address, :digest_tip_address) SENSITIVE = [:block_address, :digest_tip_address] include Aws::Structure end |
#name ⇒ String
The name of the ledger.
480 481 482 483 484 485 486 |
# File 'lib/aws-sdk-qldb/types.rb', line 480 class GetBlockRequest < Struct.new( :name, :block_address, :digest_tip_address) SENSITIVE = [:block_address, :digest_tip_address] include Aws::Structure end |