Class: AWSCDK::QuickSight::CfnTheme::BorderStyleProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnTheme::BorderStyleProperty
- Defined in:
- quick_sight/cfn_theme.rb
Overview
The display options for tile borders for visuals.
Instance Attribute Summary collapse
-
#show ⇒ Boolean, ...
readonly
The option to enable display of borders for visuals.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(show: nil) ⇒ BorderStyleProperty
constructor
A new instance of BorderStyleProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(show: nil) ⇒ BorderStyleProperty
Returns a new instance of BorderStyleProperty.
715 716 717 718 |
# File 'quick_sight/cfn_theme.rb', line 715 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)
The option to enable display of borders for visuals.
724 725 726 |
# File 'quick_sight/cfn_theme.rb', line 724 def show @show end |
Class Method Details
.jsii_properties ⇒ Object
726 727 728 729 730 |
# File 'quick_sight/cfn_theme.rb', line 726 def self.jsii_properties { :show => "show", } end |
Instance Method Details
#to_jsii ⇒ Object
732 733 734 735 736 737 738 |
# File 'quick_sight/cfn_theme.rb', line 732 def to_jsii result = {} result.merge!({ "show" => @show, }) result.compact end |