Interface ExportJobSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ExportJobSummary.Builder,ExportJobSummary>,SdkBuilder<ExportJobSummary.Builder,ExportJobSummary>,SdkPojo
- Enclosing class:
- ExportJobSummary
public static interface ExportJobSummary.Builder extends SdkPojo, CopyableBuilder<ExportJobSummary.Builder,ExportJobSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExportJobSummary.BuildercompletionTime(Instant completionTime)This is a timestamp of the time the export job compeleted.ExportJobSummary.BuildercreationTime(Instant creationTime)This is a timestamp of the time the export job was created.ExportJobSummary.BuilderexportJobArn(String exportJobArn)This is the unique ARN (Amazon Resource Name) that belongs to the new export job.ExportJobSummary.BuilderexportJobIdentifier(String exportJobIdentifier)This is the unique string that identifies a specific export job.ExportJobSummary.BuildersearchJobArn(String searchJobArn)The unique string that identifies the Amazon Resource Name (ARN) of the specified search job.ExportJobSummary.Builderstatus(String status)The status of the export job is one of the following:ExportJobSummary.Builderstatus(ExportJobStatus status)The status of the export job is one of the following:ExportJobSummary.BuilderstatusMessage(String statusMessage)A status message is a string that is returned for an export job.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
exportJobIdentifier
ExportJobSummary.Builder exportJobIdentifier(String exportJobIdentifier)
This is the unique string that identifies a specific export job.
- Parameters:
exportJobIdentifier- This is the unique string that identifies a specific export job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
exportJobArn
ExportJobSummary.Builder exportJobArn(String exportJobArn)
This is the unique ARN (Amazon Resource Name) that belongs to the new export job.
- Parameters:
exportJobArn- This is the unique ARN (Amazon Resource Name) that belongs to the new export job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
ExportJobSummary.Builder status(String status)
The status of the export job is one of the following:
CREATED;RUNNING;FAILED; orCOMPLETED.- Parameters:
status- The status of the export job is one of the following:CREATED;RUNNING;FAILED; orCOMPLETED.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ExportJobStatus,ExportJobStatus
-
status
ExportJobSummary.Builder status(ExportJobStatus status)
The status of the export job is one of the following:
CREATED;RUNNING;FAILED; orCOMPLETED.- Parameters:
status- The status of the export job is one of the following:CREATED;RUNNING;FAILED; orCOMPLETED.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ExportJobStatus,ExportJobStatus
-
creationTime
ExportJobSummary.Builder creationTime(Instant creationTime)
This is a timestamp of the time the export job was created.
- Parameters:
creationTime- This is a timestamp of the time the export job was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
completionTime
ExportJobSummary.Builder completionTime(Instant completionTime)
This is a timestamp of the time the export job compeleted.
- Parameters:
completionTime- This is a timestamp of the time the export job compeleted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
statusMessage
ExportJobSummary.Builder statusMessage(String statusMessage)
A status message is a string that is returned for an export job.
A status message is included for any status other than
COMPLETEDwithout issues.- Parameters:
statusMessage- A status message is a string that is returned for an export job.A status message is included for any status other than
COMPLETEDwithout issues.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
searchJobArn
ExportJobSummary.Builder searchJobArn(String searchJobArn)
The unique string that identifies the Amazon Resource Name (ARN) of the specified search job.
- Parameters:
searchJobArn- The unique string that identifies the Amazon Resource Name (ARN) of the specified search job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-