Interface DataClassificationDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DataClassificationDetails.Builder,DataClassificationDetails>,SdkBuilder<DataClassificationDetails.Builder,DataClassificationDetails>,SdkPojo
- Enclosing class:
- DataClassificationDetails
public static interface DataClassificationDetails.Builder extends SdkPojo, CopyableBuilder<DataClassificationDetails.Builder,DataClassificationDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description DataClassificationDetails.BuilderdetailedResultsLocation(String detailedResultsLocation)The path to the folder or file that contains the sensitive data.default DataClassificationDetails.Builderresult(Consumer<ClassificationResult.Builder> result)The details about the sensitive data that was detected on the resource.DataClassificationDetails.Builderresult(ClassificationResult result)The details about the sensitive data that was detected on the resource.-
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, sdkFields
-
-
-
-
Method Detail
-
detailedResultsLocation
DataClassificationDetails.Builder detailedResultsLocation(String detailedResultsLocation)
The path to the folder or file that contains the sensitive data.
- Parameters:
detailedResultsLocation- The path to the folder or file that contains the sensitive data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
result
DataClassificationDetails.Builder result(ClassificationResult result)
The details about the sensitive data that was detected on the resource.
- Parameters:
result- The details about the sensitive data that was detected on the resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
result
default DataClassificationDetails.Builder result(Consumer<ClassificationResult.Builder> result)
The details about the sensitive data that was detected on the resource.
This is a convenience method that creates an instance of theClassificationResult.Builderavoiding the need to create one manually viaClassificationResult.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toresult(ClassificationResult).- Parameters:
result- a consumer that will call methods onClassificationResult.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
result(ClassificationResult)
-
-