Class: Aws::CloudTrail::Types::QueryStatisticsForDescribeQuery
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudTrail::Types::QueryStatisticsForDescribeQuery
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudtrail/types.rb
Overview
Gets metadata about a query, including the number of events that were matched, the total number of events scanned, the query run time in milliseconds, and the query’s creation time.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bytes_scanned ⇒ Integer
The total bytes that the query scanned in the event data store.
-
#creation_time ⇒ Time
The creation time of the query.
-
#events_matched ⇒ Integer
The number of events that matched a query.
-
#events_scanned ⇒ Integer
The number of events that the query scanned in the event data store.
-
#execution_time_in_millis ⇒ Integer
The query’s run time, in milliseconds.
Instance Attribute Details
#bytes_scanned ⇒ Integer
The total bytes that the query scanned in the event data store. This value matches the number of bytes for which your account is billed for the query, unless the query is still running.
4117 4118 4119 4120 4121 4122 4123 4124 4125 |
# File 'lib/aws-sdk-cloudtrail/types.rb', line 4117 class QueryStatisticsForDescribeQuery < Struct.new( :events_matched, :events_scanned, :bytes_scanned, :execution_time_in_millis, :creation_time) SENSITIVE = [] include Aws::Structure end |
#creation_time ⇒ Time
The creation time of the query.
4117 4118 4119 4120 4121 4122 4123 4124 4125 |
# File 'lib/aws-sdk-cloudtrail/types.rb', line 4117 class QueryStatisticsForDescribeQuery < Struct.new( :events_matched, :events_scanned, :bytes_scanned, :execution_time_in_millis, :creation_time) SENSITIVE = [] include Aws::Structure end |
#events_matched ⇒ Integer
The number of events that matched a query.
4117 4118 4119 4120 4121 4122 4123 4124 4125 |
# File 'lib/aws-sdk-cloudtrail/types.rb', line 4117 class QueryStatisticsForDescribeQuery < Struct.new( :events_matched, :events_scanned, :bytes_scanned, :execution_time_in_millis, :creation_time) SENSITIVE = [] include Aws::Structure end |
#events_scanned ⇒ Integer
The number of events that the query scanned in the event data store.
4117 4118 4119 4120 4121 4122 4123 4124 4125 |
# File 'lib/aws-sdk-cloudtrail/types.rb', line 4117 class QueryStatisticsForDescribeQuery < Struct.new( :events_matched, :events_scanned, :bytes_scanned, :execution_time_in_millis, :creation_time) SENSITIVE = [] include Aws::Structure end |
#execution_time_in_millis ⇒ Integer
The query’s run time, in milliseconds.
4117 4118 4119 4120 4121 4122 4123 4124 4125 |
# File 'lib/aws-sdk-cloudtrail/types.rb', line 4117 class QueryStatisticsForDescribeQuery < Struct.new( :events_matched, :events_scanned, :bytes_scanned, :execution_time_in_millis, :creation_time) SENSITIVE = [] include Aws::Structure end |