interface SAPODataSourcePropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppFlow.Mixins.CfnFlowPropsMixin.SAPODataSourcePropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappflow/mixins#CfnFlowPropsMixin_SAPODataSourcePropertiesProperty |
Java | software.amazon.awscdk.mixins.preview.services.appflow.mixins.CfnFlowPropsMixin.SAPODataSourcePropertiesProperty |
Python | aws_cdk.mixins_preview.aws_appflow.mixins.CfnFlowPropsMixin.SAPODataSourcePropertiesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appflow » mixins » CfnFlowPropsMixin » SAPODataSourcePropertiesProperty |
The properties that are applied when using SAPOData as a flow source.
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 sAPODataSourcePropertiesProperty: appflow_mixins.CfnFlowPropsMixin.SAPODataSourcePropertiesProperty = {
objectPath: 'objectPath',
paginationConfig: {
maxPageSize: 123,
},
parallelismConfig: {
maxParallelism: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| object | string | The object path specified in the SAPOData flow source. |
| pagination | IResolvable | SAPOData | Sets the page size for each concurrent process that transfers OData records from your SAP instance. |
| parallelism | IResolvable | SAPOData | Sets the number of concurrent processes that transfers OData records from your SAP instance. |
objectPath?
Type:
string
(optional)
The object path specified in the SAPOData flow source.
paginationConfig?
Type:
IResolvable | SAPOData
(optional)
Sets the page size for each concurrent process that transfers OData records from your SAP instance.
parallelismConfig?
Type:
IResolvable | SAPOData
(optional)
Sets the number of concurrent processes that transfers OData records from your SAP instance.

.NET
Go
Java
Python
TypeScript