Class: Aws::TimestreamQuery::Types::QueryStatus

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#cumulative_bytes_meteredInteger

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.

Returns:

  • (Integer)


860
861
862
863
864
865
866
# File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 860

class QueryStatus < Struct.new(
  :progress_percentage,
  :cumulative_bytes_scanned,
  :cumulative_bytes_metered)
  SENSITIVE = []
  include Aws::Structure
end

#cumulative_bytes_scannedInteger

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.

Returns:

  • (Integer)


860
861
862
863
864
865
866
# File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 860

class QueryStatus < Struct.new(
  :progress_percentage,
  :cumulative_bytes_scanned,
  :cumulative_bytes_metered)
  SENSITIVE = []
  include Aws::Structure
end

#progress_percentageFloat

The progress of the query, expressed as a percentage.

Returns:

  • (Float)


860
861
862
863
864
865
866
# File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 860

class QueryStatus < Struct.new(
  :progress_percentage,
  :cumulative_bytes_scanned,
  :cumulative_bytes_metered)
  SENSITIVE = []
  include Aws::Structure
end