Class: Aws::IoTSiteWise::Types::ExecuteQueryRequest
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::IoTSiteWise::Types::ExecuteQueryRequest
 
- Defined in:
- gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #client_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. 
- 
  
    
      #max_results  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The maximum number of results to return at one time. 
- 
  
    
      #next_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The string that specifies the next page of results. 
- 
  
    
      #query_statement  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The IoT SiteWise query statement. 
Instance Attribute Details
#client_token ⇒ String
A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don't reuse this client token if a new idempotent request is required.
A suitable default value is auto-generated. You should normally not need to pass this option.
| 6529 6530 6531 6532 6533 6534 6535 6536 | # File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 6529 class ExecuteQueryRequest < Struct.new( :query_statement, :next_token, :max_results, :client_token) SENSITIVE = [] include Aws::Structure end | 
#max_results ⇒ Integer
The maximum number of results to return at one time.
- Minimum is 1 
- Maximum is 20000 
- Default is 20000 
| 6529 6530 6531 6532 6533 6534 6535 6536 | # File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 6529 class ExecuteQueryRequest < Struct.new( :query_statement, :next_token, :max_results, :client_token) SENSITIVE = [] include Aws::Structure end | 
#next_token ⇒ String
The string that specifies the next page of results.
| 6529 6530 6531 6532 6533 6534 6535 6536 | # File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 6529 class ExecuteQueryRequest < Struct.new( :query_statement, :next_token, :max_results, :client_token) SENSITIVE = [] include Aws::Structure end | 
#query_statement ⇒ String
The IoT SiteWise query statement.
| 6529 6530 6531 6532 6533 6534 6535 6536 | # File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 6529 class ExecuteQueryRequest < Struct.new( :query_statement, :next_token, :max_results, :client_token) SENSITIVE = [] include Aws::Structure end |