Class: AWSCDK::QuickSight::CfnDashboard::SectionPageBreakConfigurationProperty

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

Overview

The configuration of a page break for a section.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(after: nil) ⇒ SectionPageBreakConfigurationProperty

Returns a new instance of SectionPageBreakConfigurationProperty.

Parameters:



26696
26697
26698
26699
# File 'quick_sight/cfn_dashboard.rb', line 26696

def initialize(after: nil)
  @after = after.is_a?(Hash) ? ::AWSCDK::QuickSight::CfnDashboard::SectionAfterPageBreakProperty.new(**after.transform_keys(&:to_sym)) : after
  Jsii::Type.check_type(@after, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19xdWlja3NpZ2h0LkNmbkRhc2hib2FyZC5TZWN0aW9uQWZ0ZXJQYWdlQnJlYWtQcm9wZXJ0eSJ9XX19")), "after") unless @after.nil?
end

Instance Attribute Details

#afterAWSCDK::IResolvable, ... (readonly)

The configuration of a page break after a section.



26705
26706
26707
# File 'quick_sight/cfn_dashboard.rb', line 26705

def after
  @after
end

Class Method Details

.jsii_propertiesObject



26707
26708
26709
26710
26711
# File 'quick_sight/cfn_dashboard.rb', line 26707

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

Instance Method Details

#to_jsiiObject



26713
26714
26715
26716
26717
26718
26719
# File 'quick_sight/cfn_dashboard.rb', line 26713

def to_jsii
  result = {}
  result.merge!({
    "after" => @after,
  })
  result.compact
end