@Generated(value="jsii-pacmak/1.73.0 (build 6faeda3)",
date="2023-01-31T18:36:56.331Z")
public interface Column
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.redshift.*; Column column = Column.builder() .dataType("dataType") .name("name") // the properties below are optional .distKey(false) .sortKey(false) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
Column.Builder
A builder for
Column |
static class |
Column.Jsii$Proxy
An implementation for
Column |
Modifier and Type | Method and Description |
---|---|
static Column.Builder |
builder() |
java.lang.String |
getDataType()
(experimental) The data type of the column.
|
default java.lang.Boolean |
getDistKey()
(experimental) Boolean value that indicates whether the column is to be configured as DISTKEY.
|
java.lang.String |
getName()
(experimental) The name of the column.
|
default java.lang.Boolean |
getSortKey()
(experimental) Boolean value that indicates whether the column is to be configured as SORTKEY.
|
java.lang.String getDataType()
java.lang.String getName()
default java.lang.Boolean getDistKey()
Default: - column is not DISTKEY
default java.lang.Boolean getSortKey()
Default: - column is not a SORTKEY
static Column.Builder builder()
Column.Builder
of Column