Class: AWSCDK::QuickSight::CfnTemplate::FilledMapConditionalFormattingOptionProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnTemplate::FilledMapConditionalFormattingOptionProperty
- Defined in:
- quick_sight/cfn_template.rb
Overview
Conditional formatting options of a FilledMapVisual .
Instance Attribute Summary collapse
-
#shape ⇒ AWSCDK::IResolvable, AWSCDK::QuickSight::CfnTemplate::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.
9155 9156 9157 9158 |
# File 'quick_sight/cfn_template.rb', line 9155 def initialize(shape:) @shape = shape.is_a?(Hash) ? ::AWSCDK::QuickSight::CfnTemplate::FilledMapShapeConditionalFormattingProperty.new(**shape.transform_keys(&:to_sym)) : shape Jsii::Type.check_type(@shape, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19xdWlja3NpZ2h0LkNmblRlbXBsYXRlLkZpbGxlZE1hcFNoYXBlQ29uZGl0aW9uYWxGb3JtYXR0aW5nUHJvcGVydHkifV19fQ==")), "shape") end |
Instance Attribute Details
#shape ⇒ AWSCDK::IResolvable, AWSCDK::QuickSight::CfnTemplate::FilledMapShapeConditionalFormattingProperty (readonly)
The conditional formatting that determines the shape of the filled map.
9164 9165 9166 |
# File 'quick_sight/cfn_template.rb', line 9164 def shape @shape end |
Class Method Details
.jsii_properties ⇒ Object
9166 9167 9168 9169 9170 |
# File 'quick_sight/cfn_template.rb', line 9166 def self.jsii_properties { :shape => "shape", } end |
Instance Method Details
#to_jsii ⇒ Object
9172 9173 9174 9175 9176 9177 9178 |
# File 'quick_sight/cfn_template.rb', line 9172 def to_jsii result = {} result.merge!({ "shape" => @shape, }) result.compact end |