public static interface InventoryAggregator.Builder extends CopyableBuilder<InventoryAggregator.Builder,InventoryAggregator>
Modifier and Type | Method and Description |
---|---|
InventoryAggregator.Builder |
aggregators(Collection<InventoryAggregator> aggregators)
Nested aggregators to further refine aggregation for an inventory type.
|
InventoryAggregator.Builder |
aggregators(Consumer<InventoryAggregator.Builder>... aggregators)
Nested aggregators to further refine aggregation for an inventory type.
|
InventoryAggregator.Builder |
aggregators(InventoryAggregator... aggregators)
Nested aggregators to further refine aggregation for an inventory type.
|
InventoryAggregator.Builder |
expression(String expression)
The inventory type and attribute name for aggregation.
|
copy
applyMutation, build
InventoryAggregator.Builder expression(String expression)
The inventory type and attribute name for aggregation.
expression
- The inventory type and attribute name for aggregation.InventoryAggregator.Builder aggregators(Collection<InventoryAggregator> aggregators)
Nested aggregators to further refine aggregation for an inventory type.
aggregators
- Nested aggregators to further refine aggregation for an inventory type.InventoryAggregator.Builder aggregators(InventoryAggregator... aggregators)
Nested aggregators to further refine aggregation for an inventory type.
aggregators
- Nested aggregators to further refine aggregation for an inventory type.InventoryAggregator.Builder aggregators(Consumer<InventoryAggregator.Builder>... aggregators)
Nested aggregators to further refine aggregation for an inventory type.
This is a convenience that creates an instance of theList.Builder
avoiding the
need to create one manually via List#builder()
.
When the Consumer
completes, List.Builder#build()
is called immediately
and its result is passed to #aggregators(List)
.aggregators
- a consumer that will call methods on List.Builder
#aggregators(List)
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.