Class: AWSCDK::QuickSight::CfnTemplate::SheetElementRenderingRuleProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnTemplate::SheetElementRenderingRuleProperty
- Defined in:
- quick_sight/cfn_template.rb
Overview
The rendering rules of a sheet that uses a free-form layout.
Instance Attribute Summary collapse
-
#configuration_overrides ⇒ AWSCDK::IResolvable, AWSCDK::QuickSight::CfnTemplate::SheetElementConfigurationOverridesProperty
readonly
The override configuration of the rendering rules of a sheet.
-
#expression ⇒ String
readonly
The expression of the rendering rules of a sheet.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(configuration_overrides:, expression:) ⇒ SheetElementRenderingRuleProperty
constructor
A new instance of SheetElementRenderingRuleProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(configuration_overrides:, expression:) ⇒ SheetElementRenderingRuleProperty
Returns a new instance of SheetElementRenderingRuleProperty.
24390 24391 24392 24393 24394 24395 |
# File 'quick_sight/cfn_template.rb', line 24390 def initialize(configuration_overrides:, expression:) @configuration_overrides = configuration_overrides.is_a?(Hash) ? ::AWSCDK::QuickSight::CfnTemplate::SheetElementConfigurationOverridesProperty.new(**configuration_overrides.transform_keys(&:to_sym)) : configuration_overrides Jsii::Type.check_type(@configuration_overrides, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19xdWlja3NpZ2h0LkNmblRlbXBsYXRlLlNoZWV0RWxlbWVudENvbmZpZ3VyYXRpb25PdmVycmlkZXNQcm9wZXJ0eSJ9XX19")), "configurationOverrides") @expression = expression Jsii::Type.check_type(@expression, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "expression") end |
Instance Attribute Details
#configuration_overrides ⇒ AWSCDK::IResolvable, AWSCDK::QuickSight::CfnTemplate::SheetElementConfigurationOverridesProperty (readonly)
The override configuration of the rendering rules of a sheet.
24401 24402 24403 |
# File 'quick_sight/cfn_template.rb', line 24401 def configuration_overrides @configuration_overrides end |
#expression ⇒ String (readonly)
The expression of the rendering rules of a sheet.
24406 24407 24408 |
# File 'quick_sight/cfn_template.rb', line 24406 def expression @expression end |
Class Method Details
.jsii_properties ⇒ Object
24408 24409 24410 24411 24412 24413 |
# File 'quick_sight/cfn_template.rb', line 24408 def self.jsii_properties { :configuration_overrides => "configurationOverrides", :expression => "expression", } end |
Instance Method Details
#to_jsii ⇒ Object
24415 24416 24417 24418 24419 24420 24421 24422 |
# File 'quick_sight/cfn_template.rb', line 24415 def to_jsii result = {} result.merge!({ "configurationOverrides" => @configuration_overrides, "expression" => @expression, }) result.compact end |