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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDeliveryStream.CopyCommandProperty
static final class
An implementation forCfnDeliveryStream.CopyCommandProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDataTableName
The name of the target table.The table must already exist in the database.
- See Also:
-
getCopyOptions
Parameters to use with the Amazon RedshiftCOPY
command.For examples, see the
CopyOptions
content 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:
-
builder
-