interface SAPODataParallelismConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppFlow.Mixins.CfnFlowPropsMixin.SAPODataParallelismConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappflow/mixins#CfnFlowPropsMixin_SAPODataParallelismConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.appflow.mixins.CfnFlowPropsMixin.SAPODataParallelismConfigProperty |
Python | aws_cdk.mixins_preview.aws_appflow.mixins.CfnFlowPropsMixin.SAPODataParallelismConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appflow » mixins » CfnFlowPropsMixin » SAPODataParallelismConfigProperty |
Sets the number of concurrent processes that transfer 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 sAPODataParallelismConfigProperty: appflow_mixins.CfnFlowPropsMixin.SAPODataParallelismConfigProperty = {
maxParallelism: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| max | number | The maximum number of processes that Amazon AppFlow runs at the same time when it retrieves your data from your SAP application. |
maxParallelism?
Type:
number
(optional)
The maximum number of processes that Amazon AppFlow runs at the same time when it retrieves your data from your SAP application.

.NET
Go
Java
Python
TypeScript