Class: AWSCDK::QuickSight::CfnDashboard::SimpleClusterMarkerProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnDashboard::SimpleClusterMarkerProperty
- Defined in:
- quick_sight/cfn_dashboard.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.
27814 27815 27816 27817 |
# File 'quick_sight/cfn_dashboard.rb', line 27814 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.
27823 27824 27825 |
# File 'quick_sight/cfn_dashboard.rb', line 27823 def color @color end |
Class Method Details
.jsii_properties ⇒ Object
27825 27826 27827 27828 27829 |
# File 'quick_sight/cfn_dashboard.rb', line 27825 def self.jsii_properties { :color => "color", } end |
Instance Method Details
#to_jsii ⇒ Object
27831 27832 27833 27834 27835 27836 27837 |
# File 'quick_sight/cfn_dashboard.rb', line 27831 def to_jsii result = {} result.merge!({ "color" => @color, }) result.compact end |