Class: AWSCDK::QuickSight::CfnDataSet::DecimalDatasetParameterDefaultValuesProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnDataSet::DecimalDatasetParameterDefaultValuesProperty
- Defined in:
- quick_sight/cfn_data_set.rb
Overview
A list of default values for a given decimal parameter.
This structure only accepts static values.
Instance Attribute Summary collapse
-
#static_values ⇒ Array<Numeric>, ...
readonly
A list of static default values for a given decimal parameter.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(static_values: nil) ⇒ DecimalDatasetParameterDefaultValuesProperty
constructor
A new instance of DecimalDatasetParameterDefaultValuesProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(static_values: nil) ⇒ DecimalDatasetParameterDefaultValuesProperty
Returns a new instance of DecimalDatasetParameterDefaultValuesProperty.
2883 2884 2885 2886 |
# File 'quick_sight/cfn_data_set.rb', line 2883 def initialize(static_values: 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
#static_values ⇒ Array<Numeric>, ... (readonly)
A list of static default values for a given decimal parameter.
2892 2893 2894 |
# File 'quick_sight/cfn_data_set.rb', line 2892 def static_values @static_values end |
Class Method Details
.jsii_properties ⇒ Object
2894 2895 2896 2897 2898 |
# File 'quick_sight/cfn_data_set.rb', line 2894 def self.jsii_properties { :static_values => "staticValues", } end |
Instance Method Details
#to_jsii ⇒ Object
2900 2901 2902 2903 2904 2905 2906 |
# File 'quick_sight/cfn_data_set.rb', line 2900 def to_jsii result = {} result.merge!({ "staticValues" => @static_values, }) result.compact end |