Class: AWSCDK::QuickSight::CfnTemplate::BodySectionRepeatPageBreakConfigurationProperty

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

Overview

The page break configuration to apply for each repeating instance.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

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

Class Method Details

.jsii_propertiesObject



2524
2525
2526
2527
2528
# File 'quick_sight/cfn_template.rb', line 2524

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

Instance Method Details

#to_jsiiObject



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