Interface CfnListener.IMutualAuthenticationProperty
The mutual authentication configuration information.
Namespace: Amazon.CDK.AWS.ElasticLoadBalancingV2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IMutualAuthenticationProperty
Syntax (vb)
Public Interface IMutualAuthenticationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.ElasticLoadBalancingV2;
var mutualAuthenticationProperty = new MutualAuthenticationProperty {
AdvertiseTrustStoreCaNames = "advertiseTrustStoreCaNames",
IgnoreClientCertificateExpiry = false,
Mode = "mode",
TrustStoreArn = "trustStoreArn"
};
Synopsis
Properties
Advertise |
Indicates whether trust store CA certificate names are advertised. |
Ignore |
Indicates whether expired client certificates are ignored. |
Mode | The client certificate handling method. |
Trust |
The Amazon Resource Name (ARN) of the trust store. |
Properties
AdvertiseTrustStoreCaNames
Indicates whether trust store CA certificate names are advertised.
virtual string AdvertiseTrustStoreCaNames { get; }
Property Value
System.
Remarks
IgnoreClientCertificateExpiry
Indicates whether expired client certificates are ignored.
virtual object IgnoreClientCertificateExpiry { get; }
Property Value
System.
Remarks
Mode
The client certificate handling method.
virtual string Mode { get; }
Property Value
System.
Remarks
The possible values are off
, passthrough
, and verify
. The default value is off
.
TrustStoreArn
The Amazon Resource Name (ARN) of the trust store.
virtual string TrustStoreArn { get; }
Property Value
System.