Class: AWSCDK::QuickSight::CfnAnalysis::SimpleClusterMarkerProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
quick_sight/cfn_analysis.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.



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

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



26787
26788
26789
26790
26791
# File 'quick_sight/cfn_analysis.rb', line 26787

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

Instance Method Details

#to_jsiiObject



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