Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

RedshiftDestinationConfiguration

import type { RedshiftDestinationConfiguration } from "https://aws-api.deno.dev/v0.4/services/firehose.ts?docs=full";

Describes the configuration of a destination in Amazon Redshift.

interface RedshiftDestinationConfiguration {
CloudWatchLoggingOptions?: CloudWatchLoggingOptions | null;
ClusterJDBCURL: string;
CopyCommand: CopyCommand;
Password: string;
ProcessingConfiguration?: ProcessingConfiguration | null;
RetryOptions?: RedshiftRetryOptions | null;
RoleARN: string;
S3BackupConfiguration?: S3DestinationConfiguration | null;
S3BackupMode?: RedshiftS3BackupMode | null;
S3Configuration: S3DestinationConfiguration;
Username: string;
}

§Properties

§
CloudWatchLoggingOptions?: CloudWatchLoggingOptions | null
[src]

The CloudWatch logging options for your delivery stream.

§
ClusterJDBCURL: string
[src]

The database connection string.

§
CopyCommand: CopyCommand
[src]

The COPY command.

§
Password: string
[src]

The user password.

§
ProcessingConfiguration?: ProcessingConfiguration | null
[src]

The data processing configuration.

§
RetryOptions?: RedshiftRetryOptions | null
[src]

The retry behavior in case Kinesis Data Firehose is unable to deliver documents to Amazon Redshift. Default value is 3600 (60 minutes).

§
RoleARN: string
[src]

The Amazon Resource Name (ARN) of the Amazon Web Services credentials. For more information, see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces.

§
S3BackupConfiguration?: S3DestinationConfiguration | null
[src]

The configuration for backup in Amazon S3.

§
S3BackupMode?: RedshiftS3BackupMode | null
[src]

The Amazon S3 backup mode. After you create a delivery stream, you can update it to enable Amazon S3 backup if it is disabled. If backup is enabled, you can't update the delivery stream to disable it.

§

The configuration for the intermediate Amazon S3 location from which Amazon Redshift obtains data. Restrictions are described in the topic for "CreateDeliveryStream".

The compression formats SNAPPY or ZIP cannot be specified in RedshiftDestinationConfiguration.S3Configuration because the Amazon Redshift COPY operation that reads from the S3 bucket doesn't support these compression formats.

§
Username: string
[src]

The name of the user.