Interface CfnDeliveryStream.CopyCommandProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDeliveryStream.CopyCommandProperty.Jsii$Proxy
Enclosing class:
CfnDeliveryStream

@Stability(Stable) public static interface CfnDeliveryStream.CopyCommandProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.kinesisfirehose.*;
 CopyCommandProperty copyCommandProperty = CopyCommandProperty.builder()
         .dataTableName("dataTableName")
         // the properties below are optional
         .copyOptions("copyOptions")
         .dataTableColumns("dataTableColumns")
         .build();
 

See Also: