Interface MutualAuthentication

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
MutualAuthentication.Jsii$Proxy

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2025-01-04T09:06:22.505Z") @Stability(Stable) public interface MutualAuthentication extends software.amazon.jsii.JsiiSerializable
The mutual authentication configuration information.

Example:

 import software.amazon.awscdk.services.certificatemanager.*;
 Certificate certificate;
 ApplicationLoadBalancer lb;
 Bucket bucket;
 TrustStore trustStore = TrustStore.Builder.create(this, "Store")
         .bucket(bucket)
         .key("rootCA_cert.pem")
         .build();
 lb.addListener("Listener", BaseApplicationListenerProps.builder()
         .port(443)
         .protocol(ApplicationProtocol.HTTPS)
         .certificates(List.of(certificate))
         // mTLS settings
         .mutualAuthentication(MutualAuthentication.builder()
                 .ignoreClientCertificateExpiry(false)
                 .mutualAuthenticationMode(MutualAuthenticationMode.VERIFY)
                 .trustStore(trustStore)
                 .build())
         .defaultAction(ListenerAction.fixedResponse(200, FixedResponseOptions.builder().contentType("text/plain").messageBody("Success mTLS").build()))
         .build());
 
  • Method Details

    • getIgnoreClientCertificateExpiry

      @Stability(Stable) @Nullable default Boolean getIgnoreClientCertificateExpiry()
      Indicates whether expired client certificates are ignored.

      Cannot be used with MutualAuthenticationMode.OFF or MutualAuthenticationMode.PASS_THROUGH

      Default: false

    • getMutualAuthenticationMode

      @Stability(Stable) @Nullable default MutualAuthenticationMode getMutualAuthenticationMode()
      The client certificate handling method.

      Default: MutualAuthenticationMode.OFF

    • getTrustStore

      @Stability(Stable) @Nullable default ITrustStore getTrustStore()
      The trust store.

      Cannot be used with MutualAuthenticationMode.OFF or MutualAuthenticationMode.PASS_THROUGH

      Default: - no trust store

    • builder

      @Stability(Stable) static MutualAuthentication.Builder builder()
      Returns:
      a MutualAuthentication.Builder of MutualAuthentication