Interface CfnDatastore.SchemaDefinitionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDatastore.SchemaDefinitionProperty.Jsii$Proxy
- Enclosing class:
- CfnDatastore
@Stability(Stable)
public static interface CfnDatastore.SchemaDefinitionProperty
extends software.amazon.jsii.JsiiSerializable
Information needed to define a schema.
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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDatastore.SchemaDefinitionProperty
static final class
An implementation forCfnDatastore.SchemaDefinitionProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getColumns
Specifies one or more columns that store your data.Each schema can have up to 100 columns. Each column can have up to 100 nested types.
-
builder
-