Class: AWSCDK::QuickSight::CfnAnalysis::ValidationStrategyProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnAnalysis::ValidationStrategyProperty
- Defined in:
- quick_sight/cfn_analysis.rb
Overview
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.
Instance Attribute Summary collapse
-
#mode ⇒ String
readonly
The mode of validation for the asset to be created or updated.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(mode:) ⇒ ValidationStrategyProperty
constructor
A new instance of ValidationStrategyProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(mode:) ⇒ ValidationStrategyProperty
Returns a new instance of ValidationStrategyProperty.
30864 30865 30866 30867 |
# File 'quick_sight/cfn_analysis.rb', line 30864 def initialize(mode:) @mode = mode Jsii::Type.check_type(@mode, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "mode") end |
Instance Attribute Details
#mode ⇒ String (readonly)
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.
30875 30876 30877 |
# File 'quick_sight/cfn_analysis.rb', line 30875 def mode @mode end |
Class Method Details
.jsii_properties ⇒ Object
30877 30878 30879 30880 30881 |
# File 'quick_sight/cfn_analysis.rb', line 30877 def self.jsii_properties { :mode => "mode", } end |
Instance Method Details
#to_jsii ⇒ Object
30883 30884 30885 30886 30887 30888 30889 |
# File 'quick_sight/cfn_analysis.rb', line 30883 def to_jsii result = {} result.merge!({ "mode" => @mode, }) result.compact end |