Class: AWSCDK::QuickSight::CfnDataSet::IntegerDatasetParameterDefaultValuesProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
quick_sight/cfn_data_set.rb

Overview

A list of default values for a given integer parameter.

This structure only accepts static values.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(static_values: nil) ⇒ IntegerDatasetParameterDefaultValuesProperty

Returns a new instance of IntegerDatasetParameterDefaultValuesProperty.

Parameters:

  • static_values (Array<Numeric>, AWSCDK::IResolvable, nil) (defaults to: nil)

    A list of static default values for a given integer parameter.



3549
3550
3551
3552
# File 'quick_sight/cfn_data_set.rb', line 3549

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_valuesArray<Numeric>, ... (readonly)

A list of static default values for a given integer parameter.



3558
3559
3560
# File 'quick_sight/cfn_data_set.rb', line 3558

def static_values
  @static_values
end

Class Method Details

.jsii_propertiesObject



3560
3561
3562
3563
3564
# File 'quick_sight/cfn_data_set.rb', line 3560

def self.jsii_properties
  {
    :static_values => "staticValues",
  }
end

Instance Method Details

#to_jsiiObject



3566
3567
3568
3569
3570
3571
3572
# File 'quick_sight/cfn_data_set.rb', line 3566

def to_jsii
  result = {}
  result.merge!({
    "staticValues" => @static_values,
  })
  result.compact
end