
com.pulumi.awsnative.configuration.kotlin.outputs.ConfigRuleEvaluationModeConfiguration.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.configuration.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* The configuration object for CC rule evaluation mode. The supported valid values are Detective or Proactive.
* @property mode The mode of an evaluation. The valid values are Detective or Proactive.
*/
public data class ConfigRuleEvaluationModeConfiguration(
public val mode: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.configuration.outputs.ConfigRuleEvaluationModeConfiguration): ConfigRuleEvaluationModeConfiguration = ConfigRuleEvaluationModeConfiguration(
mode = javaType.mode().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy