Interface ReportOverride.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ReportOverride.Builder,ReportOverride>,SdkBuilder<ReportOverride.Builder,ReportOverride>,SdkPojo
- Enclosing class:
- ReportOverride
public static interface ReportOverride.Builder extends SdkPojo, CopyableBuilder<ReportOverride.Builder,ReportOverride>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ReportOverride.BuilderreportLevel(String reportLevel)Specifies whether your task report includes errors only or successes and errors.ReportOverride.BuilderreportLevel(ReportLevel reportLevel)Specifies whether your task report includes errors only or successes and errors.-
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
-
reportLevel
ReportOverride.Builder reportLevel(String reportLevel)
Specifies whether your task report includes errors only or successes and errors.
For example, your report might mostly include only what didn't go well in your transfer (
ERRORS_ONLY). At the same time, you want to verify that your task filter is working correctly. In this situation, you can get a list of what files DataSync successfully skipped and if something transferred that you didn't to transfer (SUCCESSES_AND_ERRORS).- Parameters:
reportLevel- Specifies whether your task report includes errors only or successes and errors.For example, your report might mostly include only what didn't go well in your transfer (
ERRORS_ONLY). At the same time, you want to verify that your task filter is working correctly. In this situation, you can get a list of what files DataSync successfully skipped and if something transferred that you didn't to transfer (SUCCESSES_AND_ERRORS).- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ReportLevel,ReportLevel
-
reportLevel
ReportOverride.Builder reportLevel(ReportLevel reportLevel)
Specifies whether your task report includes errors only or successes and errors.
For example, your report might mostly include only what didn't go well in your transfer (
ERRORS_ONLY). At the same time, you want to verify that your task filter is working correctly. In this situation, you can get a list of what files DataSync successfully skipped and if something transferred that you didn't to transfer (SUCCESSES_AND_ERRORS).- Parameters:
reportLevel- Specifies whether your task report includes errors only or successes and errors.For example, your report might mostly include only what didn't go well in your transfer (
ERRORS_ONLY). At the same time, you want to verify that your task filter is working correctly. In this situation, you can get a list of what files DataSync successfully skipped and if something transferred that you didn't to transfer (SUCCESSES_AND_ERRORS).- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ReportLevel,ReportLevel
-
-