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)


1972
1973
1974
1975
1976
1977
1978
1979
# File 'lib/aws-sdk-guardduty/types.rb', line 1972

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)


1972
1973
1974
1975
1976
1977
1978
1979
# File 'lib/aws-sdk-guardduty/types.rb', line 1972

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)


1972
1973
1974
1975
1976
1977
1978
1979
# File 'lib/aws-sdk-guardduty/types.rb', line 1972

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)


1972
1973
1974
1975
1976
1977
1978
1979
# File 'lib/aws-sdk-guardduty/types.rb', line 1972

class DateStatistics < Struct.new(
  :date,
  :last_generated_at,
  :severity,
  :total_findings)
  SENSITIVE = []
  include Aws::Structure
end