Interface CfnIntegration.TlsConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnIntegration.TlsConfigProperty.Jsii$Proxy
Enclosing class:
CfnIntegration

@Stability(Stable) public static interface CfnIntegration.TlsConfigProperty extends software.amazon.jsii.JsiiSerializable
The 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: