Uses of Class
software.amazon.awssdk.enhanced.dynamodb.model.ScanEnhancedRequest.Builder
Packages that use ScanEnhancedRequest.Builder
Package
Description
-
Uses of ScanEnhancedRequest.Builder in software.amazon.awssdk.enhanced.dynamodb
Method parameters in software.amazon.awssdk.enhanced.dynamodb with type arguments of type ScanEnhancedRequest.BuilderModifier and TypeMethodDescriptiondefault SdkPublisher<Page<T>>DynamoDbAsyncIndex.scan(Consumer<ScanEnhancedRequest.Builder> requestConsumer) Scans the table against a secondary index and retrieves all items.default PagePublisher<T>DynamoDbAsyncTable.scan(Consumer<ScanEnhancedRequest.Builder> requestConsumer) Scans the table and retrieves all items.default SdkIterable<Page<T>>DynamoDbIndex.scan(Consumer<ScanEnhancedRequest.Builder> requestConsumer) Scans the table against a secondary index and retrieves all items.default PageIterable<T>DynamoDbTable.scan(Consumer<ScanEnhancedRequest.Builder> requestConsumer) This is a convenience method that creates an instance of the request builder avoiding the need to create one manually viaScanEnhancedRequest.builder(). -
Uses of ScanEnhancedRequest.Builder in software.amazon.awssdk.enhanced.dynamodb.internal.client
Method parameters in software.amazon.awssdk.enhanced.dynamodb.internal.client with type arguments of type ScanEnhancedRequest.BuilderModifier and TypeMethodDescriptionDefaultDynamoDbAsyncIndex.scan(Consumer<ScanEnhancedRequest.Builder> requestConsumer) DefaultDynamoDbAsyncTable.scan(Consumer<ScanEnhancedRequest.Builder> requestConsumer) SdkIterable<Page<T>>DefaultDynamoDbIndex.scan(Consumer<ScanEnhancedRequest.Builder> requestConsumer) DefaultDynamoDbTable.scan(Consumer<ScanEnhancedRequest.Builder> requestConsumer) -
Uses of ScanEnhancedRequest.Builder in software.amazon.awssdk.enhanced.dynamodb.model
Methods in software.amazon.awssdk.enhanced.dynamodb.model that return ScanEnhancedRequest.BuilderModifier and TypeMethodDescriptionScanEnhancedRequest.Builder.addAttributeToProject(String attributeToProject) Adds a single attribute name to be retrieved from the database.ScanEnhancedRequest.Builder.addNestedAttributesToProject(Collection<NestedAttributeName> nestedAttributeNames) Adds a collection of nested attributes to be retrieved from the database.ScanEnhancedRequest.Builder.addNestedAttributesToProject(NestedAttributeName... nestedAttributeNames) Adds a collection of nested attributes to be retrieved from the database.ScanEnhancedRequest.Builder.addNestedAttributeToProject(NestedAttributeName nestedAttributeName) Adds a single nested attribute to be retrieved from the database.ScanEnhancedRequest.Builder.attributesToProject(String... attributesToProject) Sets one or more attribute names to be retrieved from the database.ScanEnhancedRequest.Builder.attributesToProject(Collection<String> attributesToProject) Sets a collection of the attribute names to be retrieved from the database.static ScanEnhancedRequest.BuilderScanEnhancedRequest.builder()Creates a newly initialized builder for a request object.ScanEnhancedRequest.Builder.consistentRead(Boolean consistentRead) Determines the read consistency model: If set to true, the operation uses strongly consistent reads; otherwise, the operation uses eventually consistent reads.ScanEnhancedRequest.Builder.exclusiveStartKey(Map<String, AttributeValue> exclusiveStartKey) The primary key of the first item that this operation will evaluate.ScanEnhancedRequest.Builder.filterExpression(Expression filterExpression) Refines the scan results by applying the filter expression on the results returned from the scan and discards items that do not match.Sets a limit on how many items to evaluate in the scan.ScanEnhancedRequest.Builder.returnConsumedCapacity(String returnConsumedCapacity) Whether to return the capacity consumed by this operation.ScanEnhancedRequest.Builder.returnConsumedCapacity(ReturnConsumedCapacity returnConsumedCapacity) Whether to return the capacity consumed by this operation.For a parallel Scan request, Segment identifies an individual segment to be scanned by an application worker.Determines the attributes to be returned in the result.ScanEnhancedRequest.toBuilder()Returns a builder initialized with all existing values on the request object.ScanEnhancedRequest.Builder.totalSegments(Integer totalSegments) For a parallel Scan request, TotalSegments represents the total number of segments into which the Scan operation will be divided.