@Stability(value=Stable)
public static interface CfnDatastore.SchemaDefinitionProperty
extends software.amazon.jsii.JsiiSerializable
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.iotanalytics.*;
SchemaDefinitionProperty schemaDefinitionProperty = SchemaDefinitionProperty.builder()
.columns(List.of(ColumnProperty.builder()
.name("name")
.type("type")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDatastore.SchemaDefinitionProperty.Builder
A builder for
CfnDatastore.SchemaDefinitionProperty |
static class |
CfnDatastore.SchemaDefinitionProperty.Jsii$Proxy
An implementation for
CfnDatastore.SchemaDefinitionProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDatastore.SchemaDefinitionProperty.Builder |
builder() |
default Object |
getColumns()
Specifies one or more columns that store your data.
|
@Stability(value=Stable) @Nullable default Object getColumns()
Each schema can have up to 100 columns. Each column can have up to 100 nested types.
@Stability(value=Stable) static CfnDatastore.SchemaDefinitionProperty.Builder builder()
Copyright © 2022. All rights reserved.