Show / Hide Table of Contents

Class CfnFlow.SuccessResponseHandlingConfigProperty

Determines how Amazon AppFlow handles the success response that it gets from the connector after placing data.

Inheritance
object
CfnFlow.SuccessResponseHandlingConfigProperty
Implements
CfnFlow.ISuccessResponseHandlingConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-flow-successresponsehandlingconfig.html

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-flow-successresponsehandlingconfig.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-flow-successresponsehandlingconfig.html#cfn-appflow-flow-successresponsehandlingconfig-bucketname

BucketPrefix

The Amazon S3 bucket prefix.

public string? BucketPrefix { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-flow-successresponsehandlingconfig.html#cfn-appflow-flow-successresponsehandlingconfig-bucketprefix

Implements

CfnFlow.ISuccessResponseHandlingConfigProperty
Back to top Generated by DocFX