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
Includes basic information for a data column such as its description, name, and type.
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.bcmdataexports.*;
ColumnProperty columnProperty = ColumnProperty.builder()
.description("description")
.name("name")
.type("type")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTable.ColumnPropertystatic final classAn implementation forCfnTable.ColumnProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
The description for a column.- See Also:
-
getName
The column name.- See Also:
-
getType
The kind of data a column stores.- See Also:
-
builder
- Returns:
- a
CfnTable.ColumnProperty.BuilderofCfnTable.ColumnProperty
-