com.pulumi.awsnative.quicksight.kotlin.outputs.AnalysisValidationStrategy.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.quicksight.kotlin.outputs
import com.pulumi.awsnative.quicksight.kotlin.enums.AnalysisValidationStrategyMode
import kotlin.Suppress
/**
* The option to relax the validation that is required to create and update analyses, dashboards, and templates with definition objects. When you set this value to LENIENT
, validation is skipped for specific errors.
* @property mode The mode of validation for the asset to be created or updated. When you set this value to `STRICT` , strict validation for every error is enforced. When you set this value to `LENIENT` , validation is skipped for specific UI errors.
*/
public data class AnalysisValidationStrategy(
public val mode: AnalysisValidationStrategyMode,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.quicksight.outputs.AnalysisValidationStrategy): AnalysisValidationStrategy = AnalysisValidationStrategy(
mode = javaType.mode().let({ args0 ->
com.pulumi.awsnative.quicksight.kotlin.enums.AnalysisValidationStrategyMode.Companion.toKotlin(args0)
}),
)
}
}