Class: AWSCDK::QuickSight::CfnTemplate::SetParameterValueConfigurationProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
quick_sight/cfn_template.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:



24013
24014
24015
24016
24017
24018
# File 'quick_sight/cfn_template.rb', line 24013

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::CfnTemplate::DestinationParameterValueConfigurationProperty.new(**value.transform_keys(&:to_sym)) : value
  Jsii::Type.check_type(@value, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19xdWlja3NpZ2h0LkNmblRlbXBsYXRlLkRlc3RpbmF0aW9uUGFyYW1ldGVyVmFsdWVDb25maWd1cmF0aW9uUHJvcGVydHkifV19fQ==")), "value")
end

Instance Attribute Details

#destination_parameter_nameString (readonly)

The destination parameter name of the SetParameterValueConfiguration .



24024
24025
24026
# File 'quick_sight/cfn_template.rb', line 24024

def destination_parameter_name
  @destination_parameter_name
end

Class Method Details

.jsii_propertiesObject



24029
24030
24031
24032
24033
24034
# File 'quick_sight/cfn_template.rb', line 24029

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

Instance Method Details

#to_jsiiObject



24036
24037
24038
24039
24040
24041
24042
24043
# File 'quick_sight/cfn_template.rb', line 24036

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