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: CREDENTIALS, for credentials data such as private keys or Amazon Web Services secret access keys; FINANCIAL_INFORMATION, for financial data such as credit card numbers; or, PERSONAL_INFORMATION, for personal health information, such as health insurance identification numbers, or personally identifiable information, such as passport numbers.
category - The category of sensitive data that was detected. For example: CREDENTIALS, for credentials data such
as private keys or Amazon Web Services secret access keys; FINANCIAL_INFORMATION, for financial data
such as credit card numbers; or, PERSONAL_INFORMATION, for personal health information, such as health
insurance identification numbers, or personally identifiable information, such as passport numbers.SensitiveDataItemCategory,
SensitiveDataItemCategorySensitiveDataItem.Builder category(SensitiveDataItemCategory category)
The category of sensitive data that was detected. For example: CREDENTIALS, for credentials data such as private keys or Amazon Web Services secret access keys; FINANCIAL_INFORMATION, for financial data such as credit card numbers; or, PERSONAL_INFORMATION, for personal health information, such as health insurance identification numbers, or personally identifiable information, such as passport numbers.
category - The category of sensitive data that was detected. For example: CREDENTIALS, for credentials data such
as private keys or Amazon Web Services secret access keys; FINANCIAL_INFORMATION, for financial data
such as credit card numbers; or, PERSONAL_INFORMATION, for personal health information, such as health
insurance identification numbers, or personally identifiable information, such as passport numbers.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, and the location of up to 15 of those occurrences.
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, and the location of up
to 15 of those occurrences.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, and the location of up to 15 of those occurrences.
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, and the location of up
to 15 of those occurrences.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, and the location of up to 15 of those occurrences.
This is a convenience method 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 © 2022. All rights reserved.