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 |
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 { aws_elasticloadbalancingv2 as elbv2 } from 'aws-cdk-lib';
const mutualAuthenticationProperty: elbv2.CfnListener.MutualAuthenticationProperty = {
ignoreClientCertificateExpiry: false,
mode: 'mode',
trustStoreArn: 'trustStoreArn',
};
Properties
Name | Type | Description |
---|---|---|
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. |
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.