Uses of Class
software.amazon.awssdk.enhanced.dynamodb.NestedAttributeName
-
Packages that use NestedAttributeName Package Description software.amazon.awssdk.enhanced.dynamodb software.amazon.awssdk.enhanced.dynamodb.internal software.amazon.awssdk.enhanced.dynamodb.model -
-
Uses of NestedAttributeName in software.amazon.awssdk.enhanced.dynamodb
Methods in software.amazon.awssdk.enhanced.dynamodb that return NestedAttributeName Modifier and Type Method Description NestedAttributeName
NestedAttributeName.Builder. build()
static NestedAttributeName
NestedAttributeName. create(String element)
Creates a NestedAttributeName with a single element, which is effectively just a simple attribute name without nesting.static NestedAttributeName
NestedAttributeName. create(String... elements)
Creates a NestedAttributeName from a list of elements that compose the full path of the nested attribute.static NestedAttributeName
NestedAttributeName. create(List<String> elements)
Creates a NestedAttributeName from a list of elements that compose the full path of the nested attribute. -
Uses of NestedAttributeName in software.amazon.awssdk.enhanced.dynamodb.internal
Method parameters in software.amazon.awssdk.enhanced.dynamodb.internal with type arguments of type NestedAttributeName Modifier and Type Method Description static ProjectionExpression
ProjectionExpression. create(List<NestedAttributeName> nestedAttributeNames)
-
Uses of NestedAttributeName in software.amazon.awssdk.enhanced.dynamodb.model
Methods in software.amazon.awssdk.enhanced.dynamodb.model that return types with arguments of type NestedAttributeName Modifier and Type Method Description List<NestedAttributeName>
QueryEnhancedRequest. nestedAttributesToProject()
Returns the list of projected attribute names, in the form ofNestedAttributeName
objects, for this request object, or null if no projection is specified.List<NestedAttributeName>
ScanEnhancedRequest. nestedAttributesToProject()
Returns the list of projected attribute names, in the form ofNestedAttributeName
objects, for this request object, or null if no projection is specified.Methods in software.amazon.awssdk.enhanced.dynamodb.model with parameters of type NestedAttributeName Modifier and Type Method Description QueryEnhancedRequest.Builder
QueryEnhancedRequest.Builder. addNestedAttributesToProject(NestedAttributeName... nestedAttributeNames)
Adds a collection of nested attributes to be retrieved from the database.ScanEnhancedRequest.Builder
ScanEnhancedRequest.Builder. addNestedAttributesToProject(NestedAttributeName... nestedAttributeNames)
Adds a collection of nested attributes to be retrieved from the database.QueryEnhancedRequest.Builder
QueryEnhancedRequest.Builder. addNestedAttributeToProject(NestedAttributeName nestedAttributeName)
Adds a single nested attribute to be retrieved from the database.ScanEnhancedRequest.Builder
ScanEnhancedRequest.Builder. addNestedAttributeToProject(NestedAttributeName nestedAttributeName)
Adds a single nested attribute to be retrieved from the database.Method parameters in software.amazon.awssdk.enhanced.dynamodb.model with type arguments of type NestedAttributeName Modifier and Type Method Description QueryEnhancedRequest.Builder
QueryEnhancedRequest.Builder. addNestedAttributesToProject(Collection<NestedAttributeName> nestedAttributeNames)
Adds a collection of nested attributes to be retrieved from the database.ScanEnhancedRequest.Builder
ScanEnhancedRequest.Builder. addNestedAttributesToProject(Collection<NestedAttributeName> nestedAttributeNames)
Adds a collection of nested attributes to be retrieved from the database.
-