@Generated(value="jsii-pacmak/1.50.0 (build d1830a4)", date="2022-01-04T15:39:09.604Z") @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.glue.*;
Column column = Column.builder()
.name("name")
.type(Type.builder()
.inputString("inputString")
.isPrimitive(false)
.build())
// the properties below are optional
.comment("comment")
.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() |
default String |
getComment()
(experimental) Coment describing the column.
|
String |
getName()
(experimental) Name of the column.
|
Type |
getType()
(experimental) Type of the column.
|
@Stability(value=Experimental) @NotNull String getName()
@Stability(value=Experimental) @NotNull Type getType()
@Stability(value=Experimental) @Nullable default String getComment()
Default: none
@Stability(value=Experimental) static Column.Builder builder()
Column.Builder of ColumnCopyright © 2022. All rights reserved.