Interface CfnDeliveryStreamPropsMixin.CopyCommandProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDeliveryStreamPropsMixin.CopyCommandProperty.Jsii$Proxy
- Enclosing class:
CfnDeliveryStreamPropsMixin
@Stability(Stable)
public static interface CfnDeliveryStreamPropsMixin.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.cfnpropertymixins.services.kinesisfirehose.*;
CopyCommandProperty copyCommandProperty = CopyCommandProperty.builder()
.copyOptions("copyOptions")
.dataTableColumns("dataTableColumns")
.dataTableName("dataTableName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDeliveryStreamPropsMixin.CopyCommandPropertystatic final classAn implementation forCfnDeliveryStreamPropsMixin.CopyCommandProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCopyOptions
Parameters to use with the Amazon RedshiftCOPYcommand.For examples, see the
CopyOptionscontent for the CopyCommand data type in the Amazon Kinesis Data Firehose API Reference .- See Also:
-
getDataTableColumns
A comma-separated list of column names.- See Also:
-
getDataTableName
The name of the target table.The table must already exist in the database.
- See Also:
-
builder
-