Class: AWSCDK::QuickSight::CfnTheme::MarginStyleProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnTheme::MarginStyleProperty
- Defined in:
- quick_sight/cfn_theme.rb
Overview
The display options for margins around the outside edge of sheets.
Instance Attribute Summary collapse
-
#show ⇒ Boolean, ...
readonly
This Boolean value controls whether to display sheet margins.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(show: nil) ⇒ MarginStyleProperty
constructor
A new instance of MarginStyleProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(show: nil) ⇒ MarginStyleProperty
Returns a new instance of MarginStyleProperty.
869 870 871 872 |
# File 'quick_sight/cfn_theme.rb', line 869 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 sheet margins.
878 879 880 |
# File 'quick_sight/cfn_theme.rb', line 878 def show @show end |
Class Method Details
.jsii_properties ⇒ Object
880 881 882 883 884 |
# File 'quick_sight/cfn_theme.rb', line 880 def self.jsii_properties { :show => "show", } end |
Instance Method Details
#to_jsii ⇒ Object
886 887 888 889 890 891 892 |
# File 'quick_sight/cfn_theme.rb', line 886 def to_jsii result = {} result.merge!({ "show" => @show, }) result.compact end |