class Swa::EC2::KeyPair

Public Instance Methods

id() click to toggle source
# File lib/swa/ec2/key_pair.rb, line 8
def id
  name
end
name() click to toggle source
# File lib/swa/ec2/key_pair.rb, line 19
def name
  aws_resource.name
end
summary() click to toggle source
# File lib/swa/ec2/key_pair.rb, line 12
def summary
  [
    pad(name, 44),
    aws_resource.key_fingerprint
  ].join("  ")
end