Annotation Type Query
-
@Retention(RUNTIME) @Target(METHOD) @Documented public @interface Query
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description QueryConstants.ConsistentReadModeconsistentReadsjava.lang.StringfieldsA string that identifies the attributes you want.intlimitAn integer to limit the number of elements returned.
-
-
-
Element Detail
-
fields
java.lang.String fields
A string that identifies the attributes you want. To retrieve a single attribute, specify its name. For multiple attributes, the names must be comma-separated.- See Also:
- Projection Expressions
- Default:
- ""
-
-
-
limit
int limit
An integer to limit the number of elements returned.- See Also:
- Projection Expressions
- Default:
- -2147483648
-
-
-
consistentReads
QueryConstants.ConsistentReadMode consistentReads
- Default:
- org.socialsignin.spring.data.dynamodb.repository.QueryConstants.ConsistentReadMode.DEFAULT
-
-