Class: AWSCDK::QuickSight::CfnTheme::GutterStyleProperty

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

Overview

The display options for gutter spacing between tiles on a sheet.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(show: nil) ⇒ GutterStyleProperty

Returns a new instance of GutterStyleProperty.

Parameters:

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

    This Boolean value controls whether to display a gutter space between sheet tiles.



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

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



847
848
849
850
851
# File 'quick_sight/cfn_theme.rb', line 847

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

Instance Method Details

#to_jsiiObject



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