Interface Column
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
Column.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:42.532Z")
@Stability(Experimental)
public interface Column
extends software.amazon.jsii.JsiiSerializable
(experimental) A column of a table.
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();
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic Column.Builder
builder()
default String
(experimental) Coment describing the column.getName()
(experimental) Name of the column.getType()
(experimental) Type of the column.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
(experimental) Name of the column. -
getType
(experimental) Type of the column. -
getComment
(experimental) Coment describing the column.Default: none
-
builder
- Returns:
- a
Column.Builder
ofColumn
-