Uses of Class
software.amazon.awssdk.enhanced.dynamodb.mapper.BeanTableSchema
-
Packages that use BeanTableSchema Package Description software.amazon.awssdk.enhanced.dynamodb software.amazon.awssdk.enhanced.dynamodb.mapper -
-
Uses of BeanTableSchema in software.amazon.awssdk.enhanced.dynamodb
Methods in software.amazon.awssdk.enhanced.dynamodb that return BeanTableSchema Modifier and Type Method Description static <T> BeanTableSchema<T>
TableSchema. fromBean(Class<T> beanClass)
Scans a bean class that has been annotated with DynamoDb bean annotations and then returns aBeanTableSchema
implementation of this interface that can map records to and from items of that bean class.static <T> BeanTableSchema<T>
TableSchema. fromBean(BeanTableSchemaParams<T> params)
Scans a bean class that has been annotated with DynamoDb bean annotations and then returns aBeanTableSchema
implementation of this interface that can map records to and from items of that bean class. -
Uses of BeanTableSchema in software.amazon.awssdk.enhanced.dynamodb.mapper
Methods in software.amazon.awssdk.enhanced.dynamodb.mapper that return BeanTableSchema Modifier and Type Method Description static <T> BeanTableSchema<T>
BeanTableSchema. create(Class<T> beanClass)
Scans a bean class and builds aBeanTableSchema
from it that can be used with theDynamoDbEnhancedClient
.static <T> BeanTableSchema<T>
BeanTableSchema. create(BeanTableSchemaParams<T> params)
Scans a bean class and builds aBeanTableSchema
from it that can be used with theDynamoDbEnhancedClient
.
-