Interface ProxyConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ProxyConfiguration.Builder,ProxyConfiguration>,SdkBuilder<ProxyConfiguration.Builder,ProxyConfiguration>,SdkPojo
- Enclosing class:
- ProxyConfiguration
public static interface ProxyConfiguration.Builder extends SdkPojo, CopyableBuilder<ProxyConfiguration.Builder,ProxyConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ProxyConfiguration.Buildercredentials(String credentials)Your secret ARN, which you can create in Secrets ManagerProxyConfiguration.Builderhost(String host)The name of the website host you want to connect to via a web proxy server.ProxyConfiguration.Builderport(Integer port)The port number of the website host you want to connect to via a web proxy server.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
host
ProxyConfiguration.Builder host(String host)
The name of the website host you want to connect to via a web proxy server.
For example, the host name of https://a.example.com/page1.html is "a.example.com".
- Parameters:
host- The name of the website host you want to connect to via a web proxy server.For example, the host name of https://a.example.com/page1.html is "a.example.com".
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
port
ProxyConfiguration.Builder port(Integer port)
The port number of the website host you want to connect to via a web proxy server.
For example, the port for https://a.example.com/page1.html is 443, the standard port for HTTPS.
- Parameters:
port- The port number of the website host you want to connect to via a web proxy server.For example, the port for https://a.example.com/page1.html is 443, the standard port for HTTPS.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
credentials
ProxyConfiguration.Builder credentials(String credentials)
Your secret ARN, which you can create in Secrets Manager
The credentials are optional. You use a secret if web proxy credentials are required to connect to a website host. Amazon Kendra currently support basic authentication to connect to a web proxy server. The secret stores your credentials.
- Parameters:
credentials- Your secret ARN, which you can create in Secrets ManagerThe credentials are optional. You use a secret if web proxy credentials are required to connect to a website host. Amazon Kendra currently support basic authentication to connect to a web proxy server. The secret stores your credentials.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-