interface TablePaginatedReportOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.TablePaginatedReportOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnAnalysis_TablePaginatedReportOptionsProperty |
Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.TablePaginatedReportOptionsProperty |
Python | aws_cdk.aws_quicksight.CfnAnalysis.TablePaginatedReportOptionsProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnAnalysis » TablePaginatedReportOptionsProperty |
The paginated report options for a table visual.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_quicksight as quicksight } from 'aws-cdk-lib';
const tablePaginatedReportOptionsProperty: quicksight.CfnAnalysis.TablePaginatedReportOptionsProperty = {
overflowColumnHeaderVisibility: 'overflowColumnHeaderVisibility',
verticalOverflowVisibility: 'verticalOverflowVisibility',
};
Properties
| Name | Type | Description |
|---|---|---|
| overflow | string | The visibility of repeating header rows on each page. |
| vertical | string | The visibility of printing table overflow across pages. |
overflowColumnHeaderVisibility?
Type:
string
(optional)
The visibility of repeating header rows on each page.
verticalOverflowVisibility?
Type:
string
(optional)
The visibility of printing table overflow across pages.

.NET
Go
Java
Python
TypeScript