Interface ExportStatus.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ExportStatus.Builder,ExportStatus>,SdkBuilder<ExportStatus.Builder,ExportStatus>,SdkPojo
- Enclosing class:
- ExportStatus
public static interface ExportStatus.Builder extends SdkPojo, CopyableBuilder<ExportStatus.Builder,ExportStatus>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExportStatus.BuildercompletionTimestamp(Instant completionTimestamp)The timestamp of when the export job completed (if finished).ExportStatus.BuildererrorMessage(String errorMessage)An error message if the export job failed.ExportStatus.Builderstate(String state)The current state of the export job.ExportStatus.Builderstate(ExportState state)The current state of the export job.ExportStatus.BuildersubmissionTimestamp(Instant submissionTimestamp)The timestamp of when the export job was submitted.-
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
-
completionTimestamp
ExportStatus.Builder completionTimestamp(Instant completionTimestamp)
The timestamp of when the export job completed (if finished).
- Parameters:
completionTimestamp- The timestamp of when the export job completed (if finished).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errorMessage
ExportStatus.Builder errorMessage(String errorMessage)
An error message if the export job failed.
- Parameters:
errorMessage- An error message if the export job failed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
state
ExportStatus.Builder state(String state)
The current state of the export job.
- Parameters:
state- The current state of the export job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ExportState,ExportState
-
state
ExportStatus.Builder state(ExportState state)
The current state of the export job.
- Parameters:
state- The current state of the export job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ExportState,ExportState
-
submissionTimestamp
ExportStatus.Builder submissionTimestamp(Instant submissionTimestamp)
The timestamp of when the export job was submitted.
- Parameters:
submissionTimestamp- The timestamp of when the export job was submitted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-