Class: Aws::IoTSiteWise::Types::DescribeQueryResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSiteWise::Types::DescribeQueryResponse
- Defined in:
- gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb
Overview
Contains the response for the DescribeQuery operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#completed_at ⇒ Time
The date and time when the query reached a terminal state, in Unix epoch time.
-
#error_message ⇒ String
A human-readable error description.
-
#query_id ⇒ String
The unique identifier for the query execution.
-
#statistics ⇒ Types::QueryStatistics
The query execution statistics.
-
#status ⇒ String
The current query status.
-
#submitted_at ⇒ Time
The date and time when the query was submitted, in Unix epoch time.
Instance Attribute Details
#completed_at ⇒ Time
The date and time when the query reached a terminal state, in Unix epoch time. This field is present when the query status is COMPLETED, FAILED, or CANCELED.
7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 7930 class DescribeQueryResponse < Struct.new( :query_id, :status, :submitted_at, :completed_at, :statistics, :error_message) SENSITIVE = [] include Aws::Structure end |
#error_message ⇒ String
A human-readable error description. This field is present when the query status is FAILED.
7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 7930 class DescribeQueryResponse < Struct.new( :query_id, :status, :submitted_at, :completed_at, :statistics, :error_message) SENSITIVE = [] include Aws::Structure end |
#query_id ⇒ String
The unique identifier for the query execution.
7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 7930 class DescribeQueryResponse < Struct.new( :query_id, :status, :submitted_at, :completed_at, :statistics, :error_message) SENSITIVE = [] include Aws::Structure end |
#statistics ⇒ Types::QueryStatistics
The query execution statistics. This field is present when the query status is COMPLETED.
7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 7930 class DescribeQueryResponse < Struct.new( :query_id, :status, :submitted_at, :completed_at, :statistics, :error_message) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The current query status.
7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 7930 class DescribeQueryResponse < Struct.new( :query_id, :status, :submitted_at, :completed_at, :statistics, :error_message) SENSITIVE = [] include Aws::Structure end |
#submitted_at ⇒ Time
The date and time when the query was submitted, in Unix epoch time.
7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 7930 class DescribeQueryResponse < Struct.new( :query_id, :status, :submitted_at, :completed_at, :statistics, :error_message) SENSITIVE = [] include Aws::Structure end |