Interface ClassificationExportConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ClassificationExportConfiguration.Builder,ClassificationExportConfiguration>,SdkBuilder<ClassificationExportConfiguration.Builder,ClassificationExportConfiguration>,SdkPojo
- Enclosing class:
- ClassificationExportConfiguration
public static interface ClassificationExportConfiguration.Builder extends SdkPojo, CopyableBuilder<ClassificationExportConfiguration.Builder,ClassificationExportConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ClassificationExportConfiguration.Builders3Destination(Consumer<S3Destination.Builder> s3Destination)The S3 bucket to store data classification results in, and the encryption settings to use when storing results in that bucket.ClassificationExportConfiguration.Builders3Destination(S3Destination s3Destination)The S3 bucket to store data classification results in, and the encryption settings to use when storing results in that bucket.-
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
-
s3Destination
ClassificationExportConfiguration.Builder s3Destination(S3Destination s3Destination)
The S3 bucket to store data classification results in, and the encryption settings to use when storing results in that bucket.
- Parameters:
s3Destination- The S3 bucket to store data classification results in, and the encryption settings to use when storing results in that bucket.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3Destination
default ClassificationExportConfiguration.Builder s3Destination(Consumer<S3Destination.Builder> s3Destination)
The S3 bucket to store data classification results in, and the encryption settings to use when storing results in that bucket.
This is a convenience method that creates an instance of theS3Destination.Builderavoiding the need to create one manually viaS3Destination.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tos3Destination(S3Destination).- Parameters:
s3Destination- a consumer that will call methods onS3Destination.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
s3Destination(S3Destination)
-
-