Class: AWSCDK::QuickSight::CfnTemplate::SimpleClusterMarkerProperty

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



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

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



24913
24914
24915
24916
24917
# File 'quick_sight/cfn_template.rb', line 24913

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

Instance Method Details

#to_jsiiObject



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