interface ClientCertificateConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoT.CfnDomainConfigurationPropsMixin.ClientCertificateConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiot#CfnDomainConfigurationPropsMixin_ClientCertificateConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iot.CfnDomainConfigurationPropsMixin.ClientCertificateConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_iot.CfnDomainConfigurationPropsMixin.ClientCertificateConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iot » CfnDomainConfigurationPropsMixin » ClientCertificateConfigProperty |
An object that specifies the client certificate configuration for a domain.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iot as iot } from '@aws-cdk/cfn-property-mixins';
const clientCertificateConfigProperty: iot.CfnDomainConfigurationPropsMixin.ClientCertificateConfigProperty = {
clientCertificateCallbackArn: 'clientCertificateCallbackArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| client | string | The ARN of the Lambda function that IoT invokes after mutual TLS authentication during the connection. |
clientCertificateCallbackArn?
Type:
string
(optional)
The ARN of the Lambda function that IoT invokes after mutual TLS authentication during the connection.

.NET
Go
Java
Python
TypeScript