aws-cdk-lib.aws_appflow.CfnFlow.SAPODataDestinationPropertiesProperty

interface SAPODataDestinationPropertiesProperty

LanguageType name
.NETAmazon.CDK.AWS.AppFlow.CfnFlow.SAPODataDestinationPropertiesProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsappflow#CfnFlow_SAPODataDestinationPropertiesProperty
Javasoftware.amazon.awscdk.services.appflow.CfnFlow.SAPODataDestinationPropertiesProperty
Pythonaws_cdk.aws_appflow.CfnFlow.SAPODataDestinationPropertiesProperty
TypeScript aws-cdk-lib » aws_appflow » CfnFlow » SAPODataDestinationPropertiesProperty

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

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-lib';
const sAPODataDestinationPropertiesProperty: appflow.CfnFlow.SAPODataDestinationPropertiesProperty = {
  objectPath: 'objectPath',

  // the properties below are optional
  errorHandlingConfig: {
    bucketName: 'bucketName',
    bucketPrefix: 'bucketPrefix',
    failOnFirstError: false,
  },
  idFieldNames: ['idFieldNames'],
  successResponseHandlingConfig: {
    bucketName: 'bucketName',
    bucketPrefix: 'bucketPrefix',
  },
  writeOperationType: 'writeOperationType',
};

Properties

NameTypeDescription
objectPathstringThe object path specified in the SAPOData flow destination.
errorHandlingConfig?IResolvable | ErrorHandlingConfigPropertyThe settings that determine how Amazon AppFlow handles an error when placing data in the destination.
idFieldNames?string[]A list of field names that can be used as an ID field when performing a write operation.
successResponseHandlingConfig?IResolvable | SuccessResponseHandlingConfigPropertyDetermines how Amazon AppFlow handles the success response that it gets from the connector after placing data.
writeOperationType?stringThe possible write operations in the destination connector.

objectPath

Type: string

The object path specified in the SAPOData flow destination.


errorHandlingConfig?

Type: IResolvable | ErrorHandlingConfigProperty (optional)

The settings that determine how Amazon AppFlow handles an error when placing data in the destination.

For example, this setting would determine if the flow should fail after one insertion error, or continue and attempt to insert every record regardless of the initial failure. ErrorHandlingConfig is a part of the destination connector details.


idFieldNames?

Type: string[] (optional)

A list of field names that can be used as an ID field when performing a write operation.


successResponseHandlingConfig?

Type: IResolvable | SuccessResponseHandlingConfigProperty (optional)

Determines how Amazon AppFlow handles the success response that it gets from the connector after placing data.

For example, this setting would determine where to write the response from a destination connector upon a successful insert operation.


writeOperationType?

Type: string (optional)

The possible write operations in the destination connector.

When this value is not provided, this defaults to the INSERT operation.