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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnAccountAuditConfiguration.DeviceCertAgeAuditCheckConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConfiguration
Configuration settings for the device certificate age check, including the threshold in days for certificate age.This configuration is of type
CertAgeCheckCustomConfiguration.- See Also:
-
getEnabled
True if this audit check is enabled for this account.- See Also:
-
builder
@Stability(Stable) static CfnAccountAuditConfiguration.DeviceCertAgeAuditCheckConfigurationProperty.Builder builder()
-