interface SuccessResponseHandlingConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppFlow.CfnFlow.SuccessResponseHandlingConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappflow#CfnFlow_SuccessResponseHandlingConfigProperty |
Java | software.amazon.awscdk.services.appflow.CfnFlow.SuccessResponseHandlingConfigProperty |
Python | aws_cdk.aws_appflow.CfnFlow.SuccessResponseHandlingConfigProperty |
TypeScript | aws-cdk-lib » aws_appflow » CfnFlow » SuccessResponseHandlingConfigProperty |
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 { aws_appflow as appflow } from 'aws-cdk-lib';
const successResponseHandlingConfigProperty: appflow.CfnFlow.SuccessResponseHandlingConfigProperty = {
bucketName: 'bucketName',
bucketPrefix: 'bucketPrefix',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket | string | The name of the Amazon S3 bucket. |
| bucket | string | The Amazon S3 bucket prefix. |
bucketName?
Type:
string
(optional)
The name of the Amazon S3 bucket.
bucketPrefix?
Type:
string
(optional)
The Amazon S3 bucket prefix.

.NET
Go
Java
Python
TypeScript