Interface Column
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
Column.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-17T14:54:30.000Z")
@Stability(Deprecated)
@Deprecated
public interface Column
extends software.amazon.jsii.JsiiSerializable
Deprecated.
(deprecated) 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.alpha.*;
Type type;
Column column = Column.builder()
.name("name")
.type(type)
// the properties below are optional
.comment("comment")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classDeprecated.static final classDeprecated. -
Method Summary
Modifier and TypeMethodDescriptionstatic Column.Builderbuilder()Deprecated.default StringDeprecated.getName()Deprecated.getType()Deprecated.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
Deprecated.(deprecated) Name of the column. -
getType
Deprecated.(deprecated) Type of the column. -
getComment
Deprecated.(deprecated) Coment describing the column.Default: none
-
builder
Deprecated.- Returns:
- a
Column.BuilderofColumn
-