Interface CfnTable.ColumnProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTable.ColumnProperty.Jsii$Proxy
- Enclosing class:
CfnTable
@Stability(Stable)
public static interface CfnTable.ColumnProperty
extends software.amazon.jsii.JsiiSerializable
A column in 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.*; ColumnProperty columnProperty = ColumnProperty.builder() .name("name") // the properties below are optional .comment("comment") .type("type") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTable.ColumnProperty
static final class
An implementation forCfnTable.ColumnProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of theColumn
.- See Also:
-
getComment
A free-form text comment.- See Also:
-
getType
The data type of theColumn
.- See Also:
-
builder
- Returns:
- a
CfnTable.ColumnProperty.Builder
ofCfnTable.ColumnProperty
-