Class: AWSCDK::QuickSight::CfnDashboard::SimpleClusterMarkerProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
quick_sight/cfn_dashboard.rb

Overview

The simple cluster marker of the cluster marker.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(color: nil) ⇒ SimpleClusterMarkerProperty

Returns a new instance of SimpleClusterMarkerProperty.

Parameters:

  • color (String, nil) (defaults to: nil)

    The color of the simple cluster marker.



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

#colorString? (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_propertiesObject



27825
27826
27827
27828
27829
# File 'quick_sight/cfn_dashboard.rb', line 27825

def self.jsii_properties
  {
    :color => "color",
  }
end

Instance Method Details

#to_jsiiObject



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