All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.awsnative.quicksight.kotlin.outputs.AnalysisValidationStrategy.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 0.122.0.0
Show newest version
@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) }), ) } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy