Uses of Class
software.amazon.awssdk.enhanced.dynamodb.mapper.ImmutableTableSchema
-
Packages that use ImmutableTableSchema Package Description software.amazon.awssdk.enhanced.dynamodb software.amazon.awssdk.enhanced.dynamodb.mapper -
-
Uses of ImmutableTableSchema in software.amazon.awssdk.enhanced.dynamodb
Methods in software.amazon.awssdk.enhanced.dynamodb that return ImmutableTableSchema Modifier and Type Method Description static <T> ImmutableTableSchema<T>
TableSchema. fromImmutableClass(Class<T> immutableClass)
Scans an immutable class that has been annotated with DynamoDb immutable annotations and then returns aImmutableTableSchema
implementation of this interface that can map records to and from items of that immutable class. -
Uses of ImmutableTableSchema in software.amazon.awssdk.enhanced.dynamodb.mapper
Methods in software.amazon.awssdk.enhanced.dynamodb.mapper that return ImmutableTableSchema Modifier and Type Method Description static <T> ImmutableTableSchema<T>
ImmutableTableSchema. create(Class<T> immutableClass)
Scans an immutable class and builds anImmutableTableSchema
from it that can be used with theDynamoDbEnhancedClient
.
-