Interface CustomDataIdentifiersDetections.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CustomDataIdentifiersDetections.Builder,CustomDataIdentifiersDetections>,SdkBuilder<CustomDataIdentifiersDetections.Builder,CustomDataIdentifiersDetections>,SdkPojo
- Enclosing class:
- CustomDataIdentifiersDetections
public static interface CustomDataIdentifiersDetections.Builder extends SdkPojo, CopyableBuilder<CustomDataIdentifiersDetections.Builder,CustomDataIdentifiersDetections>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description CustomDataIdentifiersDetections.Builderarn(String arn)The ARN of the custom identifier that was used to detect the sensitive data.CustomDataIdentifiersDetections.Buildercount(Long count)The total number of occurrences of sensitive data that were detected.CustomDataIdentifiersDetections.Buildername(String name)he name of the custom identifier that detected the sensitive data.default CustomDataIdentifiersDetections.Builderoccurrences(Consumer<Occurrences.Builder> occurrences)Details about the sensitive data that was detected.CustomDataIdentifiersDetections.Builderoccurrences(Occurrences occurrences)Details about the sensitive data that was detected.-
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
-
count
CustomDataIdentifiersDetections.Builder count(Long count)
The total number of occurrences of sensitive data that were detected.
- Parameters:
count- The total number of occurrences of sensitive data that were detected.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
arn
CustomDataIdentifiersDetections.Builder arn(String arn)
The ARN of the custom identifier that was used to detect the sensitive data.
- Parameters:
arn- The ARN of the custom identifier that was used to detect the sensitive data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
CustomDataIdentifiersDetections.Builder name(String name)
he name of the custom identifier that detected the sensitive data.
- Parameters:
name- he name of the custom identifier that detected the sensitive data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
occurrences
CustomDataIdentifiersDetections.Builder occurrences(Occurrences occurrences)
Details about the sensitive data that was detected.
- Parameters:
occurrences- Details about the sensitive data that was detected.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
occurrences
default CustomDataIdentifiersDetections.Builder occurrences(Consumer<Occurrences.Builder> occurrences)
Details about the sensitive data that was detected.
This is a convenience method that creates an instance of theOccurrences.Builderavoiding the need to create one manually viaOccurrences.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tooccurrences(Occurrences).- Parameters:
occurrences- a consumer that will call methods onOccurrences.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
occurrences(Occurrences)
-
-