Interface ImportTaskDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ImportTaskDetails.Builder,ImportTaskDetails>,SdkBuilder<ImportTaskDetails.Builder,ImportTaskDetails>,SdkPojo
- Enclosing class:
- ImportTaskDetails
public static interface ImportTaskDetails.Builder extends SdkPojo, CopyableBuilder<ImportTaskDetails.Builder,ImportTaskDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImportTaskDetails.BuilderdictionaryEntryCount(Long dictionaryEntryCount)The number of dictionary entries in the import task.ImportTaskDetails.BuildererrorCount(Integer errorCount)The number of errors encountered so far.ImportTaskDetails.BuildererrorDetails(String errorDetails)Details about the errors that have been encountered.ImportTaskDetails.BuilderprogressPercentage(Integer progressPercentage)The percentage progress so far.ImportTaskDetails.BuilderstartTime(Instant startTime)Time at which the import task started.ImportTaskDetails.BuilderstatementCount(Long statementCount)The number of statements in the import task.ImportTaskDetails.Builderstatus(String status)Status of the import task.ImportTaskDetails.BuildertimeElapsedSeconds(Long timeElapsedSeconds)Seconds elapsed since the import task started.-
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
ImportTaskDetails.Builder status(String status)
Status of the import task.
- Parameters:
status- Status of the import task.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
startTime
ImportTaskDetails.Builder startTime(Instant startTime)
Time at which the import task started.
- Parameters:
startTime- Time at which the import task started.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
timeElapsedSeconds
ImportTaskDetails.Builder timeElapsedSeconds(Long timeElapsedSeconds)
Seconds elapsed since the import task started.
- Parameters:
timeElapsedSeconds- Seconds elapsed since the import task started.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
progressPercentage
ImportTaskDetails.Builder progressPercentage(Integer progressPercentage)
The percentage progress so far.
- Parameters:
progressPercentage- The percentage progress so far.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errorCount
ImportTaskDetails.Builder errorCount(Integer errorCount)
The number of errors encountered so far.
- Parameters:
errorCount- The number of errors encountered so far.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errorDetails
ImportTaskDetails.Builder errorDetails(String errorDetails)
Details about the errors that have been encountered.
- Parameters:
errorDetails- Details about the errors that have been encountered.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
statementCount
ImportTaskDetails.Builder statementCount(Long statementCount)
The number of statements in the import task.
- Parameters:
statementCount- The number of statements in the import task.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dictionaryEntryCount
ImportTaskDetails.Builder dictionaryEntryCount(Long dictionaryEntryCount)
The number of dictionary entries in the import task.
- Parameters:
dictionaryEntryCount- The number of dictionary entries in the import task.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-