Class CfnTemplate.SectionPageBreakConfigurationProperty
The configuration of a page break for a section.
Inherited Members
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTemplate.SectionPageBreakConfigurationProperty : CfnTemplate.ISectionPageBreakConfigurationProperty
Syntax (vb)
Public Class CfnTemplate.SectionPageBreakConfigurationProperty Implements CfnTemplate.ISectionPageBreakConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.QuickSight;
var sectionPageBreakConfigurationProperty = new SectionPageBreakConfigurationProperty {
After = new SectionAfterPageBreakProperty {
Status = "status"
}
};
Synopsis
Constructors
SectionPageBreakConfigurationProperty() | The configuration of a page break for a section. |
Properties
After | The configuration of a page break after a section. |
Constructors
SectionPageBreakConfigurationProperty()
The configuration of a page break for a section.
public SectionPageBreakConfigurationProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.QuickSight;
var sectionPageBreakConfigurationProperty = new SectionPageBreakConfigurationProperty {
After = new SectionAfterPageBreakProperty {
Status = "status"
}
};
Properties
After
The configuration of a page break after a section.
public object? After { get; set; }