Class: AWSCDK::QuickSight::CfnAnalysis::StringDefaultValuesProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnAnalysis::StringDefaultValuesProperty
- Defined in:
- quick_sight/cfn_analysis.rb
Overview
The default values of the StringParameterDeclaration .
Instance Attribute Summary collapse
-
#dynamic_value ⇒ AWSCDK::IResolvable, ...
readonly
The dynamic value of the
StringDefaultValues. -
#static_values ⇒ Array<String>?
readonly
The static values of the
DecimalDefaultValues.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(dynamic_value: nil, static_values: nil) ⇒ StringDefaultValuesProperty
constructor
A new instance of StringDefaultValuesProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(dynamic_value: nil, static_values: nil) ⇒ StringDefaultValuesProperty
Returns a new instance of StringDefaultValuesProperty.
27288 27289 27290 27291 27292 27293 |
# File 'quick_sight/cfn_analysis.rb', line 27288 def initialize(dynamic_value: nil, static_values: nil) @dynamic_value = dynamic_value.is_a?(Hash) ? ::AWSCDK::QuickSight::CfnAnalysis::DynamicDefaultValueProperty.new(**dynamic_value.transform_keys(&:to_sym)) : dynamic_value Jsii::Type.check_type(@dynamic_value, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19xdWlja3NpZ2h0LkNmbkFuYWx5c2lzLkR5bmFtaWNEZWZhdWx0VmFsdWVQcm9wZXJ0eSJ9XX19")), "dynamicValue") unless @dynamic_value.nil? @static_values = static_values Jsii::Type.check_type(@static_values, JSON.parse(Base64.strict_decode64("eyJjb2xsZWN0aW9uIjp7ImVsZW1lbnR0eXBlIjp7InByaW1pdGl2ZSI6InN0cmluZyJ9LCJraW5kIjoiYXJyYXkifX0=")), "staticValues") unless @static_values.nil? end |
Instance Attribute Details
#dynamic_value ⇒ AWSCDK::IResolvable, ... (readonly)
The dynamic value of the StringDefaultValues .
Different defaults displayed according to users, groups, and values mapping.
27301 27302 27303 |
# File 'quick_sight/cfn_analysis.rb', line 27301 def dynamic_value @dynamic_value end |
#static_values ⇒ Array<String>? (readonly)
The static values of the DecimalDefaultValues .
27306 27307 27308 |
# File 'quick_sight/cfn_analysis.rb', line 27306 def static_values @static_values end |
Class Method Details
.jsii_properties ⇒ Object
27308 27309 27310 27311 27312 27313 |
# File 'quick_sight/cfn_analysis.rb', line 27308 def self.jsii_properties { :dynamic_value => "dynamicValue", :static_values => "staticValues", } end |
Instance Method Details
#to_jsii ⇒ Object
27315 27316 27317 27318 27319 27320 27321 27322 |
# File 'quick_sight/cfn_analysis.rb', line 27315 def to_jsii result = {} result.merge!({ "dynamicValue" => @dynamic_value, "staticValues" => @static_values, }) result.compact end |