Interface CfnListener.MutualAuthenticationProperty

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

@Stability(Stable) public static interface CfnListener.MutualAuthenticationProperty extends software.amazon.jsii.JsiiSerializable
Specifies the configuration information for mutual authentication.

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.elasticloadbalancingv2.*;
 MutualAuthenticationProperty mutualAuthenticationProperty = MutualAuthenticationProperty.builder()
         .ignoreClientCertificateExpiry(false)
         .mode("mode")
         .trustStoreArn("trustStoreArn")
         .build();
 

See Also: