Interface ReportConfiguration.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<ReportConfiguration.Builder,
,ReportConfiguration> SdkBuilder<ReportConfiguration.Builder,
,ReportConfiguration> SdkPojo
- Enclosing class:
ReportConfiguration
public static interface ReportConfiguration.Builder
extends SdkPojo, CopyableBuilder<ReportConfiguration.Builder,ReportConfiguration>
-
Method Summary
Modifier and TypeMethodDescriptiondefault ReportConfiguration.Builder
reportS3Configuration
(Consumer<ReportS3Configuration.Builder> reportS3Configuration) Configuration of an S3 location to write error reports and events for a batch load.reportS3Configuration
(ReportS3Configuration reportS3Configuration) Configuration of an S3 location to write error reports and events for a batch load.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 Details
-
reportS3Configuration
Configuration of an S3 location to write error reports and events for a batch load.
- Parameters:
reportS3Configuration
- Configuration of an S3 location to write error reports and events for a batch load.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
reportS3Configuration
default ReportConfiguration.Builder reportS3Configuration(Consumer<ReportS3Configuration.Builder> reportS3Configuration) Configuration of an S3 location to write error reports and events for a batch load.
This is a convenience method that creates an instance of theReportS3Configuration.Builder
avoiding the need to create one manually viaReportS3Configuration.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toreportS3Configuration(ReportS3Configuration)
.- Parameters:
reportS3Configuration
- a consumer that will call methods onReportS3Configuration.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-