Interface SchemaOptions

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Subinterfaces:
GlobalSecondaryIndexProps, GlobalTableProps, TableOptions, TableProps
All Known Implementing Classes:
GlobalSecondaryIndexProps.Jsii$Proxy, GlobalTableProps.Jsii$Proxy, SchemaOptions.Jsii$Proxy, TableOptions.Jsii$Proxy, TableProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:42.287Z") @Stability(Stable) public interface SchemaOptions extends software.amazon.jsii.JsiiSerializable
Represents the table schema attributes.

Example:

 Table table;
 SchemaOptions schema = table.schema();
 Attribute partitionKey = schema.getPartitionKey();
 Attribute sortKey = schema.getSortKey();
 
  • Method Details