Class: Aws::TimestreamQuery::Types::QueryStatus
- Inherits:
-
Struct
- Object
- Struct
- Aws::TimestreamQuery::Types::QueryStatus
- Defined in:
- gems/aws-sdk-timestreamquery/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.
1064 1065 1066 1067 1068 1069 1070 |
# File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 1064 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.
1064 1065 1066 1067 1068 1069 1070 |
# File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 1064 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.
1064 1065 1066 1067 1068 1069 1070 |
# File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 1064 class QueryStatus < Struct.new( :progress_percentage, :cumulative_bytes_scanned, :cumulative_bytes_metered) SENSITIVE = [] include Aws::Structure end |