Class: AWSCDK::QuickSight::CfnAnalysis::SimpleClusterMarkerProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnAnalysis::SimpleClusterMarkerProperty
- Defined in:
- quick_sight/cfn_analysis.rb
Overview
The simple cluster marker of the cluster marker.
Instance Attribute Summary collapse
-
#color ⇒ String?
readonly
The color of the simple cluster marker.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(color: nil) ⇒ SimpleClusterMarkerProperty
constructor
A new instance of SimpleClusterMarkerProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(color: nil) ⇒ SimpleClusterMarkerProperty
Returns a new instance of SimpleClusterMarkerProperty.
26776 26777 26778 26779 |
# File 'quick_sight/cfn_analysis.rb', line 26776 def initialize(color: nil) @color = color Jsii::Type.check_type(@color, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "color") unless @color.nil? end |
Instance Attribute Details
#color ⇒ String? (readonly)
The color of the simple cluster marker.
26785 26786 26787 |
# File 'quick_sight/cfn_analysis.rb', line 26785 def color @color end |
Class Method Details
.jsii_properties ⇒ Object
26787 26788 26789 26790 26791 |
# File 'quick_sight/cfn_analysis.rb', line 26787 def self.jsii_properties { :color => "color", } end |
Instance Method Details
#to_jsii ⇒ Object
26793 26794 26795 26796 26797 26798 26799 |
# File 'quick_sight/cfn_analysis.rb', line 26793 def to_jsii result = {} result.merge!({ "color" => @color, }) result.compact end |