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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-managedblockchainquery/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.

You must always specify the network property of this container when using this operation.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#contract_addressString

This is the address of the contract.

Returns:

  • (String)


1102
1103
1104
1105
1106
1107
1108
# File 'gems/aws-sdk-managedblockchainquery/lib/aws-sdk-managedblockchainquery/types.rb', line 1102

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

#networkString

The blockchain network of the token.

Returns:

  • (String)


1102
1103
1104
1105
1106
1107
1108
# File 'gems/aws-sdk-managedblockchainquery/lib/aws-sdk-managedblockchainquery/types.rb', line 1102

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

#token_idString

The unique identifier of the token.

Returns:

  • (String)


1102
1103
1104
1105
1106
1107
1108
# File 'gems/aws-sdk-managedblockchainquery/lib/aws-sdk-managedblockchainquery/types.rb', line 1102

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