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.
1276 1277 1278 1279 1280 1281 1282 |
# File 'lib/aws-sdk-timestreamquery/types.rb', line 1276 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.
1276 1277 1278 1279 1280 1281 1282 |
# File 'lib/aws-sdk-timestreamquery/types.rb', line 1276 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.
1276 1277 1278 1279 1280 1281 1282 |
# File 'lib/aws-sdk-timestreamquery/types.rb', line 1276 class QueryStatus < Struct.new( :progress_percentage, :cumulative_bytes_scanned, :cumulative_bytes_metered) SENSITIVE = [] include Aws::Structure end |