class AwsInventory::CLI

Public Instance Methods

acm() click to toggle source
# File lib/aws_inventory/cli.rb, line 46
def acm
  Acm.new(options).report
end
cfn() click to toggle source
# File lib/aws_inventory/cli.rb, line 8
def cfn
  Cfn.new(options).report
end
cw() click to toggle source
# File lib/aws_inventory/cli.rb, line 83
def cw
  Cloudwatch.new(options).report
end
eb() click to toggle source
# File lib/aws_inventory/cli.rb, line 58
def eb
  Eb.new(options).report
end
ec2() click to toggle source
# File lib/aws_inventory/cli.rb, line 14
def ec2
  Ec2.new(options).report
end
ecs() click to toggle source
# File lib/aws_inventory/cli.rb, line 64
def ecs
  Ecs.new(options).report
end
elb() click to toggle source
# File lib/aws_inventory/cli.rb, line 52
def elb
  Elb.new(options).report
end
iam() click to toggle source
# File lib/aws_inventory/cli.rb, line 77
def iam
  Iam.new(options).report
end
keypair() click to toggle source
# File lib/aws_inventory/cli.rb, line 70
def keypair
  Keypair.new(options).report
end
rds() click to toggle source
# File lib/aws_inventory/cli.rb, line 34
def rds
  Rds.new(options).report
end
route53() click to toggle source
# File lib/aws_inventory/cli.rb, line 40
def route53
  Route53.new(options).report
end
sg() click to toggle source
# File lib/aws_inventory/cli.rb, line 27
def sg
  SecurityGroup.new(options).report
end
vpc() click to toggle source
# File lib/aws_inventory/cli.rb, line 20
def vpc
  Vpc.new(options).report
end