Class: AWS::Route53::ChangeInfo
- Inherits:
-
Core::Resource
- Object
- Core::Resource
- AWS::Route53::ChangeInfo
- Defined in:
- lib/aws/route_53/change_info.rb
Instance Attribute Summary collapse
-
#id ⇒ String
readonly
change id.
-
#status ⇒ String
readonly
status of the change.
-
#submitted_at ⇒ Time
readonly
The current value of submitted_at.
Instance Method Summary collapse
-
#exists? ⇒ Boolean
Returns true if this alarm exists.
Instance Attribute Details
#id ⇒ String (readonly)
change id.
25 26 27 |
# File 'lib/aws/route_53/change_info.rb', line 25 def id @id end |
#status ⇒ String (readonly)
status of the change.
25 26 27 |
# File 'lib/aws/route_53/change_info.rb', line 25 def status @status end |
#submitted_at ⇒ Time (readonly)
Returns the current value of submitted_at.
25 26 27 |
# File 'lib/aws/route_53/change_info.rb', line 25 def submitted_at @submitted_at end |
Instance Method Details
#exists? ⇒ Boolean
Returns true if this alarm exists.
56 57 58 |
# File 'lib/aws/route_53/change_info.rb', line 56 def exists? get_resource.data[:change_info][:id] == id end |