Class: Aws::IoTThingsGraph::Types::SearchFlowTemplatesRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::IoTThingsGraph::Types::SearchFlowTemplatesRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-iotthingsgraph/types.rb
 
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #filters  ⇒ Array<Types::FlowTemplateFilter> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An array of objects that limit the result set.
 - 
  
    
      #max_results  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The maximum number of results to return in the response.
 - 
  
    
      #next_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The string that specifies the next page of results.
 
Instance Attribute Details
#filters ⇒ Array<Types::FlowTemplateFilter>
An array of objects that limit the result set. The only valid filter is ‘DEVICE_MODEL_ID`.
      1122 1123 1124 1125 1126 1127 1128  | 
    
      # File 'lib/aws-sdk-iotthingsgraph/types.rb', line 1122 class SearchFlowTemplatesRequest < Struct.new( :filters, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end  | 
  
#max_results ⇒ Integer
The maximum number of results to return in the response.
      1122 1123 1124 1125 1126 1127 1128  | 
    
      # File 'lib/aws-sdk-iotthingsgraph/types.rb', line 1122 class SearchFlowTemplatesRequest < Struct.new( :filters, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end  | 
  
#next_token ⇒ String
The string that specifies the next page of results. Use this when you’re paginating results.
      1122 1123 1124 1125 1126 1127 1128  | 
    
      # File 'lib/aws-sdk-iotthingsgraph/types.rb', line 1122 class SearchFlowTemplatesRequest < Struct.new( :filters, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end  |