Class: Aws::Health::Types::AccountEntityAggregate

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-health/lib/aws-sdk-health/types.rb

Overview

The number of entities in an account that are impacted by a specific event aggregated by the entity status codes.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#account_idString

The 12-digit Amazon Web Services account numbers that contains the affected entities.

Returns:

  • (String)


33
34
35
36
37
38
39
# File 'gems/aws-sdk-health/lib/aws-sdk-health/types.rb', line 33

class AccountEntityAggregate < Struct.new(
  :account_id,
  :count,
  :statuses)
  SENSITIVE = []
  include Aws::Structure
end

#countInteger

The number of entities that match the filter criteria for the specified events.

Returns:

  • (Integer)


33
34
35
36
37
38
39
# File 'gems/aws-sdk-health/lib/aws-sdk-health/types.rb', line 33

class AccountEntityAggregate < Struct.new(
  :account_id,
  :count,
  :statuses)
  SENSITIVE = []
  include Aws::Structure
end

#statusesHash<String,Integer>

The number of affected entities aggregated by the entity status codes.

Returns:

  • (Hash<String,Integer>)


33
34
35
36
37
38
39
# File 'gems/aws-sdk-health/lib/aws-sdk-health/types.rb', line 33

class AccountEntityAggregate < Struct.new(
  :account_id,
  :count,
  :statuses)
  SENSITIVE = []
  include Aws::Structure
end