Class: AWSCDK::QuickSight::CfnAnalysis::PluginVisualPropertyProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnAnalysis::PluginVisualPropertyProperty
- Defined in:
- quick_sight/cfn_analysis.rb
Overview
The key value pair of the persisted property.
Instance Attribute Summary collapse
-
#name ⇒ String?
readonly
The name of the plugin visual property.
-
#value ⇒ String?
readonly
The value of the plugin visual property.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(name: nil, value: nil) ⇒ PluginVisualPropertyProperty
constructor
A new instance of PluginVisualPropertyProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(name: nil, value: nil) ⇒ PluginVisualPropertyProperty
Returns a new instance of PluginVisualPropertyProperty.
23076 23077 23078 23079 23080 23081 |
# File 'quick_sight/cfn_analysis.rb', line 23076 def initialize(name: nil, value: nil) @name = name Jsii::Type.check_type(@name, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "name") unless @name.nil? @value = value Jsii::Type.check_type(@value, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "value") unless @value.nil? end |
Instance Attribute Details
#name ⇒ String? (readonly)
The name of the plugin visual property.
23087 23088 23089 |
# File 'quick_sight/cfn_analysis.rb', line 23087 def name @name end |
#value ⇒ String? (readonly)
The value of the plugin visual property.
23092 23093 23094 |
# File 'quick_sight/cfn_analysis.rb', line 23092 def value @value end |
Class Method Details
.jsii_properties ⇒ Object
23094 23095 23096 23097 23098 23099 |
# File 'quick_sight/cfn_analysis.rb', line 23094 def self.jsii_properties { :name => "name", :value => "value", } end |
Instance Method Details
#to_jsii ⇒ Object
23101 23102 23103 23104 23105 23106 23107 23108 |
# File 'quick_sight/cfn_analysis.rb', line 23101 def to_jsii result = {} result.merge!({ "name" => @name, "value" => @value, }) result.compact end |