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
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ReportConfiguration.BuilderreportS3Configuration(Consumer<ReportS3Configuration.Builder> reportS3Configuration)Configuration of an S3 location to write error reports and events for a batch load.ReportConfiguration.BuilderreportS3Configuration(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 Detail
-
reportS3Configuration
ReportConfiguration.Builder reportS3Configuration(ReportS3Configuration 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.Builderavoiding the need to create one manually viaReportS3Configuration.builder().When the
Consumercompletes,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:
reportS3Configuration(ReportS3Configuration)
-
-