Class: Aws::ManagedBlockchainQuery::Types::TokenFilter

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

Overview

The container of the token filter like the contract address on a given blockchain network or a unique token identifier on a given blockchain network.

<note markdown=“1”> You must always specify the network property of this container when using this operation.

</note>

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#contract_addressString

This is the address of the contract.

Returns:

  • (String)


876
877
878
879
880
881
882
# File 'lib/aws-sdk-managedblockchainquery/types.rb', line 876

class TokenFilter < Struct.new(
  :network,
  :contract_address,
  :token_id)
  SENSITIVE = []
  include Aws::Structure
end

#networkString

The blockchain network of the token.

Returns:

  • (String)


876
877
878
879
880
881
882
# File 'lib/aws-sdk-managedblockchainquery/types.rb', line 876

class TokenFilter < Struct.new(
  :network,
  :contract_address,
  :token_id)
  SENSITIVE = []
  include Aws::Structure
end

#token_idString

The unique identifier of the token.

Returns:

  • (String)


876
877
878
879
880
881
882
# File 'lib/aws-sdk-managedblockchainquery/types.rb', line 876

class TokenFilter < Struct.new(
  :network,
  :contract_address,
  :token_id)
  SENSITIVE = []
  include Aws::Structure
end