Interface TlsConfig.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TlsConfig.Builder,TlsConfig>,SdkBuilder<TlsConfig.Builder,TlsConfig>,SdkPojo
- Enclosing class:
- TlsConfig
public static interface TlsConfig.Builder extends SdkPojo, CopyableBuilder<TlsConfig.Builder,TlsConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TlsConfig.BuilderserverNameToVerify(String serverNameToVerify)If you specify a server name, API Gateway uses it to verify the hostname on the integration's certificate.-
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
-
serverNameToVerify
TlsConfig.Builder serverNameToVerify(String serverNameToVerify)
If you specify a server name, API Gateway uses it to verify the hostname on the integration's certificate. The server name is also included in the TLS handshake to support Server Name Indication (SNI) or virtual hosting.
- Parameters:
serverNameToVerify- If you specify a server name, API Gateway uses it to verify the hostname on the integration's certificate. The server name is also included in the TLS handshake to support Server Name Indication (SNI) or virtual hosting.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-