aws-cdk-lib.aws_appflow.CfnFlow.ZendeskDestinationPropertiesProperty

interface ZendeskDestinationPropertiesProperty

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

The properties that are applied when Zendesk is used as a 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 zendeskDestinationPropertiesProperty: appflow.CfnFlow.ZendeskDestinationPropertiesProperty = {
  object: 'object',

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

Properties

NameTypeDescription
objectstringThe object specified in the Zendesk 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.
writeOperationType?stringThe possible write operations in the destination connector.

object

Type: string

The object specified in the Zendesk 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.


writeOperationType?

Type: string (optional)

The possible write operations in the destination connector.

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