Class: Aws::GuardDuty::Types::DateStatistics
- Inherits:
-
Struct
- Object
- Struct
- Aws::GuardDuty::Types::DateStatistics
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-guardduty/types.rb
Overview
Represents list a map of dates with a count of total findings generated on each date.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#date ⇒ Time
The timestamp when the total findings count is observed.
-
#last_generated_at ⇒ Time
The timestamp at which the last finding in the findings count, was generated.
-
#severity ⇒ Float
The severity of the findings generated on each date.
-
#total_findings ⇒ Integer
The total number of findings that were generated per severity level on each date.
Instance Attribute Details
#date ⇒ Time
The timestamp when the total findings count is observed.
For example, ‘Date` would look like `“2024-09-05T17:00:00-07:00”` whereas `LastGeneratedAt` would look like 2024-09-05T17:12:29-07:00“.
2027 2028 2029 2030 2031 2032 2033 2034 |
# File 'lib/aws-sdk-guardduty/types.rb', line 2027 class DateStatistics < Struct.new( :date, :last_generated_at, :severity, :total_findings) SENSITIVE = [] include Aws::Structure end |
#last_generated_at ⇒ Time
The timestamp at which the last finding in the findings count, was generated.
2027 2028 2029 2030 2031 2032 2033 2034 |
# File 'lib/aws-sdk-guardduty/types.rb', line 2027 class DateStatistics < Struct.new( :date, :last_generated_at, :severity, :total_findings) SENSITIVE = [] include Aws::Structure end |
#severity ⇒ Float
The severity of the findings generated on each date.
2027 2028 2029 2030 2031 2032 2033 2034 |
# File 'lib/aws-sdk-guardduty/types.rb', line 2027 class DateStatistics < Struct.new( :date, :last_generated_at, :severity, :total_findings) SENSITIVE = [] include Aws::Structure end |
#total_findings ⇒ Integer
The total number of findings that were generated per severity level on each date.
2027 2028 2029 2030 2031 2032 2033 2034 |
# File 'lib/aws-sdk-guardduty/types.rb', line 2027 class DateStatistics < Struct.new( :date, :last_generated_at, :severity, :total_findings) SENSITIVE = [] include Aws::Structure end |