Class: HTTPX::Plugins::AwsSdkAuthentication::Configuration
- Inherits:
-
Object
- Object
- HTTPX::Plugins::AwsSdkAuthentication::Configuration
- Defined in:
- lib/httpx/plugins/aws_sdk_authentication.rb
Overview
Mock configuration, to be used only when resolving credentials
Instance Attribute Summary collapse
-
#profile ⇒ Object
readonly
Returns the value of attribute profile.
Instance Method Summary collapse
-
#initialize(profile) ⇒ Configuration
constructor
A new instance of Configuration.
- #method_missing ⇒ Object
- #respond_to_missing? ⇒ Boolean
Constructor Details
#initialize(profile) ⇒ Configuration
Returns a new instance of Configuration.
15 16 17 |
# File 'lib/httpx/plugins/aws_sdk_authentication.rb', line 15 def initialize(profile) @profile = profile end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing ⇒ Object
23 |
# File 'lib/httpx/plugins/aws_sdk_authentication.rb', line 23 def method_missing(*); end |
Instance Attribute Details
#profile ⇒ Object (readonly)
Returns the value of attribute profile.
13 14 15 |
# File 'lib/httpx/plugins/aws_sdk_authentication.rb', line 13 def profile @profile end |
Instance Method Details
#respond_to_missing? ⇒ Boolean
19 20 21 |
# File 'lib/httpx/plugins/aws_sdk_authentication.rb', line 19 def respond_to_missing?(*) true end |