public static interface SensitiveDataItem.Builder extends SdkPojo, CopyableBuilder<SensitiveDataItem.Builder,SensitiveDataItem>
| Modifier and Type | Method and Description |
|---|---|
SensitiveDataItem.Builder |
category(SensitiveDataItemCategory category)
The category of sensitive data that was detected.
|
SensitiveDataItem.Builder |
category(String category)
The category of sensitive data that was detected.
|
SensitiveDataItem.Builder |
detections(Collection<DefaultDetection> detections)
An array of objects, one for each type of sensitive data that was detected.
|
SensitiveDataItem.Builder |
detections(Consumer<DefaultDetection.Builder>... detections)
An array of objects, one for each type of sensitive data that was detected.
|
SensitiveDataItem.Builder |
detections(DefaultDetection... detections)
An array of objects, one for each type of sensitive data that was detected.
|
SensitiveDataItem.Builder |
totalCount(Long totalCount)
The total number of occurrences of the sensitive data that was detected.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildSensitiveDataItem.Builder category(String category)
The category of sensitive data that was detected. For example: FINANCIAL_INFORMATION, for financial information such as credit card numbers; PERSONAL_INFORMATION, for personally identifiable information such as full names and mailing addresses; or, CUSTOM_IDENTIFIER, for data that was detected by a custom data identifier.
category - The category of sensitive data that was detected. For example: FINANCIAL_INFORMATION, for financial
information such as credit card numbers; PERSONAL_INFORMATION, for personally identifiable information
such as full names and mailing addresses; or, CUSTOM_IDENTIFIER, for data that was detected by a
custom data identifier.SensitiveDataItemCategory,
SensitiveDataItemCategorySensitiveDataItem.Builder category(SensitiveDataItemCategory category)
The category of sensitive data that was detected. For example: FINANCIAL_INFORMATION, for financial information such as credit card numbers; PERSONAL_INFORMATION, for personally identifiable information such as full names and mailing addresses; or, CUSTOM_IDENTIFIER, for data that was detected by a custom data identifier.
category - The category of sensitive data that was detected. For example: FINANCIAL_INFORMATION, for financial
information such as credit card numbers; PERSONAL_INFORMATION, for personally identifiable information
such as full names and mailing addresses; or, CUSTOM_IDENTIFIER, for data that was detected by a
custom data identifier.SensitiveDataItemCategory,
SensitiveDataItemCategorySensitiveDataItem.Builder detections(Collection<DefaultDetection> detections)
An array of objects, one for each type of sensitive data that was detected. Each object reports the number of occurrences of a specific type of sensitive data that was detected.
detections - An array of objects, one for each type of sensitive data that was detected. Each object reports the
number of occurrences of a specific type of sensitive data that was detected.SensitiveDataItem.Builder detections(DefaultDetection... detections)
An array of objects, one for each type of sensitive data that was detected. Each object reports the number of occurrences of a specific type of sensitive data that was detected.
detections - An array of objects, one for each type of sensitive data that was detected. Each object reports the
number of occurrences of a specific type of sensitive data that was detected.SensitiveDataItem.Builder detections(Consumer<DefaultDetection.Builder>... detections)
An array of objects, one for each type of sensitive data that was detected. Each object reports the number of occurrences of a specific type of sensitive data that was detected.
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) SensitiveDataItem.Builder totalCount(Long totalCount)
The total number of occurrences of the sensitive data that was detected.
totalCount - The total number of occurrences of the sensitive data that was detected.Copyright © 2020. All rights reserved.