Class: Aws::ManagedBlockchainQuery::Types::GetTransactionInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::ManagedBlockchainQuery::Types::GetTransactionInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-managedblockchainquery/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#network ⇒ String
The blockchain network where the transaction occurred.
-
#transaction_hash ⇒ String
The hash of a transaction.
-
#transaction_id ⇒ String
The identifier of a Bitcoin transaction.
Instance Attribute Details
#network ⇒ String
The blockchain network where the transaction occurred.
451 452 453 454 455 456 457 |
# File 'lib/aws-sdk-managedblockchainquery/types.rb', line 451 class GetTransactionInput < Struct.new( :transaction_hash, :transaction_id, :network) SENSITIVE = [] include Aws::Structure end |
#transaction_hash ⇒ String
The hash of a transaction. It is generated when a transaction is created.
451 452 453 454 455 456 457 |
# File 'lib/aws-sdk-managedblockchainquery/types.rb', line 451 class GetTransactionInput < Struct.new( :transaction_hash, :transaction_id, :network) SENSITIVE = [] include Aws::Structure end |
#transaction_id ⇒ String
The identifier of a Bitcoin transaction. It is generated when a transaction is created.
<note markdown=“1”> ‘transactionId` is only supported on the Bitcoin networks.
</note>
451 452 453 454 455 456 457 |
# File 'lib/aws-sdk-managedblockchainquery/types.rb', line 451 class GetTransactionInput < Struct.new( :transaction_hash, :transaction_id, :network) SENSITIVE = [] include Aws::Structure end |