Class: Aws::BedrockAgentCore::Types::Proxy
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCore::Types::Proxy
- Defined in:
- gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb
Overview
Note:
Proxy is a union - when making an API calls you must set exactly one of the members.
Note:
Proxy is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Proxy corresponding to the set member.
Union type representing different proxy configurations. Currently supports external customer-managed proxies.
Defined Under Namespace
Classes: ExternalProxy, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#external_proxy ⇒ Types::ExternalProxy
Configuration for an external customer-managed proxy server.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#external_proxy ⇒ Types::ExternalProxy
Configuration for an external customer-managed proxy server.
3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 3758 class Proxy < Struct.new( :external_proxy, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class ExternalProxy < Proxy; end class Unknown < Proxy; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
3758 3759 3760 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 3758 def unknown @unknown end |