@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)", date="2023-05-19T23:09:29.517Z") @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 Column
Copyright © 2023. All rights reserved.