Class: Aws::BedrockAgentCore::Types::ProxyConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCore::Types::ProxyConfiguration
- Defined in:
- gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb
Overview
Configuration for routing browser traffic through customer-managed proxy servers. Supports 1-5 proxy servers for domain-based routing and proxy bypass rules.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bypass ⇒ Types::ProxyBypass
Optional configuration for domains that should bypass all proxies and connect directly to their destination, like the internet.
-
#proxies ⇒ Array<Types::Proxy>
An array of 1-5 proxy server configurations for domain-based routing.
Instance Attribute Details
#bypass ⇒ Types::ProxyBypass
Optional configuration for domains that should bypass all proxies and connect directly to their destination, like the internet. Takes precedence over all proxy routing rules.
2812 2813 2814 2815 2816 2817 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 2812 class ProxyConfiguration < Struct.new( :proxies, :bypass) SENSITIVE = [] include Aws::Structure end |
#proxies ⇒ Array<Types::Proxy>
An array of 1-5 proxy server configurations for domain-based
routing. Each proxy can specify which domains it handles via
domainPatterns, enabling flexible routing of different traffic
through different proxies based on destination domain.
2812 2813 2814 2815 2816 2817 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 2812 class ProxyConfiguration < Struct.new( :proxies, :bypass) SENSITIVE = [] include Aws::Structure end |