aws-cdk-lib.aws_appflow.CfnFlow.RedshiftDestinationPropertiesProperty

interface RedshiftDestinationPropertiesProperty

LanguageType name
.NETAmazon.CDK.AWS.AppFlow.CfnFlow.RedshiftDestinationPropertiesProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsappflow#CfnFlow_RedshiftDestinationPropertiesProperty
Javasoftware.amazon.awscdk.services.appflow.CfnFlow.RedshiftDestinationPropertiesProperty
Pythonaws_cdk.aws_appflow.CfnFlow.RedshiftDestinationPropertiesProperty
TypeScript aws-cdk-lib » aws_appflow » CfnFlow » RedshiftDestinationPropertiesProperty

The properties that are applied when Amazon Redshift is being 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 { aws_appflow as appflow } from 'aws-cdk-lib';
const redshiftDestinationPropertiesProperty: appflow.CfnFlow.RedshiftDestinationPropertiesProperty = {
  intermediateBucketName: 'intermediateBucketName',
  object: 'object',

  // the properties below are optional
  bucketPrefix: 'bucketPrefix',
  errorHandlingConfig: {
    bucketName: 'bucketName',
    bucketPrefix: 'bucketPrefix',
    failOnFirstError: false,
  },
};

Properties

NameTypeDescription
intermediateBucketNamestringThe intermediate bucket that Amazon AppFlow uses when moving data into Amazon Redshift.
objectstringThe object specified in the Amazon Redshift flow destination.
bucketPrefix?stringThe object key for the bucket in which Amazon AppFlow places the destination files.
errorHandlingConfig?IResolvable | ErrorHandlingConfigPropertyThe settings that determine how Amazon AppFlow handles an error when placing data in the Amazon Redshift destination.

intermediateBucketName

Type: string

The intermediate bucket that Amazon AppFlow uses when moving data into Amazon Redshift.


object

Type: string

The object specified in the Amazon Redshift flow destination.


bucketPrefix?

Type: string (optional)

The object key for the bucket in which Amazon AppFlow places the destination files.


errorHandlingConfig?

Type: IResolvable | ErrorHandlingConfigProperty (optional)

The settings that determine how Amazon AppFlow handles an error when placing data in the Amazon Redshift 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. ErrorHandlingConfig is a part of the destination connector details.