Class: AWSCDK::QuickSight::CfnTemplate::BodySectionRepeatPageBreakConfigurationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnTemplate::BodySectionRepeatPageBreakConfigurationProperty
- Defined in:
- quick_sight/cfn_template.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.
2515 2516 2517 2518 |
# File 'quick_sight/cfn_template.rb', line 2515 def initialize(after: nil) @after = after.is_a?(Hash) ? ::AWSCDK::QuickSight::CfnTemplate::SectionAfterPageBreakProperty.new(**after.transform_keys(&:to_sym)) : after Jsii::Type.check_type(@after, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19xdWlja3NpZ2h0LkNmblRlbXBsYXRlLlNlY3Rpb25BZnRlclBhZ2VCcmVha1Byb3BlcnR5In1dfX0=")), "after") unless @after.nil? end |
Instance Attribute Details
#after ⇒ AWSCDK::IResolvable, ... (readonly)
2522 2523 2524 |
# File 'quick_sight/cfn_template.rb', line 2522 def after @after end |
Class Method Details
.jsii_properties ⇒ Object
2524 2525 2526 2527 2528 |
# File 'quick_sight/cfn_template.rb', line 2524 def self.jsii_properties { :after => "after", } end |
Instance Method Details
#to_jsii ⇒ Object
2530 2531 2532 2533 2534 2535 2536 |
# File 'quick_sight/cfn_template.rb', line 2530 def to_jsii result = {} result.merge!({ "after" => @after, }) result.compact end |