@Stability(value=Stable)
public static interface CfnIntegration.TlsConfigProperty
extends software.amazon.jsii.JsiiSerializable
If you specify a TLS configuration, private integration traffic uses the HTTPS protocol. Supported only for HTTP APIs.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.apigatewayv2.*;
TlsConfigProperty tlsConfigProperty = TlsConfigProperty.builder()
.serverNameToVerify("serverNameToVerify")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnIntegration.TlsConfigProperty.Builder
A builder for
CfnIntegration.TlsConfigProperty |
static class |
CfnIntegration.TlsConfigProperty.Jsii$Proxy
An implementation for
CfnIntegration.TlsConfigProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnIntegration.TlsConfigProperty.Builder |
builder() |
default String |
getServerNameToVerify()
If you specify a server name, API Gateway uses it to verify the hostname on the integration's certificate.
|
@Stability(value=Stable) @Nullable default String getServerNameToVerify()
The server name is also included in the TLS handshake to support Server Name Indication (SNI) or virtual hosting.
@Stability(value=Stable) static CfnIntegration.TlsConfigProperty.Builder builder()
Copyright © 2022. All rights reserved.