@Target(value=TYPE) @Retention(value=RUNTIME) public @interface DynamoDbBean
BeanTableSchema
must have this annotation. If a class is used as a document within another DynamoDbBean,
it will also require this annotation.
Using AttributeConverterProvider
s is optional and, if used, the supplied provider supersedes the default
converter provided by the table schema. The converter must provide AttributeConverter
s for all types used
in the schema. The table schema default AttributeConverterProvider provides standard converters for most primitive
and common Java types. Use custom AttributeConverterProviders when you have specific needs for type conversion
that the defaults do not cover.
Modifier and Type | Optional Element and Description |
---|---|
Class<? extends AttributeConverterProvider>[] |
converterProviders |
public abstract Class<? extends AttributeConverterProvider>[] converterProviders
Copyright © 2020. All rights reserved.