Class: EC2Launcher::Route53Record

Inherits:
Object
  • Object
show all
Defined in:
lib/ec2launcher/route53.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, type, ttl, value) ⇒ Route53Record

Returns a new instance of Route53Record.



13
14
15
16
17
18
# File 'lib/ec2launcher/route53.rb', line 13

def initialize(name, type, ttl, value)
  @name = name
  @type = type
  @ttl = ttl
  @value = value
end

Instance Attribute Details

#nameObject (readonly)

Returns the value of attribute name.



12
13
14
# File 'lib/ec2launcher/route53.rb', line 12

def name
  @name
end

#ttlObject (readonly)

Returns the value of attribute ttl.



12
13
14
# File 'lib/ec2launcher/route53.rb', line 12

def ttl
  @ttl
end

#typeObject (readonly)

Returns the value of attribute type.



12
13
14
# File 'lib/ec2launcher/route53.rb', line 12

def type
  @type
end

#valueObject (readonly)

Returns the value of attribute value.



12
13
14
# File 'lib/ec2launcher/route53.rb', line 12

def value
  @value
end