public static interface SensitiveDataResult.Builder extends SdkPojo, CopyableBuilder<SensitiveDataResult.Builder,SensitiveDataResult>
| Modifier and Type | Method and Description |
|---|---|
SensitiveDataResult.Builder |
category(String category)
The category of sensitive data that was detected.
|
SensitiveDataResult.Builder |
detections(Collection<SensitiveDataDetections> detections)
The list of detected instances of sensitive data.
|
SensitiveDataResult.Builder |
detections(Consumer<SensitiveDataDetections.Builder>... detections)
The list of detected instances of sensitive data.
|
SensitiveDataResult.Builder |
detections(SensitiveDataDetections... detections)
The list of detected instances of sensitive data.
|
SensitiveDataResult.Builder |
totalCount(Long totalCount)
The total number of occurrences of sensitive data.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildSensitiveDataResult.Builder category(String category)
The category of sensitive data that was detected. For example, the category can indicate that the sensitive data involved credentials, financial information, or personal information.
category - The category of sensitive data that was detected. For example, the category can indicate that the
sensitive data involved credentials, financial information, or personal information.SensitiveDataResult.Builder detections(Collection<SensitiveDataDetections> detections)
The list of detected instances of sensitive data.
detections - The list of detected instances of sensitive data.SensitiveDataResult.Builder detections(SensitiveDataDetections... detections)
The list of detected instances of sensitive data.
detections - The list of detected instances of sensitive data.SensitiveDataResult.Builder detections(Consumer<SensitiveDataDetections.Builder>... detections)
The list of detected instances of sensitive data.
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 #detections(List) .detections - a consumer that will call methods on List.Builder #detections(List) SensitiveDataResult.Builder totalCount(Long totalCount)
The total number of occurrences of sensitive data.
totalCount - The total number of occurrences of sensitive data.Copyright © 2021. All rights reserved.