Class: Aws::ManagedBlockchainQuery::Types::TokenFilter
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::ManagedBlockchainQuery::Types::TokenFilter
 
- 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.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #contract_address  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    This is the address of the contract. 
- 
  
    
      #network  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The blockchain network of the token. 
- 
  
    
      #token_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The unique identifier of the token. 
Instance Attribute Details
#contract_address ⇒ String
This is the address of the contract.
| 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 | 
#network ⇒ String
The blockchain network of the token.
| 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_id ⇒ String
The unique identifier of the token.
| 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 |