Interface CfnAnalysis.ValidationStrategyProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.ValidationStrategyProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.ValidationStrategyProperty
extends software.amazon.jsii.JsiiSerializable
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.
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.quicksight.*; ValidationStrategyProperty validationStrategyProperty = ValidationStrategyProperty.builder() .mode("mode") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAnalysis.ValidationStrategyProperty
static final class
An implementation forCfnAnalysis.ValidationStrategyProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMode
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 toLENIENT
, validation is skipped for specific UI errors.- See Also:
-
builder
-