interface MutualAuthenticationProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.ElasticLoadBalancingV2.CfnListener.MutualAuthenticationProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awselasticloadbalancingv2#CfnListener_MutualAuthenticationProperty |
![]() | software.amazon.awscdk.services.elasticloadbalancingv2.CfnListener.MutualAuthenticationProperty |
![]() | aws_cdk.aws_elasticloadbalancingv2.CfnListener.MutualAuthenticationProperty |
![]() | 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.
The default value is off
.
ignoreClientCertificateExpiry?
Type:
boolean |
IResolvable
(optional)
Indicates whether expired client certificates are ignored.
mode?
Type:
string
(optional)
The client certificate handling method.
The possible values are off
, passthrough
, and verify
. The default value is off
.
trustStoreArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the trust store.