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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnListener.MutualAuthenticationPropertystatic final classAn implementation forCfnListener.MutualAuthenticationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIgnoreClientCertificateExpiry
Indicates whether expired client certificates are ignored.- See Also:
-
getMode
The client certificate handling method.Options are
off,passthroughorverify. The default value isoff.- See Also:
-
getTrustStoreArn
The Amazon Resource Name (ARN) of the trust store.- See Also:
-
builder
-