mirror of
https://github.com/HoneyryderChuck/httpx.git
synced 2025-10-05 00:02:38 -04:00
21 lines
518 B
Plaintext
21 lines
518 B
Plaintext
module HTTPX
|
|
module Plugins
|
|
module AwsSdkAuthentication
|
|
class Credentials
|
|
include _SigV4Credentials
|
|
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 & Plugins::AwsSdkAuthentication::InstanceMethods
|
|
end
|
|
end |