Class: Aws::ManagedBlockchainQuery::Types::ListTransactionEventsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::ManagedBlockchainQuery::Types::ListTransactionEventsInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-managedblockchainquery/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of transaction events to list.
-
#network ⇒ String
The blockchain network where the transaction events occurred.
-
#next_token ⇒ String
The pagination token that indicates the next set of results to retrieve.
-
#transaction_hash ⇒ String
The hash of a transaction.
-
#transaction_id ⇒ String
The identifier of a Bitcoin transaction.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of transaction events to list.
Default: 100
<note markdown=“1”> Even if additional results can be retrieved, the request can return less results than maxResults or an empty array of results.
To retrieve the next set of results, make another request with the
returned nextToken value. The value of nextToken is null when there are no more results to return
</note>
765 766 767 768 769 770 771 772 773 |
# File 'lib/aws-sdk-managedblockchainquery/types.rb', line 765 class ListTransactionEventsInput < Struct.new( :transaction_hash, :transaction_id, :network, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#network ⇒ String
The blockchain network where the transaction events occurred.
765 766 767 768 769 770 771 772 773 |
# File 'lib/aws-sdk-managedblockchainquery/types.rb', line 765 class ListTransactionEventsInput < Struct.new( :transaction_hash, :transaction_id, :network, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The pagination token that indicates the next set of results to retrieve.
765 766 767 768 769 770 771 772 773 |
# File 'lib/aws-sdk-managedblockchainquery/types.rb', line 765 class ListTransactionEventsInput < Struct.new( :transaction_hash, :transaction_id, :network, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#transaction_hash ⇒ String
The hash of a transaction. It is generated when a transaction is created.
765 766 767 768 769 770 771 772 773 |
# File 'lib/aws-sdk-managedblockchainquery/types.rb', line 765 class ListTransactionEventsInput < Struct.new( :transaction_hash, :transaction_id, :network, :next_token, :max_results) 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>
765 766 767 768 769 770 771 772 773 |
# File 'lib/aws-sdk-managedblockchainquery/types.rb', line 765 class ListTransactionEventsInput < Struct.new( :transaction_hash, :transaction_id, :network, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |