Class: Aws::IoTSiteWise::Types::ExecuteQueryRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSiteWise::Types::ExecuteQueryRequest
- Includes:
- Structure
- Defined in:
- 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.
5693 5694 5695 5696 5697 5698 5699 5700 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 5693 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. The default is 25.
5693 5694 5695 5696 5697 5698 5699 5700 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 5693 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.
5693 5694 5695 5696 5697 5698 5699 5700 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 5693 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.
5693 5694 5695 5696 5697 5698 5699 5700 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 5693 class ExecuteQueryRequest < Struct.new( :query_statement, :next_token, :max_results, :client_token) SENSITIVE = [] include Aws::Structure end |