Interface CfnFlow.SuccessResponseHandlingConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnFlow.SuccessResponseHandlingConfigProperty.Jsii$Proxy
Enclosing class:
CfnFlow

@Stability(Stable) public static interface CfnFlow.SuccessResponseHandlingConfigProperty extends software.amazon.jsii.JsiiSerializable
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 the destination connector upon a successful insert operation.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.appflow.*;
 SuccessResponseHandlingConfigProperty successResponseHandlingConfigProperty = SuccessResponseHandlingConfigProperty.builder()
         .bucketName("bucketName")
         .bucketPrefix("bucketPrefix")
         .build();