Class: AWSCDK::QuickSight::CfnTheme::GutterStyleProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnTheme::GutterStyleProperty
- Defined in:
- quick_sight/cfn_theme.rb
Overview
The display options for gutter spacing between tiles on a sheet.
Instance Attribute Summary collapse
-
#show ⇒ Boolean, ...
readonly
This Boolean value controls whether to display a gutter space between sheet tiles.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(show: nil) ⇒ GutterStyleProperty
constructor
A new instance of GutterStyleProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(show: nil) ⇒ GutterStyleProperty
Returns a new instance of GutterStyleProperty.
836 837 838 839 |
# File 'quick_sight/cfn_theme.rb', line 836 def initialize(show: nil) @show = show Jsii::Type.check_type(@show, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3sicHJpbWl0aXZlIjoiYm9vbGVhbiJ9LHsiZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifV19fQ==")), "show") unless @show.nil? end |
Instance Attribute Details
#show ⇒ Boolean, ... (readonly)
This Boolean value controls whether to display a gutter space between sheet tiles.
845 846 847 |
# File 'quick_sight/cfn_theme.rb', line 845 def show @show end |
Class Method Details
.jsii_properties ⇒ Object
847 848 849 850 851 |
# File 'quick_sight/cfn_theme.rb', line 847 def self.jsii_properties { :show => "show", } end |
Instance Method Details
#to_jsii ⇒ Object
853 854 855 856 857 858 859 |
# File 'quick_sight/cfn_theme.rb', line 853 def to_jsii result = {} result.merge!({ "show" => @show, }) result.compact end |