Class: AWSCDK::QuickSight::CfnDashboard::SetParameterValueConfigurationProperty

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

Overview

The configuration of adding parameters in action.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(destination_parameter_name:, value:) ⇒ SetParameterValueConfigurationProperty

Returns a new instance of SetParameterValueConfigurationProperty.

Parameters:



26859
26860
26861
26862
26863
26864
# File 'quick_sight/cfn_dashboard.rb', line 26859

def initialize(destination_parameter_name:, value:)
  @destination_parameter_name = destination_parameter_name
  Jsii::Type.check_type(@destination_parameter_name, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "destinationParameterName")
  @value = value.is_a?(Hash) ? ::AWSCDK::QuickSight::CfnDashboard::DestinationParameterValueConfigurationProperty.new(**value.transform_keys(&:to_sym)) : value
  Jsii::Type.check_type(@value, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19xdWlja3NpZ2h0LkNmbkRhc2hib2FyZC5EZXN0aW5hdGlvblBhcmFtZXRlclZhbHVlQ29uZmlndXJhdGlvblByb3BlcnR5In1dfX0=")), "value")
end

Instance Attribute Details

#destination_parameter_nameString (readonly)

The destination parameter name of the SetParameterValueConfiguration .



26870
26871
26872
# File 'quick_sight/cfn_dashboard.rb', line 26870

def destination_parameter_name
  @destination_parameter_name
end

Class Method Details

.jsii_propertiesObject



26875
26876
26877
26878
26879
26880
# File 'quick_sight/cfn_dashboard.rb', line 26875

def self.jsii_properties
  {
    :destination_parameter_name => "destinationParameterName",
    :value => "value",
  }
end

Instance Method Details

#to_jsiiObject



26882
26883
26884
26885
26886
26887
26888
26889
# File 'quick_sight/cfn_dashboard.rb', line 26882

def to_jsii
  result = {}
  result.merge!({
    "destinationParameterName" => @destination_parameter_name,
    "value" => @value,
  })
  result.compact
end