Class: Aws::GuardDuty::Types::DateStatistics

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

Instance Attribute Details

#dateTime

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“.

Returns:

  • (Time)


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_atTime

The timestamp at which the last finding in the findings count, was generated.

Returns:

  • (Time)


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

#severityFloat

The severity of the findings generated on each date.

Returns:

  • (Float)


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_findingsInteger

The total number of findings that were generated per severity level on each date.

Returns:

  • (Integer)


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