Class: AWSCDK::QuickSight::CfnDashboard::BodySectionRepeatPageBreakConfigurationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnDashboard::BodySectionRepeatPageBreakConfigurationProperty
- Defined in:
- quick_sight/cfn_dashboard.rb
Overview
The page break configuration to apply for each repeating instance.
Instance Attribute Summary collapse
- #after ⇒ AWSCDK::IResolvable, ... readonly
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(after: nil) ⇒ BodySectionRepeatPageBreakConfigurationProperty
constructor
A new instance of BodySectionRepeatPageBreakConfigurationProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(after: nil) ⇒ BodySectionRepeatPageBreakConfigurationProperty
Returns a new instance of BodySectionRepeatPageBreakConfigurationProperty.
2659 2660 2661 2662 |
# File 'quick_sight/cfn_dashboard.rb', line 2659 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
#after ⇒ AWSCDK::IResolvable, ... (readonly)
2666 2667 2668 |
# File 'quick_sight/cfn_dashboard.rb', line 2666 def after @after end |
Class Method Details
.jsii_properties ⇒ Object
2668 2669 2670 2671 2672 |
# File 'quick_sight/cfn_dashboard.rb', line 2668 def self.jsii_properties { :after => "after", } end |
Instance Method Details
#to_jsii ⇒ Object
2674 2675 2676 2677 2678 2679 2680 |
# File 'quick_sight/cfn_dashboard.rb', line 2674 def to_jsii result = {} result.merge!({ "after" => @after, }) result.compact end |