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
The mutual authentication configuration information.
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()
.advertiseTrustStoreCaNames("advertiseTrustStoreCaNames")
.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
Modifier and TypeMethodDescriptionbuilder()default StringIndicates whether trust store CA certificate names are advertised.default ObjectIndicates whether expired client certificates are ignored.default StringgetMode()The client certificate handling method.default StringThe Amazon Resource Name (ARN) of the trust store.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAdvertiseTrustStoreCaNames
Indicates whether trust store CA certificate names are advertised.- See Also:
-
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
-