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