module OpsworksRollingDeploy::Clients

Public Instance Methods

elb_client(region = 'us-east-1') click to toggle source
# File lib/opsworks_rolling_deploy/clients.rb, line 8
def elb_client(region = 'us-east-1') 
        @elb_client ||={}
        @elb_client[region] ||= Aws::ElasticLoadBalancing::Client.new(region: region)
end
ops_client() click to toggle source
# File lib/opsworks_rolling_deploy/clients.rb, line 5
def ops_client
        @ops_client ||= Aws::OpsWorks::Client.new(region: 'us-east-1')
end