Class: Aws::ManagedBlockchainQuery::Types::ListTransactionEventsInput

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#max_resultsInteger

The maximum number of transaction events to list.

<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>

Returns:

  • (Integer)


570
571
572
573
574
575
576
577
# File 'lib/aws-sdk-managedblockchainquery/types.rb', line 570

class ListTransactionEventsInput < Struct.new(
  :transaction_hash,
  :network,
  :next_token,
  :max_results)
  SENSITIVE = []
  include Aws::Structure
end

#networkString

The blockchain network where the transaction events occurred.

Returns:

  • (String)


570
571
572
573
574
575
576
577
# File 'lib/aws-sdk-managedblockchainquery/types.rb', line 570

class ListTransactionEventsInput < Struct.new(
  :transaction_hash,
  :network,
  :next_token,
  :max_results)
  SENSITIVE = []
  include Aws::Structure
end

#next_tokenString

The pagination token that indicates the next set of results to retrieve.

Returns:

  • (String)


570
571
572
573
574
575
576
577
# File 'lib/aws-sdk-managedblockchainquery/types.rb', line 570

class ListTransactionEventsInput < Struct.new(
  :transaction_hash,
  :network,
  :next_token,
  :max_results)
  SENSITIVE = []
  include Aws::Structure
end

#transaction_hashString

The hash of the transaction. It is generated whenever a transaction is verified and added to the blockchain.

Returns:

  • (String)


570
571
572
573
574
575
576
577
# File 'lib/aws-sdk-managedblockchainquery/types.rb', line 570

class ListTransactionEventsInput < Struct.new(
  :transaction_hash,
  :network,
  :next_token,
  :max_results)
  SENSITIVE = []
  include Aws::Structure
end