Sha256: 2e1897446f61b32786b8a80bc680bd6c14abe1d241c92ae3ba66586b26cfefba
Contents?: true
Size: 558 Bytes
Versions: 26
Compression:
Stored size: 558 Bytes
Contents
module Awspec::Type class CloudwatchAlarm < Base def resource_via_client @resource_via_client ||= find_cloudwatch_alarm(@display_name) end def id @id ||= resource_via_client.alarm_arn if resource_via_client end def has_ok_action?(name) resource_via_client.ok_actions.include?(name) end def has_alarm_action?(name) resource_via_client.alarm_actions.include?(name) end def has_insufficient_data_action?(name) resource_via_client.insufficient_data_actions.include?(name) end end end
Version data entries
26 entries across 26 versions & 1 rubygems