Class: AWSCDK::QuickSight::CfnDashboard::FilledMapConditionalFormattingOptionProperty

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

Overview

Conditional formatting options of a FilledMapVisual .

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(shape:) ⇒ FilledMapConditionalFormattingOptionProperty

Returns a new instance of FilledMapConditionalFormattingOptionProperty.

Parameters:



10100
10101
10102
10103
# File 'quick_sight/cfn_dashboard.rb', line 10100

def initialize(shape:)
  @shape = shape.is_a?(Hash) ? ::AWSCDK::QuickSight::CfnDashboard::FilledMapShapeConditionalFormattingProperty.new(**shape.transform_keys(&:to_sym)) : shape
  Jsii::Type.check_type(@shape, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19xdWlja3NpZ2h0LkNmbkRhc2hib2FyZC5GaWxsZWRNYXBTaGFwZUNvbmRpdGlvbmFsRm9ybWF0dGluZ1Byb3BlcnR5In1dfX0=")), "shape")
end

Class Method Details

.jsii_propertiesObject



10111
10112
10113
10114
10115
# File 'quick_sight/cfn_dashboard.rb', line 10111

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

Instance Method Details

#to_jsiiObject



10117
10118
10119
10120
10121
10122
10123
# File 'quick_sight/cfn_dashboard.rb', line 10117

def to_jsii
  result = {}
  result.merge!({
    "shape" => @shape,
  })
  result.compact
end