@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-07T23:47:07.748Z") @Stability(value=Experimental) public interface Type extends software.amazon.jsii.JsiiSerializable
Example:
Database myDatabase;
Table.Builder.create(this, "MyTable")
.database(myDatabase)
.tableName("my_table")
.columns(List.of(Column.builder()
.name("col1")
.type(Schema.STRING)
.build()))
.partitionKeys(List.of(Column.builder()
.name("year")
.type(Schema.SMALL_INT)
.build(), Column.builder()
.name("month")
.type(Schema.SMALL_INT)
.build()))
.dataFormat(DataFormat.JSON)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
Type.Builder
A builder for
Type |
static class |
Type.Jsii$Proxy
An implementation for
Type |
| Modifier and Type | Method and Description |
|---|---|
static Type.Builder |
builder() |
String |
getInputString()
(experimental) Glue InputString for this type.
|
Boolean |
getIsPrimitive()
(experimental) Indicates whether this type is a primitive data type.
|
@Stability(value=Experimental) @NotNull String getInputString()
@Stability(value=Experimental) @NotNull Boolean getIsPrimitive()
@Stability(value=Experimental) static Type.Builder builder()
Type.Builder of TypeCopyright © 2022. All rights reserved.