Class CfnFlow.SuccessResponseHandlingConfigProperty
Determines how Amazon AppFlow handles the success response that it gets from the connector after placing data.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.AppFlow
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnFlow.SuccessResponseHandlingConfigProperty : CfnFlow.ISuccessResponseHandlingConfigProperty
Syntax (vb)
Public Class CfnFlow.SuccessResponseHandlingConfigProperty Implements CfnFlow.ISuccessResponseHandlingConfigProperty
Remarks
For example, this setting would determine where to write the response from the destination connector upon a successful insert operation.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.AppFlow;
var successResponseHandlingConfigProperty = new SuccessResponseHandlingConfigProperty {
BucketName = "bucketName",
BucketPrefix = "bucketPrefix"
};
Synopsis
Constructors
SuccessResponseHandlingConfigProperty() | Determines how Amazon AppFlow handles the success response that it gets from the connector after placing data. |
Properties
BucketName | The name of the Amazon S3 bucket. |
BucketPrefix | The Amazon S3 bucket prefix. |
Constructors
SuccessResponseHandlingConfigProperty()
Determines how Amazon AppFlow handles the success response that it gets from the connector after placing data.
public SuccessResponseHandlingConfigProperty()
Remarks
For example, this setting would determine where to write the response from the destination connector upon a successful insert operation.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.AppFlow;
var successResponseHandlingConfigProperty = new SuccessResponseHandlingConfigProperty {
BucketName = "bucketName",
BucketPrefix = "bucketPrefix"
};
Properties
BucketName
The name of the Amazon S3 bucket.
public string? BucketName { get; set; }
Property Value
Remarks
BucketPrefix
The Amazon S3 bucket prefix.
public string? BucketPrefix { get; set; }