Interface CfnTable.SchemaProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTable.SchemaProperty.Jsii$Proxy
Enclosing class:
CfnTable

@Stability(Stable) public static interface CfnTable.SchemaProperty extends software.amazon.jsii.JsiiSerializable
A Schema specifies the expected data model of the table.

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.timestream.*;
 SchemaProperty schemaProperty = SchemaProperty.builder()
         .compositePartitionKey(List.of(PartitionKeyProperty.builder()
                 .type("type")
                 // the properties below are optional
                 .enforcementInRecord("enforcementInRecord")
                 .name("name")
                 .build()))
         .build();
 

See Also: