@Generated(value="jsii-pacmak/1.50.0 (build d1830a4)", date="2022-01-09T19:25:26.073Z") @Stability(value=Experimental) public interface Column extends software.amazon.jsii.JsiiSerializable
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() |
String |
getDataType()
(experimental) The data type of the column.
|
default Boolean |
getDistKey()
(experimental) Boolean value that indicates whether the column is to be configured as DISTKEY.
|
String |
getName()
(experimental) The name of the column.
|
default Boolean |
getSortKey()
(experimental) Boolean value that indicates whether the column is to be configured as SORTKEY.
|
@Stability(value=Experimental) @NotNull String getDataType()
@Stability(value=Experimental) @NotNull String getName()
@Stability(value=Experimental) @Nullable default Boolean getDistKey()
Default: - column is not DISTKEY
@Stability(value=Experimental) @Nullable default Boolean getSortKey()
Default: - column is not a SORTKEY
@Stability(value=Experimental) static Column.Builder builder()
Column.Builder of ColumnCopyright © 2022. All rights reserved.