Interface CustomDataIdentifiersResult.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CustomDataIdentifiersResult.Builder,CustomDataIdentifiersResult>,SdkBuilder<CustomDataIdentifiersResult.Builder,CustomDataIdentifiersResult>,SdkPojo
- Enclosing class:
- CustomDataIdentifiersResult
public static interface CustomDataIdentifiersResult.Builder extends SdkPojo, CopyableBuilder<CustomDataIdentifiersResult.Builder,CustomDataIdentifiersResult>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CustomDataIdentifiersResult.Builderdetections(Collection<CustomDataIdentifiersDetections> detections)The list of detected instances of sensitive data.CustomDataIdentifiersResult.Builderdetections(Consumer<CustomDataIdentifiersDetections.Builder>... detections)The list of detected instances of sensitive data.CustomDataIdentifiersResult.Builderdetections(CustomDataIdentifiersDetections... detections)The list of detected instances of sensitive data.CustomDataIdentifiersResult.BuildertotalCount(Long totalCount)The total number of occurrences of sensitive data.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
detections
CustomDataIdentifiersResult.Builder detections(Collection<CustomDataIdentifiersDetections> detections)
The list of detected instances of sensitive data.
- Parameters:
detections- The list of detected instances of sensitive data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
detections
CustomDataIdentifiersResult.Builder detections(CustomDataIdentifiersDetections... detections)
The list of detected instances of sensitive data.
- Parameters:
detections- The list of detected instances of sensitive data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
detections
CustomDataIdentifiersResult.Builder detections(Consumer<CustomDataIdentifiersDetections.Builder>... detections)
The list of detected instances of sensitive data.
This is a convenience method that creates an instance of theCustomDataIdentifiersDetections.Builderavoiding the need to create one manually viaCustomDataIdentifiersDetections.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#detections(List.) - Parameters:
detections- a consumer that will call methods onCustomDataIdentifiersDetections.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#detections(java.util.Collection)
-
totalCount
CustomDataIdentifiersResult.Builder totalCount(Long totalCount)
The total number of occurrences of sensitive data.
- Parameters:
totalCount- The total number of occurrences of sensitive data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-