interface CopyCommandProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KinesisFirehose.Mixins.CfnDeliveryStreamPropsMixin.CopyCommandProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskinesisfirehose/mixins#CfnDeliveryStreamPropsMixin_CopyCommandProperty |
Java | software.amazon.awscdk.mixins.preview.services.kinesisfirehose.mixins.CfnDeliveryStreamPropsMixin.CopyCommandProperty |
Python | aws_cdk.mixins_preview.aws_kinesisfirehose.mixins.CfnDeliveryStreamPropsMixin.CopyCommandProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kinesisfirehose » mixins » CfnDeliveryStreamPropsMixin » CopyCommandProperty |
The CopyCommand property type configures the Amazon Redshift COPY command that Amazon Kinesis Data Firehose (Kinesis Data Firehose) uses to load data into an Amazon Redshift cluster from an Amazon S3 bucket.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as kinesisfirehose_mixins } from '@aws-cdk/mixins-preview/aws-kinesisfirehose';
const copyCommandProperty: kinesisfirehose_mixins.CfnDeliveryStreamPropsMixin.CopyCommandProperty = {
copyOptions: 'copyOptions',
dataTableColumns: 'dataTableColumns',
dataTableName: 'dataTableName',
};
Properties
| Name | Type | Description |
|---|---|---|
| copy | string | Parameters to use with the Amazon Redshift COPY command. |
| data | string | A comma-separated list of column names. |
| data | string | The name of the target table. |
copyOptions?
Type:
string
(optional)
Parameters to use with the Amazon Redshift COPY command.
For examples, see the CopyOptions content for the CopyCommand data type in the Amazon Kinesis Data Firehose API Reference .
dataTableColumns?
Type:
string
(optional)
A comma-separated list of column names.
dataTableName?
Type:
string
(optional)
The name of the target table.
The table must already exist in the database.

.NET
Go
Java
Python
TypeScript