interface ClientCertificateConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins.CfnDomainConfigurationPropsMixin.ClientCertificateConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiot/mixins#CfnDomainConfigurationPropsMixin_ClientCertificateConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.iot.mixins.CfnDomainConfigurationPropsMixin.ClientCertificateConfigProperty |
Python | aws_cdk.mixins_preview.aws_iot.mixins.CfnDomainConfigurationPropsMixin.ClientCertificateConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iot » mixins » 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 { mixins as iot_mixins } from '@aws-cdk/mixins-preview/aws-iot';
const clientCertificateConfigProperty: iot_mixins.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