You are viewing documentation for version 1 of the AWS SDK for Ruby. Version 2 documentation can be found here.

Class: AWS::Route53::ChangeInfo

Inherits:
Core::Resource
  • Object
show all
Defined in:
lib/aws/route_53/change_info.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#idString (readonly)

change id.

Returns:

  • (String)

    the current value of id



25
26
27
# File 'lib/aws/route_53/change_info.rb', line 25

def id
  @id
end

#statusString (readonly)

status of the change.

Returns:

  • (String)

    the current value of status



25
26
27
# File 'lib/aws/route_53/change_info.rb', line 25

def status
  @status
end

#submitted_atTime (readonly)

Returns the current value of submitted_at

Returns:

  • (Time)

    the current value of submitted_at



25
26
27
# File 'lib/aws/route_53/change_info.rb', line 25

def 
  @submitted_at
end

Instance Method Details

#exists?Boolean

Returns true if this change exists.

Returns:

  • (Boolean)

    Returns true if this change exists.



56
57
58
# File 'lib/aws/route_53/change_info.rb', line 56

def exists?
  get_resource.data[:change_info][:id] == id
end