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.

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>

Returns:

  • (Integer)


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

#networkString

The blockchain network where the transaction events occurred.

Returns:

  • (String)


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_tokenString

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

Returns:

  • (String)


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_hashString

The hash of a transaction. It is generated when a transaction is created.

Returns:

  • (String)


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_idString

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>

Returns:

  • (String)


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