You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: hll/dynamodb-mapper/dynamodb-mapper-annotations/common/src/aws/sdk/kotlin/hll/dynamodbmapper/Annotations.kt
+3-4Lines changed: 3 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -14,13 +14,12 @@ public annotation class DynamoDbAttribute(val name: String)
14
14
/**
15
15
* Specifies that this class/interface describes an item type in a table. All public properties of this type will be mapped to
16
16
* attributes unless they are explicitly ignored.
17
-
* @param converter A class reference of the item converter to be used for converting this annotated class/interface.
17
+
* @param converterName The fully qualified name of the item converter to be used for converting this class/interface.
18
18
* If not set, one will be automatically generated.
19
19
*/
20
+
// FIXME Update to take a KClass<ItemConverter>, which will require splitting codegen modules due to a circular dependency
20
21
@Target(AnnotationTarget.CLASS)
21
-
// FIXME Update to take a KClass<out ItemConverter<*>> once KSP bug is fixed
Copy file name to clipboardExpand all lines: hll/dynamodb-mapper/dynamodb-mapper-schema-codegen/src/main/kotlin/aws/sdk/kotlin/hll/dynamodbmapper/codegen/annotations/rendering/SchemaRenderer.kt
0 commit comments