Class: AWSCDK::QuickSight::CfnAnalysis::FilledMapConditionalFormattingOptionProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnAnalysis::FilledMapConditionalFormattingOptionProperty
- Defined in:
- quick_sight/cfn_analysis.rb
Overview
Conditional formatting options of a FilledMapVisual .
Instance Attribute Summary collapse
-
#shape ⇒ AWSCDK::IResolvable, AWSCDK::QuickSight::CfnAnalysis::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.
9347 9348 9349 9350 |
# File 'quick_sight/cfn_analysis.rb', line 9347 def initialize(shape:) @shape = shape.is_a?(Hash) ? ::AWSCDK::QuickSight::CfnAnalysis::FilledMapShapeConditionalFormattingProperty.new(**shape.transform_keys(&:to_sym)) : shape Jsii::Type.check_type(@shape, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19xdWlja3NpZ2h0LkNmbkFuYWx5c2lzLkZpbGxlZE1hcFNoYXBlQ29uZGl0aW9uYWxGb3JtYXR0aW5nUHJvcGVydHkifV19fQ==")), "shape") end |
Instance Attribute Details
#shape ⇒ AWSCDK::IResolvable, AWSCDK::QuickSight::CfnAnalysis::FilledMapShapeConditionalFormattingProperty (readonly)
The conditional formatting that determines the shape of the filled map.
9356 9357 9358 |
# File 'quick_sight/cfn_analysis.rb', line 9356 def shape @shape end |
Class Method Details
.jsii_properties ⇒ Object
9358 9359 9360 9361 9362 |
# File 'quick_sight/cfn_analysis.rb', line 9358 def self.jsii_properties { :shape => "shape", } end |
Instance Method Details
#to_jsii ⇒ Object
9364 9365 9366 9367 9368 9369 9370 |
# File 'quick_sight/cfn_analysis.rb', line 9364 def to_jsii result = {} result.merge!({ "shape" => @shape, }) result.compact end |