Class CfnFlow.SAPODataSourcePropertiesProperty
The properties that are applied when using SAPOData as a flow source.
Inheritance
System.Object
CfnFlow.SAPODataSourcePropertiesProperty
Implements
Namespace: Amazon.CDK.AWS.AppFlow
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class SAPODataSourcePropertiesProperty : Object, CfnFlow.ISAPODataSourcePropertiesProperty
Syntax (vb)
Public Class SAPODataSourcePropertiesProperty
Inherits Object
Implements CfnFlow.ISAPODataSourcePropertiesProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.AppFlow;
var sAPODataSourcePropertiesProperty = new SAPODataSourcePropertiesProperty {
ObjectPath = "objectPath",
// the properties below are optional
PaginationConfig = new SAPODataPaginationConfigProperty {
MaxPageSize = 123
},
ParallelismConfig = new SAPODataParallelismConfigProperty {
MaxParallelism = 123
}
};
Synopsis
Constructors
SAPODataSourcePropertiesProperty() |
Properties
ObjectPath | The object path specified in the SAPOData flow source. |
PaginationConfig | Sets the page size for each concurrent process that transfers OData records from your SAP instance. |
ParallelismConfig | Sets the number of concurrent processes that transfers OData records from your SAP instance. |
Constructors
SAPODataSourcePropertiesProperty()
public SAPODataSourcePropertiesProperty()
Properties
ObjectPath
The object path specified in the SAPOData flow source.
public string ObjectPath { get; set; }
Property Value
System.String
Remarks
PaginationConfig
Sets the page size for each concurrent process that transfers OData records from your SAP instance.
public object PaginationConfig { get; set; }
Property Value
System.Object
Remarks
ParallelismConfig
Sets the number of concurrent processes that transfers OData records from your SAP instance.
public object ParallelismConfig { get; set; }
Property Value
System.Object