Class: AWSCDK::QuickSight::CfnTheme::BorderStyleProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
quick_sight/cfn_theme.rb

Overview

The display options for tile borders for visuals.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(show: nil) ⇒ BorderStyleProperty

Returns a new instance of BorderStyleProperty.

Parameters:

  • show (Boolean, AWSCDK::IResolvable, nil) (defaults to: nil)

    The option to enable display of borders for visuals.



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

#showBoolean, ... (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_propertiesObject



726
727
728
729
730
# File 'quick_sight/cfn_theme.rb', line 726

def self.jsii_properties
  {
    :show => "show",
  }
end

Instance Method Details

#to_jsiiObject



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