interface CertAgeCheckCustomConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoT.CfnAccountAuditConfiguration.CertAgeCheckCustomConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiot#CfnAccountAuditConfiguration_CertAgeCheckCustomConfigurationProperty |
Java | software.amazon.awscdk.services.iot.CfnAccountAuditConfiguration.CertAgeCheckCustomConfigurationProperty |
Python | aws_cdk.aws_iot.CfnAccountAuditConfiguration.CertAgeCheckCustomConfigurationProperty |
TypeScript | aws-cdk-lib » aws_iot » CfnAccountAuditConfiguration » CertAgeCheckCustomConfigurationProperty |
Configuration structure containing settings for the device certificate age check.
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-lib';
const certAgeCheckCustomConfigurationProperty: iot.CfnAccountAuditConfiguration.CertAgeCheckCustomConfigurationProperty = {
certAgeThresholdInDays: 'certAgeThresholdInDays',
};
Properties
| Name | Type | Description |
|---|---|---|
| cert | string | The number of days that defines when a device certificate is considered to have aged. |
certAgeThresholdInDays?
Type:
string
(optional)
The number of days that defines when a device certificate is considered to have aged.
The check will report a finding if a certificate has been active for a number of days greater than or equal to this threshold value.

.NET
Go
Java
Python
TypeScript