mirror of
https://github.com/HoneyryderChuck/httpx.git
synced 2025-10-07 00:05:02 -04:00
25 lines
596 B
Plaintext
25 lines
596 B
Plaintext
module HTTPX
|
|
module Plugins
|
|
module AwsSdkAuthentication
|
|
class Credentials
|
|
include _SigV4Credentials
|
|
|
|
private
|
|
|
|
def initialize: (untyped aws_credentials) -> untyped
|
|
end
|
|
|
|
def self.load_dependencies: (singleton(Session)) -> void
|
|
|
|
def self.configure: (singleton(Session)) -> void
|
|
|
|
def self.extra_options: (Options) -> (Options)
|
|
|
|
module InstanceMethods
|
|
def aws_sdk_authentication: (**untyped) -> instance
|
|
end
|
|
end
|
|
|
|
type sessionAwsSdkAuthentication = Session & AwsSdkAuthentication::InstanceMethods
|
|
end
|
|
end |