Interface ProxyConfiguration.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<ProxyConfiguration.Builder,
,ProxyConfiguration> CrtProxyConfiguration.Builder
,SdkBuilder<ProxyConfiguration.Builder,
ProxyConfiguration>
- Enclosing class:
ProxyConfiguration
public static interface ProxyConfiguration.Builder
extends CrtProxyConfiguration.Builder, CopyableBuilder<ProxyConfiguration.Builder,ProxyConfiguration>
Builder for
ProxyConfiguration
.-
Method Summary
Modifier and TypeMethodDescriptionaddNonProxyHost
(String nonProxyHost) Add a host that the client is allowed to access without going through the proxy.build()
An immutable object that is created from the properties that have been set on the builder.Set the hostname of the proxy.nonProxyHosts
(Set<String> nonProxyHosts) Configure the hosts that the client is allowed to access without going through the proxy.The password to use for basic proxy authenticationport
(int port) Set the port that the proxy expects connections on.The HTTP scheme to use for connecting to the proxy.useEnvironmentVariableValues
(Boolean useEnvironmentVariableValues) Set the option whether to use environment variable values forProxyEnvironmentSetting
if any of the config options are missing.The username to use for basic proxy authenticationuseSystemPropertyValues
(Boolean useSystemPropertyValues) The option whether to use system property values fromProxySystemSetting
if any of the config options are missing.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation
-
Method Details
-
host
Set the hostname of the proxy.- Specified by:
host
in interfaceCrtProxyConfiguration.Builder
- Parameters:
host
- The proxy host.- Returns:
- This object for method chaining.
-
port
Set the port that the proxy expects connections on.- Specified by:
port
in interfaceCrtProxyConfiguration.Builder
- Parameters:
port
- The proxy port.- Returns:
- This object for method chaining.
-
scheme
The HTTP scheme to use for connecting to the proxy. Valid values arehttp
andhttps
.The client defaults to
http
if none is given.- Specified by:
scheme
in interfaceCrtProxyConfiguration.Builder
- Parameters:
scheme
- The proxy scheme.- Returns:
- This object for method chaining.
-
username
The username to use for basic proxy authenticationIf not set, the client will not use basic authentication
- Specified by:
username
in interfaceCrtProxyConfiguration.Builder
- Parameters:
username
- The basic authentication username.- Returns:
- This object for method chaining.
-
password
The password to use for basic proxy authenticationIf not set, the client will not use basic authentication
- Specified by:
password
in interfaceCrtProxyConfiguration.Builder
- Parameters:
password
- The basic authentication password.- Returns:
- This object for method chaining.
-
useSystemPropertyValues
The option whether to use system property values fromProxySystemSetting
if any of the config options are missing. The value is set to "true" by default which means SDK will automatically use system property values if options are not provided during building theProxyConfiguration
object. To disable this behaviour, set this value to false.- Specified by:
useSystemPropertyValues
in interfaceCrtProxyConfiguration.Builder
- Parameters:
useSystemPropertyValues
- The option whether to use system property values- Returns:
- This object for method chaining.
-
useEnvironmentVariableValues
Set the option whether to use environment variable values forProxyEnvironmentSetting
if any of the config options are missing. The value is set to "true" by default, enabling the SDK to automatically use environment variable values for proxy configuration options that are not provided during building theProxyConfiguration
object. To disable this behavior, set this value to "false".It is important to note that when this property is set to "true," all proxy settings will exclusively originate from Environment Variable Values, and no partial settings will be obtained from System Property Values.Comma-separated host names in the NO_PROXY environment variable indicate multiple hosts to exclude from proxy settings.
- Specified by:
useEnvironmentVariableValues
in interfaceCrtProxyConfiguration.Builder
- Parameters:
useEnvironmentVariableValues
- The option whether to use environment variable values- Returns:
- This object for method chaining.
-
nonProxyHosts
Configure the hosts that the client is allowed to access without going through the proxy.- Specified by:
nonProxyHosts
in interfaceCrtProxyConfiguration.Builder
-
addNonProxyHost
Add a host that the client is allowed to access without going through the proxy.- Specified by:
addNonProxyHost
in interfaceCrtProxyConfiguration.Builder
-
build
ProxyConfiguration build()Description copied from interface:SdkBuilder
An immutable object that is created from the properties that have been set on the builder.- Specified by:
build
in interfaceBuildable
- Specified by:
build
in interfaceCrtProxyConfiguration.Builder
- Specified by:
build
in interfaceSdkBuilder<ProxyConfiguration.Builder,
ProxyConfiguration> - Returns:
- an instance of T
-