Show / Hide Table of Contents

Class CfnFlow.SAPODataSourcePropertiesProperty

The properties that are applied when using SAPOData as a flow source.

Inheritance
object
CfnFlow.SAPODataSourcePropertiesProperty
Implements
CfnFlow.ISAPODataSourcePropertiesProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.AppFlow
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnFlow.SAPODataSourcePropertiesProperty : CfnFlow.ISAPODataSourcePropertiesProperty
Syntax (vb)
Public Class CfnFlow.SAPODataSourcePropertiesProperty Implements CfnFlow.ISAPODataSourcePropertiesProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-flow-sapodatasourceproperties.html

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()

The properties that are applied when using SAPOData as a flow source.

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()

The properties that are applied when using SAPOData as a flow source.

public SAPODataSourcePropertiesProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-flow-sapodatasourceproperties.html

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
                 }
             };

Properties

ObjectPath

The object path specified in the SAPOData flow source.

public string ObjectPath { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-flow-sapodatasourceproperties.html#cfn-appflow-flow-sapodatasourceproperties-objectpath

PaginationConfig

Sets the page size for each concurrent process that transfers OData records from your SAP instance.

public object? PaginationConfig { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-flow-sapodatasourceproperties.html#cfn-appflow-flow-sapodatasourceproperties-paginationconfig

ParallelismConfig

Sets the number of concurrent processes that transfers OData records from your SAP instance.

public object? ParallelismConfig { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-flow-sapodatasourceproperties.html#cfn-appflow-flow-sapodatasourceproperties-parallelismconfig

Implements

CfnFlow.ISAPODataSourcePropertiesProperty
Back to top Generated by DocFX