Class: AWSCDK::QuickSight::CfnAnalysis::IntegerDefaultValuesProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnAnalysis::IntegerDefaultValuesProperty
- Defined in:
- quick_sight/cfn_analysis.rb
Overview
The default values of the IntegerParameterDeclaration .
Instance Attribute Summary collapse
-
#dynamic_value ⇒ AWSCDK::IResolvable, ...
readonly
The dynamic value of the
IntegerDefaultValues. -
#static_values ⇒ Array<Numeric>, ...
readonly
The static values of the
IntegerDefaultValues.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(dynamic_value: nil, static_values: nil) ⇒ IntegerDefaultValuesProperty
constructor
A new instance of IntegerDefaultValuesProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(dynamic_value: nil, static_values: nil) ⇒ IntegerDefaultValuesProperty
Returns a new instance of IntegerDefaultValuesProperty.
16120 16121 16122 16123 16124 16125 |
# File 'quick_sight/cfn_analysis.rb', line 16120 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("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siY29sbGVjdGlvbiI6eyJlbGVtZW50dHlwZSI6eyJwcmltaXRpdmUiOiJudW1iZXIifSwia2luZCI6ImFycmF5In19LHsiZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifV19fQ==")), "staticValues") unless @static_values.nil? end |
Instance Attribute Details
#dynamic_value ⇒ AWSCDK::IResolvable, ... (readonly)
The dynamic value of the IntegerDefaultValues .
Different defaults are displayed according to users, groups, and values mapping.
16133 16134 16135 |
# File 'quick_sight/cfn_analysis.rb', line 16133 def dynamic_value @dynamic_value end |
#static_values ⇒ Array<Numeric>, ... (readonly)
The static values of the IntegerDefaultValues .
16138 16139 16140 |
# File 'quick_sight/cfn_analysis.rb', line 16138 def static_values @static_values end |
Class Method Details
.jsii_properties ⇒ Object
16140 16141 16142 16143 16144 16145 |
# File 'quick_sight/cfn_analysis.rb', line 16140 def self.jsii_properties { :dynamic_value => "dynamicValue", :static_values => "staticValues", } end |
Instance Method Details
#to_jsii ⇒ Object
16147 16148 16149 16150 16151 16152 16153 16154 |
# File 'quick_sight/cfn_analysis.rb', line 16147 def to_jsii result = {} result.merge!({ "dynamicValue" => @dynamic_value, "staticValues" => @static_values, }) result.compact end |