Interface ReportResult.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ReportResult.Builder,ReportResult>,SdkBuilder<ReportResult.Builder,ReportResult>,SdkPojo
- Enclosing class:
- ReportResult
public static interface ReportResult.Builder extends SdkPojo, CopyableBuilder<ReportResult.Builder,ReportResult>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ReportResult.BuildererrorCode(String errorCode)Indicates the code associated with the error if DataSync can't create a complete report.ReportResult.BuildererrorDetail(String errorDetail)Provides details about issues creating a report.ReportResult.Builderstatus(String status)Indicates whether DataSync is still working on your report, created a report, or can't create a complete report.ReportResult.Builderstatus(PhaseStatus status)Indicates whether DataSync is still working on your report, created a report, or can't create a complete report.-
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
-
status
ReportResult.Builder status(String status)
Indicates whether DataSync is still working on your report, created a report, or can't create a complete report.
- Parameters:
status- Indicates whether DataSync is still working on your report, created a report, or can't create a complete report.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
PhaseStatus,PhaseStatus
-
status
ReportResult.Builder status(PhaseStatus status)
Indicates whether DataSync is still working on your report, created a report, or can't create a complete report.
- Parameters:
status- Indicates whether DataSync is still working on your report, created a report, or can't create a complete report.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
PhaseStatus,PhaseStatus
-
errorCode
ReportResult.Builder errorCode(String errorCode)
Indicates the code associated with the error if DataSync can't create a complete report.
- Parameters:
errorCode- Indicates the code associated with the error if DataSync can't create a complete report.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errorDetail
ReportResult.Builder errorDetail(String errorDetail)
Provides details about issues creating a report.
- Parameters:
errorDetail- Provides details about issues creating a report.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-