interface SAPODataPaginationConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppFlow.Mixins.CfnFlowPropsMixin.SAPODataPaginationConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappflow/mixins#CfnFlowPropsMixin_SAPODataPaginationConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.appflow.mixins.CfnFlowPropsMixin.SAPODataPaginationConfigProperty |
Python | aws_cdk.mixins_preview.aws_appflow.mixins.CfnFlowPropsMixin.SAPODataPaginationConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appflow » mixins » CfnFlowPropsMixin » SAPODataPaginationConfigProperty |
Sets the page size for each concurrent process that transfers OData records from your SAP instance.
A concurrent process is query that retrieves a batch of records as part of a flow run. Amazon AppFlow can run multiple concurrent processes in parallel to transfer data faster.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as appflow_mixins } from '@aws-cdk/mixins-preview/aws-appflow';
const sAPODataPaginationConfigProperty: appflow_mixins.CfnFlowPropsMixin.SAPODataPaginationConfigProperty = {
maxPageSize: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| max | number | The maximum number of records that Amazon AppFlow receives in each page of the response from your SAP application. |
maxPageSize?
Type:
number
(optional)
The maximum number of records that Amazon AppFlow receives in each page of the response from your SAP application.
For transfers of OData records, the maximum page size is 3,000. For transfers of data that comes from an ODP provider, the maximum page size is 10,000.

.NET
Go
Java
Python
TypeScript