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