interface SAPODataSourcePropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppFlow.CfnFlowPropsMixin.SAPODataSourcePropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappflow#CfnFlowPropsMixin_SAPODataSourcePropertiesProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.appflow.CfnFlowPropsMixin.SAPODataSourcePropertiesProperty |
Python | aws_cdk.cfn_property_mixins.aws_appflow.CfnFlowPropsMixin.SAPODataSourcePropertiesProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appflow » 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 { aws_appflow as appflow } from '@aws-cdk/cfn-property-mixins';
const sAPODataSourcePropertiesProperty: appflow.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