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 NestedAttributeNameNestedAttributeName.Builder. build()static NestedAttributeNameNestedAttributeName. create(String element)Creates a NestedAttributeName with a single element, which is effectively just a simple attribute name without nesting.static NestedAttributeNameNestedAttributeName. create(String... elements)Creates a NestedAttributeName from a list of elements that compose the full path of the nested attribute.static NestedAttributeNameNestedAttributeName. 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 ProjectionExpressionProjectionExpression. 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 ofNestedAttributeNameobjects, 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 ofNestedAttributeNameobjects, 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.BuilderQueryEnhancedRequest.Builder. addNestedAttributesToProject(NestedAttributeName... nestedAttributeNames)Adds a collection of nested attributes to be retrieved from the database.ScanEnhancedRequest.BuilderScanEnhancedRequest.Builder. addNestedAttributesToProject(NestedAttributeName... nestedAttributeNames)Adds a collection of nested attributes to be retrieved from the database.QueryEnhancedRequest.BuilderQueryEnhancedRequest.Builder. addNestedAttributeToProject(NestedAttributeName nestedAttributeName)Adds a single nested attribute to be retrieved from the database.ScanEnhancedRequest.BuilderScanEnhancedRequest.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.BuilderQueryEnhancedRequest.Builder. addNestedAttributesToProject(Collection<NestedAttributeName> nestedAttributeNames)Adds a collection of nested attributes to be retrieved from the database.ScanEnhancedRequest.BuilderScanEnhancedRequest.Builder. addNestedAttributesToProject(Collection<NestedAttributeName> nestedAttributeNames)Adds a collection of nested attributes to be retrieved from the database.
-