Class: AWSCDK::QuickSight::CfnDashboard::FilledMapConditionalFormattingOptionProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnDashboard::FilledMapConditionalFormattingOptionProperty
- Defined in:
- quick_sight/cfn_dashboard.rb
Overview
Conditional formatting options of a FilledMapVisual .
Instance Attribute Summary collapse
-
#shape ⇒ AWSCDK::IResolvable, AWSCDK::QuickSight::CfnDashboard::FilledMapShapeConditionalFormattingProperty
readonly
The conditional formatting that determines the shape of the filled map.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(shape:) ⇒ FilledMapConditionalFormattingOptionProperty
constructor
A new instance of FilledMapConditionalFormattingOptionProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(shape:) ⇒ FilledMapConditionalFormattingOptionProperty
Returns a new instance of FilledMapConditionalFormattingOptionProperty.
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 |
Instance Attribute Details
#shape ⇒ AWSCDK::IResolvable, AWSCDK::QuickSight::CfnDashboard::FilledMapShapeConditionalFormattingProperty (readonly)
The conditional formatting that determines the shape of the filled map.
10109 10110 10111 |
# File 'quick_sight/cfn_dashboard.rb', line 10109 def shape @shape end |
Class Method Details
.jsii_properties ⇒ Object
10111 10112 10113 10114 10115 |
# File 'quick_sight/cfn_dashboard.rb', line 10111 def self.jsii_properties { :shape => "shape", } end |
Instance Method Details
#to_jsii ⇒ Object
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 |