Class: Aws::GuardDuty::Types::AccountStatistics

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-guardduty/types.rb

Overview

Represents a list of map of accounts with the number of findings associated with each account.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#account_idString

The ID of the Amazon Web Services account.

Returns:

  • (String)


217
218
219
220
221
222
223
# File 'lib/aws-sdk-guardduty/types.rb', line 217

class AccountStatistics < Struct.new(
  :account_id,
  :last_generated_at,
  :total_findings)
  SENSITIVE = []
  include Aws::Structure
end

#last_generated_atTime

The timestamp at which the finding for this account was last generated.

Returns:

  • (Time)


217
218
219
220
221
222
223
# File 'lib/aws-sdk-guardduty/types.rb', line 217

class AccountStatistics < Struct.new(
  :account_id,
  :last_generated_at,
  :total_findings)
  SENSITIVE = []
  include Aws::Structure
end

#total_findingsInteger

The total number of findings associated with an account.

Returns:

  • (Integer)


217
218
219
220
221
222
223
# File 'lib/aws-sdk-guardduty/types.rb', line 217

class AccountStatistics < Struct.new(
  :account_id,
  :last_generated_at,
  :total_findings)
  SENSITIVE = []
  include Aws::Structure
end