Class: HTTPX::Plugins::AwsSdkAuthentication::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/httpx/plugins/aws_sdk_authentication.rb

Overview

Mock configuration, to be used only when resolving credentials

Instance Attribute Summary collapse

Instance Method Summary collapse

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_missingObject



23
# File 'lib/httpx/plugins/aws_sdk_authentication.rb', line 23

def method_missing(*); end

Instance Attribute Details

#profileObject (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

Returns:

  • (Boolean)


19
20
21
# File 'lib/httpx/plugins/aws_sdk_authentication.rb', line 19

def respond_to_missing?(*)
  true
end