@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)",
date="2023-03-22T19:35:45.696Z")
public interface Type
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() |
java.lang.String |
getInputString()
(experimental) Glue InputString for this type.
|
java.lang.Boolean |
getIsPrimitive()
(experimental) Indicates whether this type is a primitive data type.
|
java.lang.String getInputString()
java.lang.Boolean getIsPrimitive()
static Type.Builder builder()
Type.Builder
of Type