interface ValidationStrategyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnAnalysisPropsMixin.ValidationStrategyProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnAnalysisPropsMixin_ValidationStrategyProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnAnalysisPropsMixin.ValidationStrategyProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnAnalysisPropsMixin.ValidationStrategyProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnAnalysisPropsMixin » ValidationStrategyProperty |
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 { aws_quicksight as quicksight } from '@aws-cdk/cfn-property-mixins';
const validationStrategyProperty: quicksight.CfnAnalysisPropsMixin.ValidationStrategyProperty = {
mode: 'mode',
};
Properties
| Name | Type | Description |
|---|---|---|
| mode? | string | The mode of validation for the asset to be created or updated. |
mode?
Type:
string
(optional)
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.

.NET
Go
Java
Python
TypeScript