public static interface DeviceSelectionResult.Builder extends SdkPojo, CopyableBuilder<DeviceSelectionResult.Builder,DeviceSelectionResult>
Modifier and Type | Method and Description |
---|---|
DeviceSelectionResult.Builder |
filters(Collection<DeviceFilter> filters)
The filters in a device selection result.
|
DeviceSelectionResult.Builder |
filters(Consumer<DeviceFilter.Builder>... filters)
The filters in a device selection result.
|
DeviceSelectionResult.Builder |
filters(DeviceFilter... filters)
The filters in a device selection result.
|
DeviceSelectionResult.Builder |
matchedDevicesCount(Integer matchedDevicesCount)
The number of devices that matched the device filter selection criteria.
|
DeviceSelectionResult.Builder |
maxDevices(Integer maxDevices)
The maximum number of devices to be selected by a device filter and included in a test run.
|
copy
applyMutation, build
DeviceSelectionResult.Builder filters(Collection<DeviceFilter> filters)
The filters in a device selection result.
filters
- The filters in a device selection result.DeviceSelectionResult.Builder filters(DeviceFilter... filters)
The filters in a device selection result.
filters
- The filters in a device selection result.DeviceSelectionResult.Builder filters(Consumer<DeviceFilter.Builder>... filters)
The filters in a device selection result.
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 #filters(List)
.filters
- a consumer that will call methods on List.Builder
#filters(List)
DeviceSelectionResult.Builder matchedDevicesCount(Integer matchedDevicesCount)
The number of devices that matched the device filter selection criteria.
matchedDevicesCount
- The number of devices that matched the device filter selection criteria.DeviceSelectionResult.Builder maxDevices(Integer maxDevices)
The maximum number of devices to be selected by a device filter and included in a test run.
maxDevices
- The maximum number of devices to be selected by a device filter and included in a test run.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.