module AwsExtensions::EC2::NetworkInterface

Public Instance Methods

name() click to toggle source

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

# File lib/aws_extensions/ec2/NetworkInterface.rb, line 6
def name
  self.tag_set.select { |tag| tag.key == "Name" }.first.value
rescue
  nil
end