Class: AWSCDK::QuickSight::CfnTheme::MarginStyleProperty

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

Overview

The display options for margins around the outside edge of sheets.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(show: nil) ⇒ MarginStyleProperty

Returns a new instance of MarginStyleProperty.

Parameters:

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

    This Boolean value controls whether to display sheet margins.



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

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



880
881
882
883
884
# File 'quick_sight/cfn_theme.rb', line 880

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

Instance Method Details

#to_jsiiObject



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