Interface CfnFlowPropsMixin.ZendeskDestinationPropertiesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFlowPropsMixin.ZendeskDestinationPropertiesProperty.Jsii$Proxy
- Enclosing class:
CfnFlowPropsMixin
@Stability(Stable)
public static interface CfnFlowPropsMixin.ZendeskDestinationPropertiesProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.appflow.*;
ZendeskDestinationPropertiesProperty zendeskDestinationPropertiesProperty = ZendeskDestinationPropertiesProperty.builder()
.errorHandlingConfig(ErrorHandlingConfigProperty.builder()
.bucketName("bucketName")
.bucketPrefix("bucketPrefix")
.failOnFirstError(false)
.build())
.idFieldNames(List.of("idFieldNames"))
.object("object")
.writeOperationType("writeOperationType")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFlowPropsMixin.ZendeskDestinationPropertiesPropertystatic final classAn implementation forCfnFlowPropsMixin.ZendeskDestinationPropertiesProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe settings that determine how Amazon AppFlow handles an error when placing data in the destination.A list of field names that can be used as an ID field when performing a write operation.default StringThe object specified in the Zendesk flow destination.default StringThe possible write operations in the destination connector.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getErrorHandlingConfig
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.
ErrorHandlingConfigis a part of the destination connector details.Returns union: either
IResolvableorCfnFlowPropsMixin.ErrorHandlingConfigProperty- See Also:
-
getIdFieldNames
A list of field names that can be used as an ID field when performing a write operation.- See Also:
-
getObject
The object specified in the Zendesk flow destination.- See Also:
-
getWriteOperationType
The possible write operations in the destination connector.When this value is not provided, this defaults to the
INSERToperation.- See Also:
-
builder
-