Interface CfnIntegration.TlsConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIntegration.TlsConfigProperty.Jsii$Proxy
- Enclosing class:
CfnIntegration
TlsConfig
property specifies the TLS configuration for a private integration.
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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnIntegration.TlsConfigProperty
static final class
An implementation forCfnIntegration.TlsConfigProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getServerNameToVerify
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.
- See Also:
-
builder
-