Method: Awspec::Helper::Finder#initialize
- Defined in:
- lib/awspec/helper/finder.rb
#initialize(id = nil) ⇒ Object
rubocop:disable all
38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
# File 'lib/awspec/helper/finder.rb', line 38 def initialize(id = nil) @ec2_client = Aws::EC2::Client.new @rds_client = Aws::RDS::Client.new @route53_client = Aws::Route53::Client.new @s3_client = Aws::S3::Client.new @autoscaling_client = Aws::AutoScaling::Client.new @elb_client = Aws::ElasticLoadBalancing::Client.new @lambda_client = Aws::Lambda::Client.new @iam_client = Aws::IAM::Client.new @elasticache_client = Aws::ElastiCache::Client.new @cloudwatch_client = Aws::CloudWatch::Client.new @ses_client = Aws::SES::Client.new @directconnect_client = Aws::DirectConnect::Client.new end |