public static interface CfnDeliveryStream.CopyCommandProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnDeliveryStream.CopyCommandProperty.Builder
A builder for
CfnDeliveryStream.CopyCommandProperty |
static class |
CfnDeliveryStream.CopyCommandProperty.Jsii$Proxy
An implementation for
CfnDeliveryStream.CopyCommandProperty |
Modifier and Type | Method and Description |
---|---|
static CfnDeliveryStream.CopyCommandProperty.Builder |
builder() |
default java.lang.String |
getCopyOptions()
Parameters to use with the Amazon Redshift `COPY` command.
|
default java.lang.String |
getDataTableColumns()
A comma-separated list of column names.
|
java.lang.String |
getDataTableName()
The name of the target table.
|
java.lang.String getDataTableName()
The table must already exist in the database.
default java.lang.String getCopyOptions()
For examples, see the CopyOptions
content for the CopyCommand data type in the Amazon Kinesis Data Firehose API Reference .
default java.lang.String getDataTableColumns()
static CfnDeliveryStream.CopyCommandProperty.Builder builder()