Interface CfnAccountAuditConfiguration.DeviceCertAgeAuditCheckConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAccountAuditConfiguration.DeviceCertAgeAuditCheckConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnAccountAuditConfiguration

@Stability(Stable) public static interface CfnAccountAuditConfiguration.DeviceCertAgeAuditCheckConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Configuration for the device certificate age audit check.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.iot.*;
 DeviceCertAgeAuditCheckConfigurationProperty deviceCertAgeAuditCheckConfigurationProperty = DeviceCertAgeAuditCheckConfigurationProperty.builder()
         .configuration(CertAgeCheckCustomConfigurationProperty.builder()
                 .certAgeThresholdInDays("certAgeThresholdInDays")
                 .build())
         .enabled(false)
         .build();
 

See Also: