Class: AWSCDK::QuickSight::CfnTemplate::SimpleClusterMarkerProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnTemplate::SimpleClusterMarkerProperty
- Defined in:
- quick_sight/cfn_template.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.
24902 24903 24904 24905 |
# File 'quick_sight/cfn_template.rb', line 24902 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.
24911 24912 24913 |
# File 'quick_sight/cfn_template.rb', line 24911 def color @color end |
Class Method Details
.jsii_properties ⇒ Object
24913 24914 24915 24916 24917 |
# File 'quick_sight/cfn_template.rb', line 24913 def self.jsii_properties { :color => "color", } end |
Instance Method Details
#to_jsii ⇒ Object
24919 24920 24921 24922 24923 24924 24925 |
# File 'quick_sight/cfn_template.rb', line 24919 def to_jsii result = {} result.merge!({ "color" => @color, }) result.compact end |