Class: AWSCDK::QuickSight::CfnTemplate::SectionPageBreakConfigurationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnTemplate::SectionPageBreakConfigurationProperty
- Defined in:
- quick_sight/cfn_template.rb
Overview
The configuration of a page break for a section.
Instance Attribute Summary collapse
-
#after ⇒ AWSCDK::IResolvable, ...
readonly
The configuration of a page break after a section.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(after: nil) ⇒ SectionPageBreakConfigurationProperty
constructor
A new instance of SectionPageBreakConfigurationProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(after: nil) ⇒ SectionPageBreakConfigurationProperty
Returns a new instance of SectionPageBreakConfigurationProperty.
23850 23851 23852 23853 |
# File 'quick_sight/cfn_template.rb', line 23850 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)
The configuration of a page break after a section.
23859 23860 23861 |
# File 'quick_sight/cfn_template.rb', line 23859 def after @after end |
Class Method Details
.jsii_properties ⇒ Object
23861 23862 23863 23864 23865 |
# File 'quick_sight/cfn_template.rb', line 23861 def self.jsii_properties { :after => "after", } end |
Instance Method Details
#to_jsii ⇒ Object
23867 23868 23869 23870 23871 23872 23873 |
# File 'quick_sight/cfn_template.rb', line 23867 def to_jsii result = {} result.merge!({ "after" => @after, }) result.compact end |