package awsiot // Which audit checks are enabled and disabled for this account. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // auditCheckConfigurationProperty := &AuditCheckConfigurationProperty{ // Enabled: jsii.Boolean(false), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-accountauditconfiguration-auditcheckconfiguration.html // type CfnAccountAuditConfiguration_AuditCheckConfigurationProperty struct { // True if this audit check is enabled for this account. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-accountauditconfiguration-auditcheckconfiguration.html#cfn-iot-accountauditconfiguration-auditcheckconfiguration-enabled // Enabled interface{} `field:"optional" json:"enabled" yaml:"enabled"` }