Module: AwsExtensions::EC2::NetworkInterface

Defined in:
lib/aws_extensions/ec2/NetworkInterface.rb

Instance Method Summary collapse

Instance Method Details

#nameObject

Public: Returns the value of the “Name” tag for the route table



6
7
8
9
10
# File 'lib/aws_extensions/ec2/NetworkInterface.rb', line 6

def name
  self.tag_set.select { |tag| tag.key == "Name" }.first.value
rescue
	nil
end