Class: Cf::Client::MyClient
- Inherits:
-
Object
- Object
- Cf::Client::MyClient
- Defined in:
- lib/cf/client.rb
Instance Method Summary collapse
-
#initialize(options = {}) ⇒ MyClient
constructor
A new instance of MyClient.
- #method_missing(name, *args) ⇒ Object
Constructor Details
#initialize(options = {}) ⇒ MyClient
Returns a new instance of MyClient.
11 12 13 |
# File 'lib/cf/client.rb', line 11 def initialize( = {}) @client = Aws::CloudFormation::Client.new() end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(name, *args) ⇒ Object
15 16 17 |
# File 'lib/cf/client.rb', line 15 def method_missing(name, *args) @client.send(name, *args) end |