Class: Aws::TimestreamQuery::Types::QueryStatus
- Inherits:
-
Struct
- Object
- Struct
- Aws::TimestreamQuery::Types::QueryStatus
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-timestreamquery/types.rb
Overview
Information about the status of the query, including progress and bytes scanned.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cumulative_bytes_metered ⇒ Integer
The amount of data scanned by the query in bytes that you will be charged for.
-
#cumulative_bytes_scanned ⇒ Integer
The amount of data scanned by the query in bytes.
-
#progress_percentage ⇒ Float
The progress of the query, expressed as a percentage.
Instance Attribute Details
#cumulative_bytes_metered ⇒ Integer
The amount of data scanned by the query in bytes that you will be charged for. This is a cumulative sum and represents the total amount of data that you will be charged for since the query was started. The charge is applied only once and is either applied when the query completes running or when the query is cancelled.
893 894 895 896 897 898 899 |
# File 'lib/aws-sdk-timestreamquery/types.rb', line 893 class QueryStatus < Struct.new( :progress_percentage, :cumulative_bytes_scanned, :cumulative_bytes_metered) SENSITIVE = [] include Aws::Structure end |
#cumulative_bytes_scanned ⇒ Integer
The amount of data scanned by the query in bytes. This is a cumulative sum and represents the total amount of bytes scanned since the query was started.
893 894 895 896 897 898 899 |
# File 'lib/aws-sdk-timestreamquery/types.rb', line 893 class QueryStatus < Struct.new( :progress_percentage, :cumulative_bytes_scanned, :cumulative_bytes_metered) SENSITIVE = [] include Aws::Structure end |
#progress_percentage ⇒ Float
The progress of the query, expressed as a percentage.
893 894 895 896 897 898 899 |
# File 'lib/aws-sdk-timestreamquery/types.rb', line 893 class QueryStatus < Struct.new( :progress_percentage, :cumulative_bytes_scanned, :cumulative_bytes_metered) SENSITIVE = [] include Aws::Structure end |