Class: AWSCDK::QuickSight::CfnTemplate::SectionPageBreakConfigurationProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
quick_sight/cfn_template.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:



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

#afterAWSCDK::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_propertiesObject



23861
23862
23863
23864
23865
# File 'quick_sight/cfn_template.rb', line 23861

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

Instance Method Details

#to_jsiiObject



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