class AWS::CloudWatch::AlarmHistoryItem

Attributes

alarm_name[R]

@return [String] The descriptive name for the alarm.

data[R]

@return [String] Machine-readable data about the alarm in JSON format.

history_data[R]

@return [String] Machine-readable data about the alarm in JSON format.

history_item_type[R]

@return [String] The type of alarm history item.

history_summary[R]

@return [String] A human-readable summary of the alarm history.

summary[R]

@return [String] A human-readable summary of the alarm history.

timestamp[R]

@return [Time] The time stamp for the alarm history item.

type[R]

@return [String] The type of alarm history item.

Public Class Methods

new(options) click to toggle source

@api private

# File lib/aws/cloud_watch/alarm_history_item.rb, line 19
def initialize options
  @alarm_name = options[:alarm_name]
  @history_data = options[:history_data]
  @history_item_type = options[:history_item_type]
  @history_summary = options[:history_summary]
  @timestamp = options[:timestamp]
end