public static interface AlgorithmStatusDetails.Builder extends SdkPojo, CopyableBuilder<AlgorithmStatusDetails.Builder,AlgorithmStatusDetails>
Modifier and Type | Method and Description |
---|---|
AlgorithmStatusDetails.Builder |
imageScanStatuses(AlgorithmStatusItem... imageScanStatuses)
The status of the scan of the algorithm's Docker image container.
|
AlgorithmStatusDetails.Builder |
imageScanStatuses(Collection<AlgorithmStatusItem> imageScanStatuses)
The status of the scan of the algorithm's Docker image container.
|
AlgorithmStatusDetails.Builder |
imageScanStatuses(Consumer<AlgorithmStatusItem.Builder>... imageScanStatuses)
The status of the scan of the algorithm's Docker image container.
|
AlgorithmStatusDetails.Builder |
validationStatuses(AlgorithmStatusItem... validationStatuses)
The status of the validation of the algorithm.
|
AlgorithmStatusDetails.Builder |
validationStatuses(Collection<AlgorithmStatusItem> validationStatuses)
The status of the validation of the algorithm.
|
AlgorithmStatusDetails.Builder |
validationStatuses(Consumer<AlgorithmStatusItem.Builder>... validationStatuses)
The status of the validation of the algorithm.
|
copy
applyMutation, build
AlgorithmStatusDetails.Builder validationStatuses(Collection<AlgorithmStatusItem> validationStatuses)
The status of the validation of the algorithm.
validationStatuses
- The status of the validation of the algorithm.AlgorithmStatusDetails.Builder validationStatuses(AlgorithmStatusItem... validationStatuses)
The status of the validation of the algorithm.
validationStatuses
- The status of the validation of the algorithm.AlgorithmStatusDetails.Builder validationStatuses(Consumer<AlgorithmStatusItem.Builder>... validationStatuses)
The status of the validation of the algorithm.
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 #validationStatuses(List)
.validationStatuses
- a consumer that will call methods on List.Builder
#validationStatuses(List)
AlgorithmStatusDetails.Builder imageScanStatuses(Collection<AlgorithmStatusItem> imageScanStatuses)
The status of the scan of the algorithm's Docker image container.
imageScanStatuses
- The status of the scan of the algorithm's Docker image container.AlgorithmStatusDetails.Builder imageScanStatuses(AlgorithmStatusItem... imageScanStatuses)
The status of the scan of the algorithm's Docker image container.
imageScanStatuses
- The status of the scan of the algorithm's Docker image container.AlgorithmStatusDetails.Builder imageScanStatuses(Consumer<AlgorithmStatusItem.Builder>... imageScanStatuses)
The status of the scan of the algorithm's Docker image container.
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 #imageScanStatuses(List)
.imageScanStatuses
- a consumer that will call methods on List.Builder
#imageScanStatuses(List)
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.