package awsappflow // 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 "github.com/aws/aws-cdk-go/awscdk" // // zendeskDestinationPropertiesProperty := &ZendeskDestinationPropertiesProperty{ // Object: jsii.String("object"), // // // the properties below are optional // ErrorHandlingConfig: &ErrorHandlingConfigProperty{ // BucketName: jsii.String("bucketName"), // BucketPrefix: jsii.String("bucketPrefix"), // FailOnFirstError: jsii.Boolean(false), // }, // IdFieldNames: []*string{ // jsii.String("idFieldNames"), // }, // WriteOperationType: jsii.String("writeOperationType"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-flow-zendeskdestinationproperties.html // type CfnFlow_ZendeskDestinationPropertiesProperty struct { // The object specified in the Zendesk flow destination. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-flow-zendeskdestinationproperties.html#cfn-appflow-flow-zendeskdestinationproperties-object // Object *string `field:"required" json:"object" yaml:"object"` // 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. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-flow-zendeskdestinationproperties.html#cfn-appflow-flow-zendeskdestinationproperties-errorhandlingconfig // ErrorHandlingConfig interface{} `field:"optional" json:"errorHandlingConfig" yaml:"errorHandlingConfig"` // A list of field names that can be used as an ID field when performing a write operation. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-flow-zendeskdestinationproperties.html#cfn-appflow-flow-zendeskdestinationproperties-idfieldnames // IdFieldNames *[]*string `field:"optional" json:"idFieldNames" yaml:"idFieldNames"` // The possible write operations in the destination connector. // // When this value is not provided, this defaults to the `INSERT` operation. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-flow-zendeskdestinationproperties.html#cfn-appflow-flow-zendeskdestinationproperties-writeoperationtype // WriteOperationType *string `field:"optional" json:"writeOperationType" yaml:"writeOperationType"` }