class HTTPX::Plugins::AwsSdkAuthentication::Configuration

  1. lib/httpx/plugins/aws_sdk_authentication.rb
Superclass: Object

Mock configuration, to be used only when resolving credentials

Methods

Public Class

  1. new

Public Instance

  1. method_missing
  2. profile
  3. respond_to_missing?

Attributes

profile [R]

Public Class methods

new(profile)
[show source]
   # File lib/httpx/plugins/aws_sdk_authentication.rb
15 def initialize(profile)
16   @profile = profile
17 end

Public Instance methods

method_missing(*)
[show source]
   # File lib/httpx/plugins/aws_sdk_authentication.rb
23 def method_missing(*); end
respond_to_missing?(*)
[show source]
   # File lib/httpx/plugins/aws_sdk_authentication.rb
19 def respond_to_missing?(*)
20   true
21 end