Class: Aws::BedrockAgentCore::Types::ProxyCredentials
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCore::Types::ProxyCredentials
- Defined in:
- gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb
Overview
Note:
ProxyCredentials is a union - when making an API calls you must set exactly one of the members.
Note:
ProxyCredentials is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ProxyCredentials corresponding to the set member.
Union type representing different proxy authentication methods. Currently supports HTTP Basic Authentication (username and password).
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#basic_auth ⇒ Types::BasicAuth
HTTP Basic Authentication credentials (username and password) stored in Amazon Web Services Secrets Manager.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#basic_auth ⇒ Types::BasicAuth
HTTP Basic Authentication credentials (username and password) stored in Amazon Web Services Secrets Manager.
3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 3828 class ProxyCredentials < Struct.new( :basic_auth, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class BasicAuth < ProxyCredentials; end class Unknown < ProxyCredentials; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
3828 3829 3830 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 3828 def unknown @unknown end |