interface PaginationConfigurationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.PaginationConfigurationProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.PaginationConfigurationProperty | 
|  Python | aws_cdk.aws_quicksight.CfnAnalysis.PaginationConfigurationProperty | 
|  TypeScript | @aws-cdk/aws-quicksight»CfnAnalysis»PaginationConfigurationProperty | 
The pagination configuration for a table visual or boxplot.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as quicksight from '@aws-cdk/aws-quicksight';
const paginationConfigurationProperty: quicksight.CfnAnalysis.PaginationConfigurationProperty = {
  pageNumber: 123,
  pageSize: 123,
};
Properties
| Name | Type | Description | 
|---|---|---|
| page | number | Indicates the page number. | 
| page | number | Indicates how many items render in one page. | 
pageNumber
Type:
number
Indicates the page number.
pageSize
Type:
number
Indicates how many items render in one page.
