Class: AWSCDK::QuickSight::CfnTemplate::SheetControlLayoutProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnTemplate::SheetControlLayoutProperty
- Defined in:
- quick_sight/cfn_template.rb
Overview
A grid layout to define the placement of sheet control.
Instance Attribute Summary collapse
-
#configuration ⇒ AWSCDK::IResolvable, AWSCDK::QuickSight::CfnTemplate::SheetControlLayoutConfigurationProperty
readonly
The configuration that determines the elements and canvas size options of sheet control.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(configuration:) ⇒ SheetControlLayoutProperty
constructor
A new instance of SheetControlLayoutProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(configuration:) ⇒ SheetControlLayoutProperty
Returns a new instance of SheetControlLayoutProperty.
24162 24163 24164 24165 |
# File 'quick_sight/cfn_template.rb', line 24162 def initialize(configuration:) @configuration = configuration.is_a?(Hash) ? ::AWSCDK::QuickSight::CfnTemplate::SheetControlLayoutConfigurationProperty.new(**configuration.transform_keys(&:to_sym)) : configuration Jsii::Type.check_type(@configuration, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19xdWlja3NpZ2h0LkNmblRlbXBsYXRlLlNoZWV0Q29udHJvbExheW91dENvbmZpZ3VyYXRpb25Qcm9wZXJ0eSJ9XX19")), "configuration") end |
Instance Attribute Details
#configuration ⇒ AWSCDK::IResolvable, AWSCDK::QuickSight::CfnTemplate::SheetControlLayoutConfigurationProperty (readonly)
The configuration that determines the elements and canvas size options of sheet control.
24171 24172 24173 |
# File 'quick_sight/cfn_template.rb', line 24171 def configuration @configuration end |
Class Method Details
.jsii_properties ⇒ Object
24173 24174 24175 24176 24177 |
# File 'quick_sight/cfn_template.rb', line 24173 def self.jsii_properties { :configuration => "configuration", } end |
Instance Method Details
#to_jsii ⇒ Object
24179 24180 24181 24182 24183 24184 24185 |
# File 'quick_sight/cfn_template.rb', line 24179 def to_jsii result = {} result.merge!({ "configuration" => @configuration, }) result.compact end |