Class: Aws::Health::Types::EventAggregate

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

Overview

The number of events of each issue type. Returned by the DescribeEventAggregates operation.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#aggregate_valueString

The issue type for the associated count.

Returns:

  • (String)


1010
1011
1012
1013
1014
1015
# File 'gems/aws-sdk-health/lib/aws-sdk-health/types.rb', line 1010

class EventAggregate < Struct.new(
  :aggregate_value,
  :count)
  SENSITIVE = []
  include Aws::Structure
end

#countInteger

The number of events of the associated issue type.

Returns:

  • (Integer)


1010
1011
1012
1013
1014
1015
# File 'gems/aws-sdk-health/lib/aws-sdk-health/types.rb', line 1010

class EventAggregate < Struct.new(
  :aggregate_value,
  :count)
  SENSITIVE = []
  include Aws::Structure
end