interface MutualAuthenticationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ElasticLoadBalancingV2.CfnListener.MutualAuthenticationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awselasticloadbalancingv2#CfnListener_MutualAuthenticationProperty |
Java | software.amazon.awscdk.services.elasticloadbalancingv2.CfnListener.MutualAuthenticationProperty |
Python | aws_cdk.aws_elasticloadbalancingv2.CfnListener.MutualAuthenticationProperty |
TypeScript | aws-cdk-lib » aws_elasticloadbalancingv2 » CfnListener » MutualAuthenticationProperty |
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 { aws_elasticloadbalancingv2 as elbv2 } from 'aws-cdk-lib';
const mutualAuthenticationProperty: elbv2.CfnListener.MutualAuthenticationProperty = {
advertiseTrustStoreCaNames: 'advertiseTrustStoreCaNames',
ignoreClientCertificateExpiry: false,
mode: 'mode',
trustStoreArn: 'trustStoreArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| advertise | string | Indicates whether trust store CA certificate names are advertised. |
| ignore | boolean | IResolvable | Indicates whether expired client certificates are ignored. |
| mode? | string | The client certificate handling method. |
| trust | string | The Amazon Resource Name (ARN) of the trust store. |
advertiseTrustStoreCaNames?
Type:
string
(optional)
Indicates whether trust store CA certificate names are advertised.
ignoreClientCertificateExpiry?
Type:
boolean | IResolvable
(optional)
Indicates whether expired client certificates are ignored.
mode?
Type:
string
(optional)
The client certificate handling method.
Options are off , passthrough or verify . The default value is off .
trustStoreArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the trust store.

.NET
Go
Java
Python
TypeScript