interface PaginationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnTemplatePropsMixin.PaginationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnTemplatePropsMixin_PaginationConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnTemplatePropsMixin.PaginationConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnTemplatePropsMixin.PaginationConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnTemplatePropsMixin » 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 { aws_quicksight as quicksight } from '@aws-cdk/cfn-property-mixins';
const paginationConfigurationProperty: quicksight.CfnTemplatePropsMixin.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
(optional)
Indicates the page number.
pageSize?
Type:
number
(optional)
Indicates how many items render in one page.

.NET
Go
Java
Python
TypeScript